/***********************************************************
reset.css
**********************************************************/

/*  master reset 
**********************************************************/
* {
	margin: 0;
	padding: 0;
	border: 0;
	outline: none;
}
body {
	font-size: 62.5%;
	font-family: arial, verdana, helvetica, georgia, 'Lucida Grande', 'Lucida Sans Unicode', 'Trebuchet MS', 'Arial Black', 'Courier New', 'Times New Roman', 'Times', sans-serif;
}

/*  headers
**********************************************************/
h1, h2, h3, h4, h5, h6, p {
	font-weight: normal;
	font-size: 1.0em;
}

/*  anchors
**********************************************************/
a { cursor: pointer; }

/*  lists
**********************************************************/
ul, ol { list-style: none; }
li { 
	font-size: 1.0em;
	line-height: 1.0em;
}

/*  objects / embeds
**********************************************************/
object, embed { display: block; }

/*  forms
**********************************************************/
form, fieldset { border: 0; }
fieldset { position: relative; }
legend { display: none; }
label { cursor: default; }
button { cursor: pointer; }	

/*  tables
**********************************************************/
table {
	*border-collapse: collapse;
	border-spacing: 0;
	border: 0;
}
td, th, caption {
	font-weight: normal;
	text-align: left;
	vertical-align: top;
}

/*  images
**********************************************************/
img { display: block; }

/*  address
**********************************************************/
address { font-style: normal; }

/*  clear fix
**********************************************************/
.clear:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}
.clear {display: inline-block;}
/* Hides from IE-mac \*/
* html .clear {height: 1%;}
.clear {display: block;}
/* End hide from IE-mac */

/*  png apacity fix for ie7
**********************************************************/
.pngfix {
	filter: alpha(opacity=0);
	opacity: 0;
	-moz-opacity: 0;
	position: absolute;
	width: 100%;
	height: 100%;
}

/*  iframe fix for <select> bleed-through on kick-outs in ie6
**********************************************************/
.iframeMe {
	position: absolute;
	z-index: 100000;/*any value*/
	overflow: hidden;/*must have*/
	width: 100%;/*must have for any value*/;
}
.iframeMe iframe {
	display: none;/*sorry for IE5*/
	display/**/: block;/*sorry for IE5*/
	position: absolute;/*must have*/
	top: 0;/*must have*/
	left: 0;/*must have*/
	z-index: -1;/*must have*/
	filter: mask();/*must have*/
	width: 3000px;/*must have for any big value*/
	height: 3000px/*must have for any big value*/;
}