/* HACKS */

/* ALL MARGINS = 0 */
* {
	margin: 0px;
	padding: 0px;
}

/* here follows the brillant "no-extra-markup" clearing method devised by Tony Aslett - www.csscreator.com */
/* simply add the clearfix class to any containter that must enclose floated elements */
/* read the details of how and why this works at http://www.positioniseverything.net/easyclearing.html */
.clearfix:after {
    content: ".";              /* the period is placed on the page as the last thing before the div closes */
	display: block;          /* inline elements don't respond to the clear property */ 
    height: 0;                  /* ensure the period is not visible */
    clear: both;               /* make the container clear the period */
    visibility: hidden;	     /* further ensures the period is not visible */
}

/* next a fix for the dreaded Guillotine bug in IE6 */
/* Hides from IE-mac \*/
* html .clearfix {}
.clearfix {
	display: block;
}
/* End hide from IE-mac */
/* end of "no-extra-markup" clearing method */   

/* REMOVE BORDER */
.removeborder {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin: 0px;
	padding: 0px;
}

/* TEXT */
body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.7em;
	color: #2a125c;
	line-height: 1.4em;
}

h1 {
	font-size: 1.2em;
	color: #2a125c;
	padding-bottom: 10px;
}

h2 {
	font-size: 1em;
	color: #2A125C;
	padding-bottom: 10px;
}

p {
	padding-bottom: 10px;
}


/* LINKS */
a:link {
	color: #BF2935;
	text-decoration: none;
}

a:visited {
	color: #BF2935;
	text-decoration: none;
}

a:hover {
	color: #2a125c;
	text-decoration: underline;
}

a:active {
	color: #2a125c;
	text-decoration: underline;
}


/* LAYOUT */
#wrapper {
	width: 760px;
	float: none;
	position: relative;
}
#nav {
	width: 170px;
	float: left;
	position: relative;
	background-image: url(../images/nav/background1.jpg);
	height: 420px;
}

#content {
	float: left;
	width: 580px;
	position: relative;
	padding: 5px;
}
#header {
	float: left;
	width: 590px;
	position: relative;
	height: 90px;
	background-image: url(../client/images/header/header1.jpg);
}
#content ul {
	list-style-type: disc;
	padding-left: 10px;
	margin-left: 20px;
	padding-bottom: 10px;
}
#logo {
	text-align: right;
	height: 54px;
	padding-top: 8px;
	padding-bottom: 8px;
}
#footer {
	width: 750px;
	font-size: 0.8em;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	line-height: 1.2em;
	padding: 5px;
	text-align: center;
	position: relative;
}
.stickman {
	text-align: center;
}
.button_wrapper {
	height: 24px;
	width: 160px;
	position: static;
	float: left;
}
.man_wrapper {
	height: 170px;
	width: 170px;
	position: relative;
}
.name_tags {
	float: left;
	width: 190px;
	text-align: center;
}
.threecol {
	float: left;
	width: 193px;
	height: 20px;
}
#home_animation {
	width: 360px;
	position: relative;
	float: left;
}



/* LOGIN */
#login_wrapper {
	width: 220px;
	float: left;
	position: relative;
}
#login_wrapper .clearfix label {
	font-size: 8px;
	float: left;
	width: 65px;
	padding-left: 5px;
}
#login_wrapper .clearfix {
	padding-bottom: 2px;
}
#login_wrapper .clearfix #email, #password {
	width: 140px;
	border: 1px solid #CCCCCC;
}
#wrapper #content #login_wrapper .clearfix #Login {
	background-color: #FFCC00;
	border: 1px solid #FF9900;
	color: #2A125C;
	font-weight: bold;
	margin-left: 70px;
	font-size: 10px;
	padding: 1px;
}
