/*
	ForSaleInator
	CSS Style Sheet
	
	By Kyle Weishaupt
	Created January 2010
*/

/*
-----------------------------------------------
	Special Elements
	Browser-specific stuff
	
	Internet Explorer is horrible and doesn't
	support any of these.
-----------------------------------------------
*/

/* Rounded Corners on navigation items */
div#Navigation ul li {
	-webkit-border-top-left-radius: 10px;
	-webkit-border-top-right-radius: 10px;
	-moz-border-radius-topleft: 10px;
	-moz-border-radius-topright: 10px;
	-khtml-border-radius-topleft: 10px;
	-khtml-border-radius-topright: 10px;
	border-radius-topleft: 10px;
	border-radius-topright: 10px;
}

/* Rounded body */
div#Content {
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

/*
-----------------------------------------------
	Body & Container
-----------------------------------------------
*/

html, body {
	margin: 0px;
	padding: 0x;
	background-color: orange;
	font-family: Helvetica,Verdana,Arial;
	z-index: 0;
}
body {
	background: url('images/layout/background.jpg') no-repeat top center;
	min-height: 800px;
}
div#Container {
	position: relative;
	z-index: 1;
	margin: 0 auto;
	padding: 126px 0px 0px 0px;
	width: 944px;
	background-color: transparent;
}

/*
-----------------------------------------------
	Header
-----------------------------------------------
*/

div#Header {
	top: 32px;
	position: absolute;
	border: 0px;
	z-index: 1000;
}

/*
-----------------------------------------------
	Navigation
-----------------------------------------------
*/

div#Navigation {
	z-index: 200;
	margin-top: 0px;
	color: white;
	padding: 4px;
	text-align: right;
	font-size: 18px;
}
div#Navigation ul {
	list-style-type: none;
	margin-right: 0px;
	margin-bottom: 0px;
}
div#Navigation ul li {
	display: inline;
	margin-right: 4px;
	background-color: #444;
	padding: 16px 18px 12px 8px;
	font-size: 16px;
	line-height: 32px;
}
div#Navigation ul li:hover {
	padding-top: 16px;
	border-bottom: 4px solid orange;
	background-color: #000;
}

div#Navigation ul li:hover a {
	color: orange;
}
div#Navigation ul li a {
	display: inline-block;
	margin-left: 6px;
	font-weight: bold;
	text-decoration: none;
	color: white;
}
div#Navigation ul li a img {
	border: 0px;
	vertical-align: text-bottom;
	margin-right: 4px;
	margin-bottom: -4px;
}
div#Navigation ul li.active {
	background-color: #747474;
	padding: 24px 18px 12px 8px;
}
div#Navigation ul li.active {
	padding-bottom: 18px;
}
div#Navigation ul li.active a img {
	padding-bottom: 0px;
}

/*
-----------------------------------------------
	Content
-----------------------------------------------
*/

div#Content {
	z-index: 1000;
	padding: 24px 16px 16px 16px;
	background-color: white;
	clear: both;
	border: 2px solid white;
}
div#Content p {
	margin: 8px 2px;
}
div#Content img.float {
	float:left;
	margin: 8px 16px 16px 16px;
	border: 6px solid #DDD;
}

/* Headers */
div#Content h1 {
	font-size: 40px;
	line-height: 40px;
	margin: 16px 16px 4px 16px;
	padding: 0px;
}
div#Content h2 {
	font-size: 30px;
	line-height: 30px;
	margin: 16px 16px 4px 16px;
	padding: 0px;
}

/*  Text Formatting */
div#Content p.textImportant {
	font-weight: bold;
	font-size: 28px;
	line-height: 44px;
}
div#Content p.textBig {
	font-size: 24px;
	line-height: 34px;
}
div#Content p.textMedium {
	font-size: 18px;
	line-height: 24px;
}
div#Content p.textItalic {
	font-style: italic;
}
div#Content p.textShop {
	margin-left: 16px;
	font-size: 18px;
}
div#Content p.textShop a {
	text-decoration: none;
}

/* Float clear fix */
div#Content:after {
	content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

/*
-----------------------------------------------
	Home page stuff
-----------------------------------------------
*/
div#FSIVersions table {
	margin: 16px 0px;
	border: none;
	width: 876px;
	text-align: center;
}
div#FSIVersions table th {
	width: 33%;
	font-size: 22px;
}
div#FSIVersions table td {
	width: 33%;
	font-size: 14px;
}
div#FSIVersions table td.versionPic img{
	border: 2px solid #ccc;
	padding: 6px;
	margin: 8px;
}
div#FSIVersions table td.versionPic img:hover {
	padding: 0px;
	border: 8px solid orange;
}
div#FSIVersions table td a {
	text-decoration: none;
	font-weight: bold;
}
div#FSIVersions table td.learnMore img {
	border: 0px;
	vertical-align: text-bottom;
}
span.fsiPrice {
	font-size: 40px;
}

/*
-----------------------------------------------
	Footer
-----------------------------------------------
*/

div#Footer {
	font-family: Verdana, Arial;
	padding-top: 16px;
	margin-bottom: 24px;
	color: #594A0D;
	font-size: 12px;
	line-height: 14px;
	text-align: center;
}
div#Footer a {
	color: #382400;
	text-decoration: none;
	font-weight: bold;
}
div#Footer p {
	margin: 4px;
}
