/* CSS Document */

/*--------------------------------------------------------------------------------------------
	Global 
  --------------------------------------------------------------------------------------------*/
html, body {
	margin:0;
	padding:0;
	height:100%;
}

body {
	behavior:url("/css/csshover.htc");
	font-family:Arial, Helvetica, sans-serif;
	font-size:0.8em;
	background:#FFF url(../images/bg.jpg) left top repeat-x;
}

/* Floaters */
.right {
	float:right;
}
.left {
	float:left;
}
.clear {
	clear:both;
	line-height:0px;
	height:0px;
}


/*--------------------------------------------------------------------------------------------
	Structural 
  --------------------------------------------------------------------------------------------*/
div#container {
	position:relative;
	width:740px;
	margin:auto;
}
/* Header */
div#header {
	position:relative;
	height:82px;
	width:740px;
}
div#logo {
	position:absolute;
	top:30px;
	left:0px;
}
div#nav {
	position:absolute;
	bottom:0px;
	right:0px;
}
div#sidebar {

}
div#content {
	background:transparent url(../images/bg_navbase.jpg) top no-repeat;
	padding-top:50px;
}
/* Footer */
div#footer {
}

div#dqltag {
	position:relative;
	width:100%;
}
div#dqltag div {
	position:absolute;
	right:0px;
	top:-82px;
}
div#dqltag img {
	opacity:1;
}
div#dqltag a:hover img {
	opacity:0.75;
}


/*--------------------------------------------------------------------------------------------
	Content layout 
  --------------------------------------------------------------------------------------------*/
div#contentBody {
	width:740px;
	padding-bottom:50px;
}
div.columnLeft {
	float:left;
	width:360px;
}
div.columnRight {
	float:right;
	width:360px;
}


/*--------------------------------------------------------------------------------------------
	Navigation 
  --------------------------------------------------------------------------------------------*/  
/* Main nav */
ul#navbar {
	list-style:none;
	padding:0;
	margin:0;
}  
ul#navbar li {
	float:left;
} 
ul#navbar a {
	display:block;
	padding:5px 10px 3px 10px;
	color:#424242;
	font-size:0.9em;
	font-weight:bold;
	text-decoration:none;
	text-transform:uppercase;
	background:transaprent url(../images/nav_divider.gif) right bottom no-repeat;
} 
ul#navbar li.last a {
	padding-right:0;
	background:none;
}
ul#navbar a:hover {
	color:#000;	
} 
ul#navbar li#selected a {
	/* Selected menu item */
	color:#000;
}  

  
/*--------------------------------------------------------------------------------------------
	Typography
  --------------------------------------------------------------------------------------------*/
/* Headings */
h1 {
	font-size:1.5em;
	font-weight:normal;
	padding:35px 0 0 0;
	margin: 0;
	color:#414141;
	border-bottom:solid 1px #B5B5B5;
}
h2 {
	font-size:1em;
	font-weight:bold;
	padding:15px 0 2px 0;
	margin:0;
	color:#535353;
	border-bottom:solid 1px #B5B5B5;
}
h3 {
}
h4 {
}

/* Paragraphs */
p {
	margin:1.0em 0;
	color:#888888;
}
p.leadin {
	font-size:1.1em;
	color:#666666;
}
div#contentBody p {
	line-height:1.5em;
}

/* Links */
a {
	color:#525252;
	text-decoration:none;
	font-weight:bold;
}

a:hover {
	color:#828282;
}


/*--------------------------------------------------------------------------------------------
	Forms - form, input, label etc
  --------------------------------------------------------------------------------------------*/
form {
	padding:0;
	margin:0;
}
  
  
  