body {
	margin:0px;
	text-align: center;
	font: 12px "Trebuchet MS", Arial, Helvetica, sans-serif;
	background: url(grey.jpg) repeat center top;
	color: #333;
}
#FlashID object {
  display: block;
}
a {
	color:#FF9900;
	text-decoration: none;
	font-weight:bold;
}
a:visited {
	color: #FF9900;
	text-decoration: none;
}
a:hover {
	color: #FF3300;
	text-decoration: underline;
}
/******* NAVIGATION PART *******/

.menu{
	float:right;
	margin: 0px;
	width: auto;
	height:35px;
	overflow: hidden;
	text-align:right;
	z-index: 5000;

}
/* This is the part for the CSS menu - these settings are for a horizontal menu */
    #dmenu{                         /* menu list container */
	list-style-type: none;      /* disable the display of the list item bullets */
	margin: 0px;                /* space around the list container */
	padding: 0px;               /* space within the list container */
	position: static;           /* need this so that the z-index stuff works correctly */
	z-index: 20;                /* push the menu up in the layer order a bit so it isn't hidden behind anything */
	font: 15px Verdana, Geneva, sans-serif;
	background: url(none);
    }
    #dmenu li{                      /* top-level menu element */
	list-style-type: none;      /* disable the display of the list item bullets */
	float: left;                /* this is to allow for the horizontal main menu */
	/*border-right: 1px solid #FFF;     border for each of the main menu items */
	color: #fff;                /* main menu item font color (not links) */
	margin: 0px;                /* spacing between main menu items */
	padding: 0px;               /* padding within main menu items */
	width: auto;               /* the width of each main menu item */
	display: block;
	background: url(none);
    }

    #dmenu ul {                     /* third-level (or greater) menu element list elements */
        position: absolute;         /* this is so that it doesn't push that page content around on hover */
        margin: 0px;                /* space around the list container */
		margin-top: -3px;
        padding: 0px;               /* space within the list container */
        list-style-type: none;      /* disable the display of the list item bullets */
        display: none;
        width: 140px;               /* should be the same as #dmenu li width */
        background-color: #3585B9;     /* sub-menu default background color */
        border-top: #003D6E solid 1px;     /* the border around the sub-menu list */
        color: #000;                /* sub-menu default font color (not links) */
        z-index: 99;                /* want to be sure this is above the rest of the menu */
    }

    #dmenu ul li{                   /* second-level or greater menu element links */
        background-color: #3585B9;     /* default background color for sub-menu container */
        color: #000;                /* default font color (not links) for sub-menu container */
        border: none;               /* sub-menu item border settings */
        margin: 0px;                /* spacing between sub-menu containers */
        padding: 1px;               /* This is for padding between menu items in the drop-downs */
        width: 138px;               /* (padding*2) must be subtracted from #dmenu li width and set for this one, or borders won't display properly. */
    }
	
    #dmenu li a{                    /* top-level menu element links */
	padding: 10px 15px;
	text-align: center;         /* text alignment in main menu item links */
	width: auto;               /* set this to #dmenu ul width */
	display: block;
	color: #003D6E;
	text-decoration: none;
    }
    
    #dmenu ul a {                   /* all the other level menu link elements */
        padding: 3px;
        margin: 0px;
        display: block;
    }

    #dmenu a:hover,                 /* top-level hovering properties */
    /*#dmenu li:hover,*/
	#dmenu li a:focus{
        display: block;
        background-color: #003D6E;
        color: white;
    }
    
    /*#dmenu ul li:hover,*/             /* higher level hovering properties */
    #dmenu ul li a:hover{
	display: block;
	background-color: #003D6E;
	color: white;
	    }

    #dmenu ul ul{                   /* higher-level list containers */
        display: none;              /* don't display by default */
        position: relative;
        margin-left: 138px;         /* this should be the width of #dmenu ul li */
        margin-top: -15px;           /* this will push the sub-menu up to the level of it's parent */
    }

    /* only non-MSIE browsers use this */
    #dmenu ul li>ul,
    #dmenu ul ul li>ul{
        margin-top: -1px;           /* should be set to the same as #dmenu ul ul margin-top */
    }

    /* additional sub-menu levels in the next 2 blocks. (For up to 5 levels of drop menus) */
    #dmenu li:hover ul ul,              
    #dmenu li:hover ul ul ul,
    #dmenu li:hover ul ul ul ul,
    #dmenu li:hover ul ul ul ul ul,
	#dmenu li:hover ul ul ul ul ul ul,
	#dmenu li:hover ul ul ul ul ul ul ul,
	#dmenu li:hover ul ul ul ul ul ul ul ul{
        display:none;
    }

    #dmenu li:hover ul,
    #dmenu ul li:hover ul,
    #dmenu ul ul li:hover ul,
    #dmenu ul ul ul li:hover ul,
    #dmenu ul ul ul ul li:hover ul,
	#dmenu ul ul ul ul ul li:hover ul,
	#dmenu ul ul ul ul ul ul li:hover ul,
	#dmenu ul ul ul ul ul ul ul li:hover ul{
        display:block;
    }

    li>ul {
        top: auto;
        left: auto;
    }

