/** IMPORTS */
	@import url(form.css);
	@import url(header.css);
	@import url(menu.css);
	@import url(footer.css);
/** // IMPORTS */

/** MAIN */

html, body {
	padding: 0;
	margin: 0;
	overflow: hidden;
}
* {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
}
#main {
	width: 100%;
	height: 100%;
}

#content {
	position:absolute;
	width: 100%;
	height: expression((document.getElementById("main").offsetHeight - (document.getElementById("header").offsetHeight + document.getElementById("menu").offsetHeight + document.getElementById("footer").offsetHeight)) + "px");
	top: 105px;
	bottom: 20px;
	overflow: hidden;
	overflow-x: hidden;
	overflow-y: auto;
	background: #fff;
}

#leftBar {
	position: relative;
	float: left;
	width: 150px;
	height: 100%;
	*height: expression((document.getElementById("main").offsetHeight - (document.getElementById("header").offsetHeight + document.getElementById("menu").offsetHeight + document.getElementById("footer").offsetHeight)) + "px");
	background-color: #999999;
}



/** REVIEW */
#review {
}
#review ul li {
	display: inline;
	list-style: none;
}

/** FORMS */
fieldset label {
	margin-right: 15px;
	display: block;
	float: left;
	width: 100px;
}
fieldset input {
	margin-right: 5px;
	float: left;
}
fieldset br {
	clear: both;
}
fieldset p {
	clear: both;
}

/** SIGN IN */
#signIn {
	/*text-align: center;*/
}
#signIn label {
	width: 100px;
}

/** LOG IN */
#logIn {
}
#logIn label {
	width: 100px;
}
#logIn input[type=button] {
	/*margin-left: 215px;*/
}


/** // MAIN */

