/*
 **  Copyright 2009 iChemLabs, LLC.  All rights reserved.
 **
 **  $Revision: 1236 $
 **  $Author: kevin $
 **  $LastChangedDate: 2009-08-15 00:29:53 -0700 (Sat, 15 Aug 2009) $
 */
body {
    font-family: Lucida Console, Monaco, monospace;
    font-size: 12px;
	text-align:center;
}

a {
    color: #8B3D00;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h3 {
	color:#c10000;
	font-style:italic;
	margin-top:0;
}

div.description {
    font-style: normal;
    font-size: 14px;
    margin: 20px 80px 20px 80px;
}

div.main {
    width: 1100px;
    border-left: 1px solid black;
    border-right: 1px solid black;
    background-image: url('images/background.png');
    background-repeat: repeat-x;
	text-align: left;
}

div.inner {
    margin: 20px 10px 20px 10px;
}

hr {
    border: 0;
    width: 80%;
    color: #184D20;
    background-color: #184D20;
    height: 2px;
}

#copyright {
    text-align: center;
    color: #333333;
    font-weight: normal;
    text-decoration: none;
    font-size: 10pt;
	  font-family:Tahoma,Arial,Helvetica,serif;
    width: 100%;
    padding: 20px 0px 5px 0px;
}

/* qUnit styles */

.pass { color: green; } 
.fail { color: red; } 
p.result { margin-left: 1em; }

#banner { height: 2em; border-bottom: 1px solid white; }
h2.pass { background-color: green; }
h2.fail { background-color: red; }

div.testrunner-toolbar { background: #eee; border-top: 1px solid black; padding: 10px; }

ol#tests li strong { cursor:pointer; }

div#fx-tests h4 {
	background: red;
}

div#fx-tests h4.pass {
	background: green;
}

div#fx-tests div.box {
	background: red url(data/cow.jpg) no-repeat;
	overflow: hidden;
	border: 2px solid #000;
}

div#fx-tests div.overflow {
	overflow: visible;
}

div.inline {
	display: inline;
}

div.autoheight {
	height: auto;
}

div.autowidth {
	width: auto;
}

div.autoopacity {
	opacity: auto;
}

div.largewidth {
	width: 100px;
}

div.largeheight {
	height: 100px;
}

div.largeopacity {
	filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
}

div.medwidth {
	width: 50px;
}

div.medheight {
	height: 50px;
}

div.medopacity {
	opacity: 0.5;
	filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
}

div.nowidth {
	width: 0px;
}

div.noheight {
	height: 0px;
}

div.noopacity {
	opacity: 0;
	filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
}

div.hidden {
	display: none;
}

div#fx-tests div.widewidth {
	background-repeat: repeat-x;
}

div#fx-tests div.wideheight {
	background-repeat: repeat-y;
}

div#fx-tests div.widewidth.wideheight {
	background-repeat: repeat;
}

div#fx-tests div.noback {
	background-image: none;
}

div.chain, div.chain div { width: 100px; height: 20px; position: relative; float: left; }
div.chain div { position: absolute; top: 0px; left: 0px; }

div.chain.test { background: red; }
div.chain.test div { background: green; }

div.chain.out { background: green; }
div.chain.out div { background: red; display: none; }

div#show-tests * { display: none; }

#ad {

		/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:10000;
	
	/* styling */
	background-color:#333;
	
	width:500px;	
	min-height:200px;
	border:1px solid #666;
	
	/* CSS3 styling for latest browsers */
	-moz-box-shadow:0 0 90px 5px #000;
	-webkit-box-shadow: 0 0 90px #000;
	
	color:white;
	font-family: Verdana, Verdana, Geneva, sans-serif;
}
#ad .close {
	background-image:url(/images/close.png);
	position:absolute;
	right:-15px;
	top:-15px;
	cursor:pointer;
	height:35px;
	width:35px;
}