/* IMPORT CORE CSS FILES */
@import url(typo.css);
@import url(nav.css);
@import url(form.css);
@import url(modules.css);
@import url(user.css);

/* NORMALIZES Browers Styles */

* { margin:0;padding:0;outline:none;} /* removes defaults from all elements */

ol,ul {
	list-style:none; /* removes list-styles from lists */
}
a {
	text-decoration: none; 
}
table {
	border-collapse:collapse;
}
dl {
	clear:both;
	height:100%;
}
dt,dd {
	float:left;
}

/* = CLEARING
---------------------------------------------------------
*/

.stretch,
.clear
{
	clear: both; 
	height: 1px; 
	margin: 0; 
	padding: 0; 
	font-size: 15px;
	line-height: 1px;
}

.clearfix:after
{
	content: "."; 
	display: block; 
	height: 0; 
	clear: both;
	visibility: hidden;
}

/* fix for IE7 */
.clearfix
{
	display: inline-block;
}

/* Show to IE-pc only */
* html .clearfix
{
	/* Hide from IE-mac \*/
	height: 1px;
	/* End hide from IE-mac */
}

/* END CLEARING
--------------------------------------------------------------
*/
/*---------------------------------------------------------- */
/*  Layout Styles includes display properties,               */
/*						   floats ans positioning,           */ 
/*						   widths and heights,               */
/*						   paddings and margins              */
/*---------------------------------------------------------- */
/* = LAYOUT: TABLE OF CONTENTS
    1. = BODY & PAGE
    2. = HEADER
    3. = CONTENT
    4. = FOOTER
---------------------------------------------------------
*/
/* = BODY & PAGE
---------------------------------------------------------
*/
#container {
	width:976px;
	margin:0 auto;
}
/* END BODY & PAGE
---------------------------------------------------------
*/

/* = HEADER
---------------------------------------------------------
*/
#header {
	position:relative;
	width:100%;
	height:393px;
}
#secondary #header {
	height:311px;
}
/* END HEADER
---------------------------------------------------------
*/

/* = CONTENT
---------------------------------------------------------
*/
#body {	
	position:relative;
	overflow:hidden;
	width:100%;	
}
#content {
	min-height:500px;
	overflow:hidden;
	margin:0 8px;
	padding:30px 20px 0;
}

.column-main {
	width:690px;
	float:left; 
}
.column-side {
	float:left;
	margin-right:30px;
	width:200px;
}
#secondary .column-side { margin-top:17px;}
.col	{ float:left;}
.first	{ width:200px;margin-right:30px;}
.second { width:460px;margin:0 30px 0 0}
.third { width:200px;}

/* END CONTENT
---------------------------------------------------------
*/

/* = FOOTER
---------------------------------------------------------
*/
#footer  {
	margin:20px 25px 10px;
	padding-top:10px;
	overflow:hidden;
}
#footer ul {
	display:inline
}
#footer ul li {
	float:left
}
.site-info {
	float:left;
	padding-left:5px
}
.site-info p {
	margin-bottom:0.5em;
}

.footer-nav {
	float:right;
	vertical-align:middle
}
.footer-nav ul { margin-left:0;}
.footer-nav li { padding-right:5px;}

/* END FOOTER
---------------------------------------------------------
*/