@charset "utf-8";
/* CSS Master Document*/
/*Copyright 2008 Sleight-of-Hand Studios LLC; All Rights Reserved*/

/*________________STANDARD CODE____________________________________*/

/* clearing method devised by Tony Alsett - www.csscreator.com */
/* add the alsettclearmeth class to any containter that must enclose floated elements */
/* http://www.positioniseverything.net/easyclearing.html */
.alsettclearmeth: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 */
}

.alsettclearmeth {display: inline-block;}   /* a fix for IE Mac */

/* next a fix for the dreaded Guillotine bug in IE6 */
/* Hides from IE-mac \*/
* html .alsettclearmeth {height: 1%;}
.alsettclearmeth {display: block;}
.clear {
	clear: both;
}
/* End hide from IE-mac */
/* end of "no-extra-markup" Alsett clearing method */

.red{color: red;}
.devcomment{
	color: red;
}
.left{text-align:left}
.fltLeft {
	float: left;
}

.right{
	text-align:right;
	/*right: 0px;*/
}
.fltRight {
	float: right;
}

.center {text-align: center;}
.fullwidth{width: 100%;}
.hideInitially{visibility: hidden;}
.hideRemove{display: none;}
/*___________END STANDARD CODE________________________________________________________*/

/*___________Browser Normalization____________________________________________________*/
* {
	margin:0;
    border:0;
	padding:0;
}
body {	/* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	margin: 0; 
	padding:0;
}
div,p,h1,h2,h3,h4,h5,h6,td,ul,ol,li,dl,dt,dd,form,fieldset,input,blockquote,th,td { /* be specific for Netscape4 - doesn't understand inheritance */
	font-size: 100%;
	margin: 0;
	padding:0;
}
fieldset,img{
	border: 0;
}
a:link img, a:visited img {
	border: none;
}
/*___________END Browser Normalization__________________________________________________*/

/*___________Text Setup_________________________________________________________________*/
/*font scaling using Richard Rutter's (Dan Cederholm) method - ems x 10=pixels */
body {
	font-size: 62.5%; /*calibrate so 1em=10px*/
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	color: #000;
	background: #FFF;
}
body * {
	font-size: 100%;
}
/*div {
	margin:0px;
	padding:0px;
	font-family:verdana; font-size:12px;
}*/

h1,h2,h3,h4,h5,h6{
	color: #09F;
	font-weight: normal;
}
h1{
	font-size: 2em;
	margin-bottom: 0.5em;
	text-transform: capitalize;
	line-height: 1em;
	margin-top: 0.5em;
}
h2{
	font-size: 1.8em;
}
h3 {
	font-size: 1.5em;
	margin-bottom: 1em;
}
h4 {
	font-size: 1.2em;
	margin-bottom: 0.5em;
}
h5{

}
h6{

}
p {
	font-size: 1.2em;
	margin-bottom: 0em;
	margin-top: 1.1em;
}
/*___________END Text Setup_____________________________________________________________*/

