*{margin: 0; padding: 0;}
html,body{
	height:100%;
	font: 16px "Myriad Pro","Arial";
	color: #000000;
}
body{
	background: URL(images/body_bg.png) top center repeat-y;
}
.clear{
	clear: both;
}

/* container */
#container {
	min-height:100%;
	position:relative;
	width: 1006px;
	background: URL(images/deco.png) bottom right no-repeat;
	margin: 0 auto;
}
	/* header */
	#header{
		background: URL(images/header_bg.png) top left no-repeat;
		height: 188px;
		padding: 40px 0 0 21px;
	}
		#header h1{
			background: URL(images/logo.png) top left no-repeat;
			text-indent: -9999px;
			position: absolute;
			width: 292px;
			height: 243px;
			top: 18px;
		}
	/* /header */
	
	/* body */
	#body {
		padding: 0 0 0 21px;
	}
		/* left_column */
		#left_column {
			float: left;
			width: 213px;
			padding: 46px 0 0 14px;
		}
		#left_column ul {
			list-style-type: none;
			border-top: 1px solid #ffffff;
		}
		#left_column #menu li a{
			display: block;
			background: URL(images/li_bg.png) top left no-repeat;
			padding: 5px 0 5px 25px;
			border-bottom: 1px solid #ffffff;
			color: #000000;
			text-decoration: none;
		}
		#left_column #menu li:hover a{
			background: URL(images/li_hover.png) top left no-repeat;
		}
		#left_column #menu .submenu{
			position: absolute;
			margin: -31px 0 0 214px;
			border-top: 1px solid #0091c0;
			display: none;
		}
		#left_column #menu .submenu a{
			display: block;
			background: URL(images/li_sub.png) top left no-repeat;
			padding: 5px 0 5px 13px;
			width: 200px;
			border-bottom: 1px solid #0091c0;
			color: #ffffff;
			text-decoration: none;
		}
		#left_column #menu li:hover .submenu{
			display: block;
		}
		#left_column #menu li:hover .submenu a{
			background: URL(images/li_sub.png) top left no-repeat;
		}
		/* /left_column */
		
		/* content */
		#content{
			float: left;
			padding: 22px 28px 0 31px;
			width: 449px;
			font-size: 15px;
		}
		#content h1, #content h2, #content h3, #content h4, #content h5, #content h6 {
			font: bold 20px "Myriad Pro","Arial";
			padding: 0 0 5px 0;
		}
		#content h1, #content h3, #content h5 {
			color: black;
		}
		#content h2, #content h4, #content h6 {
			color: #0062a9;
		}
		#content h1 {
			font-size: 30px;
		}
		#content h2 {
			font-size: 20px;
		}
		#content h3 {
			font-size: 18px;
		}
		#content h4 {
			font-size: 16px;
		}
		#content h5 {
			font-size: 14px;
		}
		#content h6 {
			font-size: 12px;
		}
		#content p {
			padding: 0;
		}
		/* /content */
		
		/* right_column */
		#right_column {
			float: left;
			padding: 22px 0 0 13px;
			width: 165px;
			font-size: 13px;
		}
		#right_column h3{
			color: #0062a9;
			font: bold 17px "Myriad Pro","Arial";
		}
		#right_column ul{
			list-style-type: none;
		}
		#right_column li{
			background: URL(images/bullet.png) 0 8px no-repeat;
			padding: 0 0 0 10px;
		}
		/* /right_column */
	/* /body */
/* /container */

/* form */
form {
	margin-top: 1em;
}

label {
	font-size: 0.9em;
	font-weight: bold;
	display: block;
	float: left;
	width: 150px;
}

input[type="text"], textarea, select {
	margin-bottom: 10px;
	width: 200px;
}
input[type="submit"] {
	margin-left: 150px;
}

form p textarea {
	height: 100px;
}

form .success, form .error{padding: 5px; border: 2px solid;	margin-bottom: 10px;}
form .success{background-color: #bfb; border-color: #9e9;}
form .error {background-color: #fbb; border-color: #e99;}
