@charset "utf-8";

/* GLOBAL */

html, body { width:auto; height:auto; min-width:100%; min-height:100%; }

/* ALL HTML 4.01 TAGS */

a, abbr, acronym, address, applet, area, b, base, basefont, bdo, big, blockquote, body, br, button, caption, center, cite, code, col, colgroup, dd, del, dfn, dir, div, dl, dt, em, fieldset, font, form, frame, frameset, h1, h2, h3, h4, h5, h6, head, hr, html, i, iframe, img, input, ins, isindex, kbd, label, legend, li, link, map, menu, meta, noframes, noscript, object, ol, optgroup, option, p, param, pre, q, s, samp, script, select, small, span, strike, strong, style, sub, sup, table, tbody, td, textarea, tfoot, th, thead, title, tr, tt, u, ul, var
{ margin:0; padding:0; border:none; outline:none; line-height:normal; color:#333; font-size:15px; font-family:"century gothic",sans-serif; vertical-align:baseline; }

/* HEADERS */

h1, h2, h3, h4, h5, h6 { display:block; position:relative; }
h1 *, h2 *, h3 *, h4 *, h5 *, h6 * { display:inline; margin:0; }

h1, h1 * { font-size:18px; font-weight:bold; margin-bottom:15px; }
h2, h2 * { font-size:17px; font-weight:bold; margin-bottom:15px; }
h3, h3 * { font-size:16px; font-weight:bold; margin-bottom:10px; }
h4, h4 * { font-size:15px; font-weight:bold; margin-bottom:10px; }
h5, h5 * { font-size:14px; font-weight:bold; margin-bottom:5px; }
h6, h6 * { font-size:13px; font-weight:bold; margin-bottom:5px; }

/* BASIC */

div, img, p, blockquote, ul, ol, hr { display:block; position:relative; }

div { min-height:0; }
p, blockquote, ul, ol { margin-bottom:15px; }
ul ul, ol ol { margin-bottom:0; }
li { display:list-item; padding:0; }
ul li { list-style:outside disc; margin:0 0 0 15px; }
ul ul { padding-left:15px; }
ul ul li { list-style:outside circle; }
ul ul ul li { list-style:outside square; }
ol li { list-style:outside decimal; margin:0 0 0 20px; }
ol ol { padding-left:20px; }
ol ol li { list-style:outside lower-alpha; }
ol ol ol li { list-style:outside lower-roman; }
a { display:inline; text-decoration:none; font-weight:bold; color:#F00; }
a:hover { text-decoration:underline; }
strong, strong *, b, b * { font-weight:bold; }
em, em *, i, i * { font-style:italic; }
hr { margin:20px 0; overflow:hidden; height:1px; line-height:0; background:#AAA; color:#AAA; }
button { cursor:pointer; padding:3px 6px; }
abbr, acronym { font-style:normal; border-bottom:1px dotted; cursor:help; }
del { text-decoration:line-through; }

/* TABLES */

table    { display:table; table-layout:fixed; border-collapse:collapse; border:none; empty-cells:show; border-spacing:0; text-align:center; }
tr       { display:table-row; }
thead    { display:table-header-group; }
tbody    { display:table-row-group; }
tfoot    { display:table-footer-group; }
col      { display:table-column; }
colgroup { display:table-column-group; }
td, th   { display:table-cell; white-space:nowrap; vertical-align:middle; border:1px solid #555; padding:5px; }
caption  { display:table-caption; }


/* FORMS */

form, input, textarea, select, fieldset, label { display:block; position:relative; margin:0; padding:0; }

form label { cursor:text; }
form input.text { cursor:text; padding:3px; }
form input.file { cursor:pointer; padding:3px; }
form input.submit { cursor:pointer; padding:3px 6px; }
form input.hidden { display:none; }
form select { cursor:pointer; padding:3px; }
form textarea { cursor:text; overflow:auto; padding:3px; resize:vertical; }

form input.text, form input.file, form select, form textarea { color:#333; /* border:1px solid #AAA; background:#FFF; */ }

/* CLASSES */

.float-L { float:left !important; }
.float-R { float:right !important; }

.clear-L { clear:left !important; }
.clear-R { clear:right !important; }
.clear-B { clear:both !important; }

.hide, .hide * { display:none !important; }
.show { display:block !important; }
.focus, .focusChildren * { outline:1px dotted #000; }

sup, .superscript {
	font-size: xx-small !important;
	vertical-align: text-top !important;
	position:relative !important;
	top:-1px !important;
	display:inline !important;
	line-height:normal !important;
}

sub, .subscript {
	font-size: xx-small !important;
	vertical-align: text-bottom !important;
	position:relative !important;
	bottom:-1px !important;
	display:inline !important;
	line-height:normal !important;
}

.inlineBlock, .inlineBlockChildren * {
	display:-moz-inline-stack;
	display:inline-block;
	zoom:1;
	*display:inline;
}

.alpha, .alphaChildren * {
	opacity: .75; /* Standard: FF gt 1.5, Opera, Safari */
	filter: alpha(opacity=75); /* IE lt 8 */
	-ms-filter: "alpha(opacity=75)"; /* IE 8 */
	-khtml-opacity: .75; /* Safari 1.x */
	-moz-opacity: .75; /* FF lt 1.5, Netscape */
}

.shadow, .shadowChildren * {
	box-shadow:1px 1px 5px rgba(0, 0, 0, 0.8); /* CSS3 */
	-moz-box-shadow:1px 1px 5px rgba(0, 0, 0, 0.8); /* Mozilla browsers */
	-webkit-box-shadow:1px 1px 5px rgba(0, 0, 0, 0.8); /* Webkit Browsers */
	/*
	WARNING: using filters will disable ClearType + require a block element such as div to work
	IE7 and below requires the element to have a width and height
	*/
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(color=#888888,direction=135,strength=3)"; /* IE8+ */  
	filter: progid:DXImageTransform.Microsoft.Shadow(color=#888888,direction=135,strength=3); /* IE7 and lower */
}

.corners, .cornersChildren * {
	-moz-border-radius: 10px; /* Mozilla browsers */
	-webkit-border-radius: 10px; /* Webkit Browsers */
	-khtml-border-radius: 10px; /* KHTML */
	border-radius: 10px; /* CSS3 */
}

.gradient {
	background: -moz-linear-gradient(top,#cccccc,#888888); /* Mozilla browsers */
	background: -webkit-gradient(linear, left top, left bottom, from(#cccccc), to(#888888)) no-repeat; /* Webkit Browsers */
	/*
	WARNING: using filters will disable ClearType + require a block element such as div to work
	IE7 and below requires the element to have a width and height
	*/
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient (GradientType=0, startColorstr=#ffcccccc, endColorstr=#ff888888)"; /* IE8+ */
	filter: progid:DXImageTransform.Microsoft.gradient (GradientType=0, startColorstr=#ffcccccc, endColorstr=#ff888888); /* IE7 and lower */
	  
}

/* HACKS */

.clearfix:after { content:"."; }
.clearfix { display:block; clear:both; visibility:hidden; line-height:0; height:0; overflow:hidden; }

*:focus { outline:0; } /* remove focus borders from webkit browsers */
* html div { height:1%; zoom:1; } /* ie6 'holly hack' to prevent the 'peekaboo bug' */

/* buttons in IE6 & IE7 have extra padding */
* html form input.submit { width:auto; display:inline; overflow:visible; }
* html button { width:auto; display:inline; overflow:visible; }
*:first-child+html form input.submit { width:auto; display:inline; overflow:visible; }
*:first-child+html button { width:auto; display:inline; overflow:visible; }

body { behavior:url("css/csshover3.htc");  }