/******* END NAVIGATION PART *******/


#top {
	width: 950px;
	height: 180px;
	margin:0 auto;
	background: #F7F7F7;

}
#head {
	width: 950px;
	margin: 0 auto;
}
.logo {
	background: url(abi_logo.png) no-repeat center center;	
	width: 175px;
	height: 125px;
	margin: 20px 40px 0 20px;
	float:left;
}
.spec {
	color:#003D6E;
	float:right;
	text-align:center;
	/*width: 380px;*/
	padding: 20px;
	margin-top: 15px;
	font-size: 20px;
}
.spec h1{
	margin: 5px;
	color:#003D6E;
	font-size: 28px;
	font-weight: normal;
}
.spec b{
}
.grey_round{
	width:930px;
	overflow:hidden;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	margin:5px auto;
	text-align:left;
	padding:10px;
	background: #FFF url(grey.jpg) repeat-x center top;
	color:#003D6E;
	font: 11px Tahoma, Geneva, sans-serif;
	border: 1px dashed #CCC;
}
.grey_round b{
	font: bold 20px Verdana, Geneva, sans-serif;
	color:#FFF;
}
.grey_round a{
	color:#003D6E;
	text-decoration: none;
	font-weight:normal;
}
.grey_round a:visited {
	color:#003D6E;
	text-decoration: none;
}
.grey_round a:hover {
	color: #E6F3FF;
	text-decoration: none;
}
.white_round{
	width:930px;
	overflow:hidden;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	margin:5px auto;
	text-align:center;
	padding:10px;
	background: #FFF;
	color:#FFF;
	font: 11px Tahoma, Geneva, sans-serif;
	border: 1px dashed #CCC;
}
.heat {
	width: 195px/*170px*/;
	height: 120px;
	float: left;
	margin-right: 15px;
	background: url(services.png) no-repeat left top;
	padding: 5px 5px 5px 100px;
}
.vent {
	width: 195px;
	height: 120px;
	float: left;
	margin-right: 15px;
	background: url(services.png) no-repeat -315px top;
	padding: 5px 5px 5px 100px;
}
.air {
	width: 195px;
	height: 120px;
	float: left;
	margin-right: 0px;
	background: url(services.png) no-repeat -630px top;
	padding: 5px 5px 5px 100px;
}

#site {
	width:970px;
	margin:0 auto;
	padding: 10px;
	background: #FFF;
	border-right: 1px solid #003D6E;
	border-left: 1px solid #003D6E;
	border-top: 2px solid #003D6E;
}
#content_h {
	float:left;
	font-size:12px;
	width:640px;
	min-height: 300px;
	margin:5px 10px 10px 0;
	color:#333;
	text-align:left;
}
#content {

	font-size:12px;
	min-height: 300px;
	margin:5px 10px 10px 0;
	color:#333;
	text-align:left;
}
.title {
	font-size: 16px;
	text-align:left;
	color: #003D6E;
	margin: 10px;
	padding-bottom: 5px;
	font-weight: bold;
	border-bottom: 1px dashed #003D6E;
}
.service {
	width: 31%;
	border-right: 1px dashed #CCC;
	float:left;
	padding: 5px;
	margin: 5px;
	min-height: 170px;
}
.case {
	width: 170px;
	height: 120px;
	float: left;
	margin-right: 0px;
	background: url(grey.jpg);
	padding: 5px;
	text-align:left;
}
.grey_box{
	background: url(grey.jpg);
	color: #666;
	text-align:left;
	margin-bottom:5px;
	overflow:hidden;

}
.grey_box h1{
	font-size:15px;
	color:#333;	
}
.box_round{

	overflow:hidden;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	margin:5px;
	text-align:left;
	padding:10px;
	background: url(grey.jpg);
	color:#333;
	font: 11px Tahoma, Geneva, sans-serif;
	border: 1px dashed #CCC;
}
.right{
	width: 300px;
	float:right;
}

.blue_box {
	width: 280px;
	color:#FFF;
	padding:10px;
	background: #00B2FC/*#003D6E*/;
	margin-top:5px;
	float:right;
	text-align:left;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	font: 12px Arial, Helvetica, sans-serif;
}

