/*-----------------------------------

Sticky footer

-----------------------------------*/

/*  
Sticky Footer Solution
by Steve Hatcher 
http://stever.ca
http://www.cssstickyfooter.com
*/

* {margin:0;padding:0;} 

/* must declare 0 margins on everything, also for main layout components use padding, not 
vertical margins (top and bottom) to add spacing, else those margins get added to total height 
and your footer gets pushed down a bit more, creating vertical scroll bars in the browser */

html, body, #container {height: 100%;}

#wrap {min-height: 100%;}

#main {overflow:auto;
	padding-bottom: 300px;}  /* must be same height as the footer */

#footer {
	width: 370px;
	float: right;
	position: relative;
	margin-top: -300px; /* negative value of footer height */
	height: 300px;
	clear:both;} 

/*Opera Fix*/
body:before {/* thanks to Maleika (Kohoutec)*/
content:"";
height:100%;
float:left;
width:0;
margin-top:-32767px;/* thank you Erik J - negate effect of float*/
}


/*-----------------------------------

min-width and max-height #container

-----------------------------------*/

div#container {
   max-height: 1000px; /* sets max-height value for all standards-compliant browsers */
   min-width: 960px; /* sets min-width value for all standards-compliant browsers */
   max-width: 1499px; /* this sets the max-width value for all standards-compliant browsers */
}

/*-----------------------------------

Default font settings

-----------------------------------*/


/* Default font settings.
   The font-size percentage is of 16px. (0.75 * 16px = 12px) */
html { font-size:100.01%; }
body {
  font-size: 62.5%;
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
}

a:focus,
a:hover     {
	color: #000;
}
a           {
	color: #666;
	text-decoration: none;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
}

/*-----------------
Common
-----------------*/


body {
	color: #FFF;
	background-color: #666;
	background-repeat: no-repeat;
	background-position: left top;
}

body#top {
	background-image: url(../images/bg01.jpg);
}

#container {
	z-index: 0;
}
#white-label {
	background-color: #FFF;
	color: #333;
	margin-bottom: 10px;
}
#logo a {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#white-label #label-text {
	margin: 0px;
	padding: 20px;
}
#white-label #label-text h2 {
	color: #000;
	font-weight: bold;
}
#white-label #label-text dl {
	
}
#white-label #label-text dl dt {
	font-weight: bold;
	color: #000;
	display: inline;
	margin: 0px;
	padding: 0px;
}
#white-label #label-text dl dd {
	display: inline;
}
#white-label #label-text dl dd.devider {
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #999;
	margin-right: 0.5em;
	padding-right: 0.7em;
}
#footer {
	z-index: 100;
}
#footer p#copyright {
	margin-bottom: 20px;
	margin-left: 20px;
}
