body{
    background-color: #ddd;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
/*********************
* Pages header style *
**********************/
#mainHeader{
    width: 940px;
	min-width:930px;
	max-width:990px;
    padding: 20px;
    box-shadow: 0px 1px 5px #888888;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    margin: 10px auto;
    margin-bottom: 0px;
    background-color: white;
}
#header{
    width: 940px;
    height:160px;
}
#logo{
    width:160px;
    height: 160px;
    float: left;
    margin-left: 5%;
}
#layer1{
    background: rgba(255, 223, 0, .9);
    border: 1px solid black;    
    width: 150px;
    height: 150px;
    padding: 3px;
    border-radius: 100%;
    box-shadow: 0 0 3px black;
    animation: spin 10s infinite linear;
    position: absolute;    
    -webkit-transition-duration: 4s;
    transition-duration: 4s;
}
h6 span{
  	transform: rotate(-50deg);
  	margin-left:70px;
    text-align: center;
    font: 20px 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    height: 78px;
    position: absolute;
    width: 15px;
    left: 0;
    top: 0;
    transform-origin: bottom center;
}
#layer2{
    background-color: black;
    border-radius: 100%;
    width:100px;
    height:100px;
    margin-top: 30px;
    margin-left: 30px;
    line-height: 100px; 
    position: absolute;
    color: #ffdf00;
    font-size: 40px;
    text-align: center;
    box-shadow: 0 0 5px white;
    -webkit-transition-duration: 0.4s; 
    transition-duration: 0.4s;
}
#layer2:hover{
    cursor: pointer;
    box-shadow: 0 0 15px white;
}
@keyframes spinoff {
    0% {transform: rotate(0deg);}
    100% {transform: rotate(-360deg);};
}
@keyframes spin {
    0% {transform: rotate(0deg);}
    100% {transform: rotate(360deg);};
}
#banner{
    width:600px;
    height: 160px;
    float: right;
    text-align: center;
    padding: 0px;
    margin-right: 5%;
}
#title{
    margin: 7px 0 0;
    padding: 0;
    font-size: 35px;
    text-shadow: 0 1px #ddd;
}
hr{
    width: 85%;
    color: black;
    text-shadow: 0 1px #ddd;
}
#subTitle{
    margin: 0;
    padding: 0;
    font-size: 25px;
    text-shadow: 0 1px #ddd;
}
#phone{
    float: left;
    margin-left: 10%;
    text-shadow: 0 1px #ddd;
}
#fax{
    float: right;
    margin-right: 10%;
    text-shadow: 0 1px #ddd;
}
/*************
* Menu Style *
**************/
nav {
    margin-top: 20px;
    width: 100%;
    border-top: 1px solid #ddd;
}
nav ul {
    text-align:center;
}
nav ul li {
    display: inline-block;
    list-style-type: none;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
}
nav ul li:hover {
    background:#E6E6E6;
    border-radius: 3px;
}
nav ul li a {
    display: block;
    padding:15px 25px;
    color:#444;
    text-decoration: none;
}
nav ul li ul {
    position:absolute;
    width:150px;
    background:#FFF;
    z-index: 1;
}
nav ul li ul li {
    width:150px;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
}
nav ul li ul li a {
    display:block;
    padding:10px 10px;
    color:#444;
    text-align: left;
    text-decoration: none;
}
nav ul li ul li:hover a {
    background:#F7F7F7;
    padding-left: 11px;
}
nav ul li ul.fallback {
    padding: 5px;
    display:none;
}
nav ul li:hover ul.fallback {
    box-shadow: 0 1px 3px black;
    display:block;
}
/******************
* Pags body style *
*******************/
#body{
	width: 940px;
	min-width:930px;
	max-width:990px;
    padding: 10px 20px;
    box-shadow: 0px 4px 5px #888888;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    background-color: white;
    margin: auto;
}