.blue_box b{
	font: normal 20px Georgia, "Times New Roman", Times, serif;	
	float:right;
	margin-bottom: 10px;
}
.blue_box a{
	color:#ABD6FE;
}
.gri_box {
	width: 280px;
	color:#FFF;
	padding:10px;
	background: #717B82;
	margin-top:5px;
	float:right;
	text-align:left;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	font: 12px Tahoma, Geneva, sans-serif;
}
.gri_box b{
	font: normal 20px "Trebuchet MS", Arial, Helvetica, sans-serif;
	float:right;
	margin-bottom: 10px;
}
.gri_box a{
	color:#ABD6FE;
}
.round_left {
	margin: 0 auto;
	border: 1px solid #999999;
	color: #333333;
	width: 215px;
	height:258px;
	text-align: center;


	/*	different corners:
		
	-moz-border-radius-topleft: 15px;
    -webkit-border-top-left-radius: 15px;
    -moz-border-radius-topright: 15px;
    -webkit-border-top-right-radius: 8px;
    -moz-border-radius-bottomleft: 15px;
    -webkit-border-bottom-left-radius: 15px;
	
	*/
	
	/* Do rounding (native in Firefox and Safari) */
    -webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	background: #fff url(white_flo.jpg) no-repeat center top;
}
.round_border {
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border: 1px solid #D0D0D0;
	margin-bottom:5px;
		padding:10px;
}
.round_box {
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	padding:0px;
}
.badge1{
	float:left;
	width: 610px;
	overflow:hidden;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	margin:5px;
	text-align:left;
	padding:10px;
	background: url(grey.jpg);
	color:#333;
	font: 11px Tahoma, Geneva, sans-serif;
	border: 1px dashed #CCC;
}
.badge2{
	float:left;
	width: 167px;
	overflow:hidden;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	margin:5px;
	text-align:left;
	padding:10px;
	background: url(grey.jpg);
	color:#333;
	font: 11px Tahoma, Geneva, sans-serif;
	border: 1px dashed #CCC;
}
.badge3{
	float:left;
	width: 201px;
	overflow:hidden;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	margin:5px;
	text-align:left;
	padding:10px;
	background: url(grey.jpg);
	color:#333;
	font: 11px Tahoma, Geneva, sans-serif;
	border: 1px dashed #CCC;
}
.img_left{
	float:left;

}
.img_right{
	float:right;

}

.img_border {
	float:right;
	border: 5px solid #FFF;
	margin: 5px;
}
.img_border_left {
	float:left;
	border: 5px solid #FFF;
	margin: 5px;
}


h2{
	display:block;
	font-size: 13px;
	font-weight: normal;
	padding: 10px 20px 0 20px;
	/*background: #999;*/
	margin: 10px;
	border-top: 1px dashed #FFF;
}
.q_left{
	float:left;
	padding-top: 5px;
}
.q_right{
	float:right;
	padding-top: 5px;
}
.name {
	clear:both;
	color:#F00;
	font-size:14px;
	margin: 0 10px;
	padding:3px 3px 3px 10px;
	background: none;
	font-weight: bold;

}
.block-content {

padding:0 4px;
}

.fieldclass {
background-image:url("field-bg.gif");
background-repeat:repeat-x;
border:1px solid #C8C8C8;
color:#333333;
font-size:13px;
line-height:13px;
margin-bottom:20px;
padding:5px;
width:360px;
}
#submitter {
background-color:transparent;
background-image:url("send-button.png");
background-position:center top;
border-style:none;
cursor:pointer;
display:block;
height:44px;
width:114px;
}
#footer {
	font-size: 11px;
	color: #333333;
	text-align:left;
	padding:10px 0;
	margin-top: 0px;
	border-top: 2px solid #003D6E;
}

.address{
	float:right;
	font-size: 11px;
	color: #003D6E;	
	text-align:left;
}
.address b{
	font-size: 14px;
	font-weight: normal;
}
#footer a{
	font-size: 11px;
	color: #333333;
	font-weight: normal;
}
#footer a:hover{
	color:#017DCE;	
}
h1{
	font-size:15px;
	color:#0099FF;
	font-weight:bold;
}
ul {
	list-style: none;
	padding-left: 10px;
	margin-left: 0;

}
li{
	list-style: none;
	background: url(sag.png) no-repeat left 3px;
	padding-left: 15px;
}
.bul_blue li{
	background: url(blue_sag.png) no-repeat left 3px;
}
.shad {
	font: bold 20px Georgia, "Times New Roman", Times, serif;
	color: #9A9BFE;
}

.line{
	background: #003D6E;	
	margin:5px 0 10px 0;
	height:2px;
	display:block;
}
.line_sh{
	background: #FFF;	
	margin:135px 0 10px 0;
	height:4px;
	display:block;
	width: 75%;
}
.clear {
	clear:both;
	
}
.strat{
	margin-top: 10px;

}
.strat a{
	background: url(strat_logo.png) no-repeat left center;
	padding-left: 20px;
	margin-left: 5px;

}
#defaultbadge.degrees {
	color:#003D6E;
}
table td {
	border-bottom: 1px dashed #ccc;
	padding: 5px;
}
