/***********************************************************
reset.css
**********************************************************/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	background: transparent;
	font-size: 100%;
	text-align: left; 
}

/* this is to keep page from shifting to left on load in safari and firefox
**********************************************************/
html { min-height: 100%; margin-bottom: 1px; }
html { overflow: -moz-scrollbars-vertical !important; }

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;
	line-height: 1.2;
}


/* common layout elements
**********************************************************/
h1, h2, h3, h4, h5, h6 { 
	line-height: normal;
	font-weight: normal; 
}

.hide { display: none; }
/* Define in print.css */
.noPrint {}

ol, ul  { list-style: none; }

a, button { 
	cursor: pointer;
	text-decoration: none;
}
a:link, a:visited, a:hover, a:target, a:active {}
/* Feature for MOS - Accesskeys */
a[accesskey]:after { content: " (" attr(accesskey) ") "; }

img { display: block; }

ins { text-decoration: none; }
del { text-decoration: line-through; }

abbr, acronym { 
	cursor: help; 
	border-bottom: 1px dotted #000;
}

address { font-style: normal; }

blockquote, q { quotes: none; }
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

object, embed { display: block; }

/* form elements
**********************************************************/
fieldset { position: relative; }
	legend { 
		*position: relative;
		*margin-left: -.63em;  
	}
	
	label { cursor: default; }
	
	select, input, texarea, button, textarea { font: 120%/normal arial, sans-serif; }
	input.image {
		width: auto;
		height: auto;
	}
	textarea { overflow: auto; }
	
	:focus { outline: 0; }

/*  table Elements
**********************************************************/
table {
	*border-collapse: collapse;
	border-spacing: 0;
}
	th { font-weight: normal;  }

/*  deprecated tag (to handle CMS)
**********************************************************/
center { text-align: center; }

b { font-weight: bold; }
i { font-style: italic; }

big { font-size: large; }
small { font-size: small; }

menu { list-style: none; }

applet { display: block; }

blink { text-decoration: blink; }
s, strike { text-decoration: line-through; }
u { text-decoration: underline; }

/*  png ppacity fix for ie7 to remove black border
**********************************************************/
.opacityFix {
	*filter: alpha(opacity=0);
	*opacity: 0;
	*-moz-opacity: 0;
	*position: absolute;
	*width: 100%;
	*height: 100%;
}

/*  iframe Fix for <select>'s bleed-through on kick-outs in ie6
**********************************************************/
.iframeFix {
	position: absolute;
	z-index: 100000;/*any value*/
	overflow: hidden;/*must have*/
	width: 100%;/*must have for any value*/;
}
	.iframeFix 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*/;
	}
	
/*  general opacity style used on ajax loads
**********************************************************/
.opaque {
	background-color: #000;
	-moz-opacity: 0.2;
	opacity:.20;
	filter: alpha(opacity=20);
}	
	
/*  clear fix
**********************************************************/
.clear {
	display: block;
	*display: inline-block;
	_height: 1%;
}
.clear:after { 
	content: "."; 
	clear: both; 
	display: block; 
	visibility: hidden; 
	height: 0; 
	line-height: 0; 
}