/* CSS Document */
a.button1 {
 font-size: 14px;
 font-weight: 600;
 color: white;
 padding: 6px 25px 0px 20px;
 margin: 10px 8px 20px 0px;
 display: inline-block;
 float: center;
 text-decoration: none;
 width: 150px; height: 27px; 
 -webkit-border-radius: 5px; 
 -moz-border-radius: 5px; 
 border-radius: 5px; 
 background-color: #3a57af; 
 -webkit-box-shadow: 0 3px rgba(58,87,175,.75); 
 -moz-box-shadow: 0 3px rgba(58,87,175,.75); 
 box-shadow: 0 3px rgba(58,87,175,.75);
 transition: all 0.1s linear 0s; 
 top: 0px;
 position: relative;
}

a.button1:hover {
 top: 3px;
 background-color:#2e458b;
 -webkit-box-shadow: none; 
 -moz-box-shadow: none; 
 box-shadow: none;
 
}


a.button2 {
 font-size: 12px;
 font-weight: 600;
 color: white;
 padding: 6px 25px 0px 20px;
 margin: 10px 8px 20px 0px;
 display: inline-block;
 float: center;
 text-decoration: none;
 width: 120px; height: 18px; 
 -webkit-border-radius: 5px; 
 -moz-border-radius: 5px; 
 border-radius: 5px; 
 background-color: #3a57af; 
 -webkit-box-shadow: 0 3px rgba(58,87,175,.75); 
 -moz-box-shadow: 0 3px rgba(58,87,175,.75); 
 box-shadow: 0 3px rgba(58,87,175,.75);
 transition: all 0.1s linear 0s; 
 top: 0px;
 position: relative;
}

a.button1:hover {
 top: 3px;
 background-color:#2e458b;
 -webkit-box-shadow: none; 
 -moz-box-shadow: none; 
 box-shadow: none;
 
}


#maintab{
padding: 3px 0;
margin-left: 0;
margin-bottom: 0;
font: bold 12px Verdana;
list-style-type: none;
}

#maintab li{
display: inline;
margin: 0;
}

#maintab li a{
text-decoration: none;
padding: 3px 7px;
margin-right: 3px;
border: 1px solid #778;
color: black;
background: white;
}

#maintab li a:hover{
color: navy;
background: #EFFADC;
}

#maintab li.selected a{ /*selected main tab style */
background-color: #EFFADC;
border-color: navy;
}

#tabcontent{ /*2nd level content wrapper*/
border: 1px solid #778;
background-color: #EFFADC;
height: 100% /*IE7 beta2 fix*/
}

#tabcontent ul{
padding: 0;
margin: 0;
list-style-type: none;
display: none;
}

#tabcontent ul li{
display: inline;
}

#tabcontent ul.selected{ /*selected 2nd level content*/
display: block;
}

#tabcontent ul li a{
border-right: 1px solid #778;
color: navy;
padding: 2px 5px;
display: block;
float: left;
text-decoration: none;
}


#tabcontent ul li a:hover{
background-color: #D3F1A0;
color: blue;
}

.clearfix:after{ /*Clear floats hack: http://positioniseverything.net/easyclearing.html*/
content: "."; 
display: block; 
height: 0; 
clear: both; 
visibility: hidden;
}

.clearfix{
display: inline-table;
}

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */

