/*
Copyright (c) 2009, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
version: 2.7.0
*/
/**
 * YUI Base
 * @module base
 * @namespace yui-
 * @requires reset, fonts
*/

div.spacer {
	clear: both;
}
html {
	background: url(../images/clouds_bg.jpg) repeat-x left bottom;
}


h1 {
	/* 18px via YUI Fonts CSS foundation. */
	font-size: 138.5%;

}

h2 {
	font-family: 'Crete Round', Georgia, serif;
	font-size: 197%;
	margin: 0 0 20px 0;
	color: #454545;
}

h2 em{
	font-family: 'PT Sans', arial,helvetica,clean,sans-serif;
	font-size: 17px;
	font-weight: normal;
}

h2 span {
	font-size: 16px;
}

h3 {
	font-size: 197%;
	color: #ec1c24;
	font-weight:700;
	margin: 0 0 20px 0;	
}

p, ol{
	font-size: 116%;
	line-height: 25px;
	margin: 0 0 25px 0;
}

blockquote {
	font-size: 123.1%;
	font-style: italic;
	line-height: 25px;
	margin: 0 0 20px 0;
	color: #424242;
}


strong,dt {
	/* Bringing boldness back to headers and the strong element. */
	font-weight: bold;
}

a {
	outline:none;
	text-decoration: none;

}
a:link {
	color: #ff4a4a;
}
a:visited {
	color: #ff4a4a;
}
a:hover {
	text-decoration: underline;
	color: #ff4a4a;
}
a:active {
	color: #ff4a4a;
}



optgroup {
	font-weight:normal;
}

abbr,acronym {
	/* Indicating to users that more info is available. */
	border-bottom: 1px dotted #000;
	cursor: help;
}

em {
	/* Bringing italics back to the em element. */
	font-style: italic;
}

del {
	/* Striking deleted phrases. */
	text-decoration: line-through;
}

ul,ol,dl {
	/* Giving blockquotes and lists room to breath. */

}

ol,ul,dl {
	/* Bringing lists on to the page with breathing room. */
	
}

ol li {
	/* Giving OL's LIs generated numbers. */
	list-style: decimal outside;
}

ul li {
	/* Giving UL's LIs generated disc markers. */
	list-style: disc outside;
}

dl dd {
	/* Giving UL's LIs generated numbers. */
	margin-left: 1em;
}

th,td {
	/* Borders and padding to make the table readable. */
	border: 1px solid #000;
	padding: .5em;
}

th {
	/* Distinguishing table headers from data cells. */
	font-weight: bold;
	text-align: center;
}

caption {
	/* Coordinated margin to match cell's padding. */
	margin-bottom: .5em;
	/* Centered so it doesn't blend in to other content. */
	text-align: center;
}

sup {
	/* to preserve line-height and selector appearance */
	vertical-align: super;
}

sub {
	/* to preserve line-height and selector appearance */
	vertical-align: sub;
}

fieldset,
table,
pre {
	/* So things don't run into each other. */
	margin-bottom: 1em;
}
/* Opera requires 1px of passing to render with contemporary native chrome */
button,
input[type="checkbox"],
input[type="radio"],
input[type="reset"],
input[type="submit"] {
	padding:1px;
}


/* The Window's CSS z-index value is respected (takes priority). If none is supplied,
	the Window's z-index value will be set to 3000 by default (via jqModal.js). */
	
.jqmWindow {
    display: none;
    position: fixed;
    top: 15%;
    left: 50%; 
    margin-left: -466px;
	width: 768px;
	height: 432px;
	text-align: center;
	line-height: 432px;		
    background-color: #000;
    color: #fff;
    border: 17px solid #fff;
    padding: 0;
	-moz-border-radius: 10px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	box-shadow: 1px 8px 50px #000; 
	-webkit-box-shadow: 1px 8px 50px #000; 
	-moz-box-shadow: 1px 8px 50px #000;
	z-index: 6000;
}

.jqmWindowImg{
    display: none;
    position: fixed;
    top: 5%;
    left: 50%; 
    margin-left: -490px;
	width: 838px;
	height: 628px;
	text-align: center;
	line-height: 628px;		
    background-color: #000;
    color: #fff;
    border: 8px solid #fff;
    padding: 0;
	-moz-border-radius: 10px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	box-shadow: 1px 8px 50px #000; 
	-webkit-box-shadow: 1px 8px 50px #000; 
	-moz-box-shadow: 1px 8px 50px #000;
	z-index: 6000;		
}

.jqmOverlay { /*background-color: #000;*/ }

/* Background iframe styling for IE6. Prevents ActiveX bleed-through (<select> form elements, etc.) */
* iframe.jqm {position:absolute;top:0;left:0;z-index:-1;
	width: expression(this.parentNode.offsetWidth+'px');
	height: expression(this.parentNode.offsetHeight+'px');
}

/* Fixed posistioning emulation for IE6
     Star selector used to hide definition from browsers other than IE6
     For valid CSS, use a conditional include instead */
* html .jqmWindow {
     position: absolute;
     top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(17 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
}

.jqmClose{
	position: absolute;
	top: -30px;
	right: -30px;
	display: block;
	background: url(../images/close_button.png) no-repeat;
    width: 56px;
	height: 66px;
	z-index: 5000;
}