/* CSS Document */

body { /* set everything to zero for a good cross-browser starting point */
	margin: 0; /* zeroes the margins on the body */
	padding: 0; /* zeroes the padding on the body ~ Opera carries a default padding and requires this zeroing */
	border: 0; /* zeroes off any existing border */
	background-color: #FFFFFF; /* sets the body background colour */
	color: #000000;  /* set the default text color */
	text-align: center; /* Hack to centre the wrapper in IE5.x pc */
	font-family: Verdana, Arial, Helvetica, sans-serif; /* set the default fonts */
	font-size: 100.01%; /* Sets default font size. This odd value compensates for several browser bugs. First, setting a default font size in percent (instead of em) eliminates an IE/Win problem with growing or shrinking fonts out of proportion if they are later set in ems in other elements. Additionally, some versions of Opera will draw a default font-size of 100% too small compared to other browsers. Safari, on the other hand, has a problem with a font-size of 101%. Current "best" suggestion is to use the 100.01% value for this property */
	min-width: 770px; /* Prevents the body becoming narrower than our wrapper div - keeps the content from disappearing off the left edge with Gecko browsers */
}

#wrapper {
   width: 772px;/*sets the width for IE5.x's broken box model*/
	w\idth: 770px; /* sets the width of the wrapper for compliant browsers*/
	margin: 5px auto;/* centers the wrapper. First value - 5px is applied to the top and bottom margins, auto sets the excess space on the view port evenly to the left and right*/
	position: relative; /* important to position it relatively */
	background-color: #FFFFFF; /* sets the wrappers background color */
	text-align: left; /* Realigns the text to the left after the IE hack in the body rule */
}

#header {
	width: 770px;
	height: 100px;
	background-image: url(banner.jpg);
	background-repeat: no-repeat;
}

#body {
	width: 770px;
	min-height: 385px;
	padding-top: 15px;
	margin-top: 2px;
	background-image: url(background_body.jpg);
	background-repeat: repeat-y;
}

#sidebar {
	width: 150px;
	min-height: 380px;
	padding-top: 10px;
	float: left;
	color: #333333;
	text-indent: 30px;
	font-size: 12px;
}

#sidebar a {
	font-weight: bold;
	text-decoration: none;
	color: #333333;
}

/*#sidebar form {
	text-indent: 10px;
}*/

#search {
	width: 140px;
	float: left;
	color: #333333;
	font-size: 10px;
	margin-bottom: 20px;
	/*margin-left: 10px;*/
}

#search input {
	margin-left: 10px;
}

#content {
	width: 618px;
	min-height: 299px;
	margin-left: 152px;
	margin-top: 2px;
	text-align: left;
	font-size: 80%;
}

#content form {
	font-size: 80%;
}

#bottom_bar {
	width: 604px;
	height: 115px;
	margin-left: 151px;
	margin-top: 2px;
	padding-top: 5px;
	padding-left: 15px;
	background-image: url(background_bbar.jpg);
	background-repeat: repeat-x;
	color: #FFFFFF;
	font-size: 75%;
}	

#bottom_bar h4 {
	font-size: 100%;
}

#legal {
	width: 770px;
	height: 25px;
	margin-top: 2px;
	background-image: url(divider.jpg);
	background-repeat: no-repeat;
}

#partners {
	width: 770px;
	height: 30px;
	margin-top: 10px;
	background-image: url(partners.jpg);
	background-repeat: no-repeat;
}

#text_links {
	width: 770px;
	margin-top: 10px;
	font-size: 70%;
	text-align: center;
}

#text_links a {
	color: #000000;
}