@charset "UTF-8";
/* CSS Document */

/*------------------------LAYOUT DIVS-------------------------------*/
div#headerbkgd{
	height:120px;
	background-repeat:repeat-x;
	background-image:url(images/gradient.jpg);
	clear:both;
	
}

div#header{
	width:950px;
	height:120px;
	clear:both;
	
}

div#mainwrapper{
	width:950px;
	margin:0;
	
}

div#mainwrapperwork{
	width:950px;
	margin:0;
	
}

div#footer{
	width:950px;
	height:75px;
	background-color:#000000;
	clear:both;
	
}

/* THE HACK ZONE - */
/* hack for IE (all flavors) so the menu has a vertical line on the left */
* html div#header ul {
	float:left; /* makes the ul wrap the li's */
	border-left:1px solid #FF9966; /* adds the rightmost menu vertical line to the ul */
	margin-left:100px; /* IE doubles the given value above - why? */
	}
* html a {
	display:block;
} /* makes IE5 & 5.5 accept the padding on the link */
/* end of hack zone */
/* END OF LIST-BASED MENU */

/*---------------------------------------MAIN NAVIGATION---------------------------*/

/*----
div#mainnav{
	width:950px;
	height:32px;
	font: 16px Arial, Helvetica, sans-serif;
	color:#000000;
}

div#mainnav ul{
	margin:98px 0px 0px 190px;
	clear:both;
}

div#mainnav li{
	float:left;
	text-align:center;
	list-style-type:none;
	padding:0px 0px 0px 0px;
}


div#mainnav li:hover{
	color:#00CC00;
}


div#mainnav a{
	text-decoration:none;
	color:#FFF;
}

div#mainnav a:hover{
	color:#9966CC;
}
----*/


/*---------------------------------------MAIN WRAPPER WORK---------------------------*/


div#mainwrapperwork{
	font: 16px Arial, Helvetica, sans-serif;
	color:#FFF;
}

div#mainwrapperwork ul{
	float:left;
	padding-left: 10px;
	padding-top:15px;
	clear:both;
	text-align:left;
	vertical-align:top;
	text-decoration:none;


}

div#mainwrapperwork li{
	float:left;
	text-align:left;
	list-style-type:none;
	vertical-align:top;
	font:  .75em Arial, Helvetica, sans-serif;
}


div#mainwrapperworkv li:hover{
	color:#CCC;
}


div#mainwrapperwork a{
	float:left;
	text-align:left;
	list-style-type:none;
	padding:0px 0px 0px 0px;
	vertical-align:top;
	color:#FFF;
	text-decoration:none;
}

div#mainwrapperwork a:hover{
	color:#CCC;
}




/*------ASLETT CLEARING METHOD-------------------------------------------------------*/

/* here follows the brillant "no-extra-markup" clearing method devised by Tony Aslett - www.csscreator.com */
/* simply add the clearfix class to any containter that must enclose floated elements */
/* read the details of how and why this works at http://www.positioniseverything.net/easyclearing.html */
.clearfix:after {
    content: ".";              /* the period is placed on the page as the last thing before the div closes */
	display: block;          /* inline elements don't respond to the clear property */ 
    height: 0;                  /* ensure the period is not visible */
    clear: both;               /* make the container clear the period */
    visibility: hidden;	     /* further ensures the period is not visible */
}

.clearfix {display: inline-block;}   /* a fix for IE Mac */

/* next a fix for the dreaded Guillotine bug in IE6 */
/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */
/* end of "no-extra-markup" clearing method */
/* CSS Document */
