@charset "utf-8";
/* #container is the root element and determines the width of the page */
body{}
#container{
	width:985px;
	padding:0;
	text-align:left;
	min-height:100%;
	position:relative;
	margin:0 auto;
}
/* Start IE6 style */
*html #container {
    height:100%; /* Specific for IE6 to allow footer to sit on base of page or base of content when scrolling is required */
	
}
/* End IE6 style */
/* #header contains all nav, logo and login details */ 
#header{
	padding:0;
	height:147px;
}
/* Start logo styles */
/* Change height and width to suite. Also choose whether to use a logo image as a background. Sometimes easier to include as part of header */
#logo img{
	margin-top:5px;
	width:250px;
	height:80px;
	/* background:url(../images/logo.jpg) no-repeat; Doesn't necassarily need this image as it can be part of the header graphic. */
}
#logo, #logo img{
	float:left
}
/* End logo styles */
/* End  login details styles */
/* 	#bodycontent bottom padding MUST match the height of the footer */
#bodycontent{
	clear:left;
	padding-bottom:40px;
	position:relative;
	z-index:1;
}
/* 
	#body content_inner helps achieve the footer always at base layout
	Not sure why but padding-right has to be 5px or it throws out the footer in IE?
*/
#bodycontent_inner{
	padding:0 50px;
}
/* 	
	Start "breadcrumb" style
	#breadcrumb is in the #bodycontent_inner and therefore padding effects it.
	To acheive a flush layout with the header just specify an absolute width and use a negative left margin
*/
#breadcrumb{
	font-size:0.9em;
	margin:0;
	padding:5px 0 5px 15px;
	background:#EAF0F7;
	width:930px;
}
#breadcrumb div{
	display:inline;
	margin-right:5px;
	padding-left:10px;
	/* ************************ background:url(../images/icons/breadcrumb-divider.gif) no-repeat 0 50%;*/
}
/* 	End "breadcrumb" styles */
/* Start column definition (left and right columns) */
#col_left,#col_right{
	float:left;
}
#col_left, #col_left table.data{
	padding-left:10px;
	width:600px; /* We also set the data table width to match */
}
#col_right{
	padding-right:10px;
	width:315px;
}
#col_left{
	margin-right:10px;
}
/* End column definition */
/* Start "primary_navigation" styles */
#primary_navigation ul{
	margin:25px 0 0 0;
	padding:0;
	clear:both;
	list-style-type: none;
	float:left;
}
#primary_navigation ul li{
	position: relative;
	display: inline;
	float: left;
}
#primary_navigation ul li a{
	text-transform:uppercase;
	letter-spacing:2px;
	font-size:12px;
	color:#FFF;
	float:left;
	text-align:center;
	margin:0;
	text-decoration:none;
}
#primary_navigation ul li a span{
	height:auto;
	cursor:pointer;
	float:left;
	margin-left:10px;
	padding:5px 10px 0 0;
}
#primary_navigation ul li a.active,#primary_navigation ul li a:hover{
	background-position:left -30px;
}
#primary_navigation ul li a.active span,#primary_navigation ul li a:hover span{
	background-position:right -30px;
}
#primary_navigation ul li.current a,#primary_navigation ul li.current a:hover{
	color:#FFF;
	background-position:left -60px;
}
#primary_navigation ul li.current a span,#primary_navigation ul li.current a:hover span{
	background-position:right -60px;
}
#primary_navigation ul li div{
	display:none;
	position:absolute;
	width:315px;
	top:35px;
	left:0;
}
*html #primary_navigation ul li div{
	left:-1px;
}
#primary_navigation ul li div a{
	color:#FFF;
	font-weight:normal;
	font-size:0.9em;
	text-align:left;
	display:block;
	width:100%;
	padding:3px 10px;
	background:none;
	background:#616792;
	border:1px solid #D7D9DE;
	border-top:none;
}

#primary_navigation ul li div a:hover{
	color:white;
	background:none;
	background:#81A6CA;
}
#primary_navigation ul li.current div a{
	color:#325578;
	background:none;
	background:#C6BFAA;
	border:1px solid #E6E6E6;
	border-top:none;
}
#primary_navigation ul li.current div a:hover{
	color:#325578;
	background:none;
	background:#E2DFD6;
}
#store_dd div{
	display:none;
}
/* End "primary_navigation" styles */
/* End "header" styles */
/* 	Start "footer" styles */
/* If changing the footer height, make sure you update #bodycontent padding-bottom */
#footer{
	z-index:0;
	padding:5px 0 0 0;
	width:985px;
	height:25px;
	text-align:center;
	position:absolute;
	bottom:0;
	clear:both;
	font-size:11px;
	color:#000;
}
#footer a{
	color:#000;
}
#footer div{
	display:inline;
}
#footer img{
	margin-right:10px;
	vertical-align:middle;
	width:50px;
	height:50px;
}
/* End "footer" styles */
/* 	End "bodycontent" styles */
/*
	#floatfix forces the footer to sit below content if it is floated in
	#bodycontent div - Without #floatfix footer and bodycontent may overlap
	when sitting the footer at the base of the page
*/
.floatfix{
	font-size:0px;
	margin:0;
	padding:0;
	width:100%;
	clear:both;
}
.imgborder{
	border:5px solid #D2D2D2;
}