/* 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;
	line-height: 0px;
}

/* TEXT */
body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	background-color: #6E8FA5;
}
h1 {
	font-size: 0.9em;
	color: #FFFFFF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-align: left;
	padding-left: 120px;
	}
#footer {
	width: 100%;
	font-size: 0.6em;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-align: center;
	color: #FFFFFF;
	position: fixed;
}
h2 {
	color: #669999;
	font-size: 0.7em;
}
p {
	font-size: 0.7em;
	line-height: 1.2em;
	color: #FFFFFF;
}


/* LINKS */
a:link {
	color: #CCFFFF;
	text-decoration: underline;
}
a:visited {
	color: #CCFFFF;
	text-decoration: underline;
}
a:hover {
	text-decoration: none;
	color: #FFFFFF;
}

a:active {
	color: #FFFFFF;
	text-decoration: none;
}
#wrapper {
	width: 760px;
	position: static;
	height: 380px;
	text-align: center;
	margin-right: auto;
	margin-left: auto;
}
#image {
	height: 400px;
	width: 380px;
	float: left;
	position: relative;
	background-image: url(../images/widget.jpg);
}
#header {
	position: relative;
	height: 90px;
	width: 760px;
}
h3 {
	color: #FFFFCC;
	font-size: 0.7em;
	text-align: left;
	padding-left: 120px;
}
