@charset "utf-8";
/* CSS Master Document vers 2.0*/
/*Copyright 2009 Sleight-of-Hand Studios LLC; All Rights Reserved*/
/*Contains styles to calibrate all browsers for a similar user experience, and regularly reused styles for SoH*/

/*________________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;}
.fltRight {float: right;}
.center {text-align: center;}
.fullwidth{width: 100%;}
.hideInitially{visibility: hidden;}
.hideRemove{display: none;}
.clickable {
	cursor: pointer;
}

/*___________END STANDARD CODE________________________________________________________*/

/*___________Browser Normalization____________________________________________________*/
* {
	margin:0;
    border:0;
	padding:0;
}
html{color:#000;background:#FFF;}
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;
}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{ /* be specific for Netscape4 - doesn't understand inheritance */
	margin:0;
	padding:0; 
	font-size: 100%;
}
table{
	border-collapse:collapse;
	border-spacing:0;
}
fieldset,img{
	border: 0;
}
a:link img, a:visited img, a:active img {
	border: none;
}

/*___________new from YUI reset__________________________________________________*/
address,caption,cite,code,dfn,em,strong,th,var{
	font-style:normal;
	font-weight:normal;
}
li{
	list-style: disc;
	/*list-style:none;*/
	}
caption,th{text-align:left;}
h1,h2,h3,h4,h5,h6{
	font-weight:normal;
}
q:before,q:after{
	content:'';
}
abbr,acronym {
	border:0;
	font-variant:normal;
}

/* to preserve line-height and selector appearance */
sup {vertical-align:text-top;}
sub {vertical-align:text-bottom;}
input,textarea,select{
	font-family:inherit;
	font-size:inherit;
	font-weight:inherit;
}
input,textarea,select{/*to enable resizing for IE*/
	*font-size:100%;
}

legend{/*because legend doesn't inherit in IE */
	color:#000;
}
del,ins{text-decoration:none;}
