﻿/* 
Project:			Gabriella Gafni
Title:				Foundation Style Sheet
Author:			William P. Wang
Updated			5 March 2007

NOTES
__________________________________________________

Color Suggestions:

__________________________________________________

*/

/* GENERICS
____________________________________________________________________________________________________ */

html, body
{
	margin: 0;
	height: 100%;
	font-family: Georgia, Arial, Verdana, sans-serif;
	font-size: 12px;
	text-align: center;
	line-height: 1.5em;
	color: #000000;
	background: #ffffff url(ghostwriter/bg_top.gif) repeat-y 50% 0;
}

/* PAGE STRUCTURE
____________________________________________________________________________________________________ */

#container
{
	position: relative;
	max-width: 900px;
	min-width: 580px;
	min-height: 100%;
	margin: 0 auto;
	text-align: left;
	background: #ffffff;
	border: solid 1px #000000;
}

/* HEADER */

#header
{
	background-color: #ff0000;
}


#logo
{
	float: left;
	width: 100%;
	background-color: #073586;
}

/* NAVIGATION */
#nav
{
	float: left;
	width: 100%;
	font-size: 1em;
	background-color: #000000;
}

#nav ul
{
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	list-style: none;
}
#nav li
{
	float: left;
	margin: 0;
	padding: 0;
}
#nav li a
{
	float: left;
	margin: 0px 15px 0px 0px;
	padding: 5px 5px 5px 5px;
	font-size: 100%;
	font-weight: bold;
	text-decoration: none;
	color: #ff0000;
}
#nav li a:hover
{
	color: #ffffff;
	border-top: 2px solid #ffffff;
	border-bottom: 2px solid #ffffff;
	background: #000000;
}
#nav li a.active
{
	font-weight: bold;
	color: #ff0099;
	border-top: 2px solid #ff0000;
	border-bottom: 2px solid #ff0000;
	background: #000000;
}

/* CONTENT */

#main-body
{
	clear: both;
	padding: 0px 0px 0px 0px;
	background: url(../IMAGES/main-bg-blks.gif) repeat-x top left;
}

#sidebar
{
	float: left;
	width: 250px;
	padding: 20px 15px 5px 5px;
	line-height: 1.5em;
	color: #777;
	background: #ffffff;
}

#sidebar h3
{
	margin: 0 0 10px 0;
	padding: 0 0 2px 0;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: bold;
	color: #073586;
	border-bottom: 1px dotted #073586;
}

#sidebar ul
{
	margin: 0px 0px 0px 0px;
}

#sidebar ul li
{
	padding: 0px 0px 5px 10px;
	font-family: Georgia, Arial, Verdana, sans-serif;
	font-size: 10px;
	color: #000000;
	line-height: 2em;
	list-style: none;
}

#sidebar .photo
{
	margin: 10px 0px 0px 25px;
	padding: 0px 0px 0px 0px;
}

#content
{
	float: left;
	width: 65%;
	padding: 20px 5px 20px 5px;
	background: #ffffff;
}

#content h3
{
	margin: 0 0 10px 0;
	padding: 0 0 2px 0;
	font-size: 100%;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: bold;
	color: #BA3B3E;
	border-bottom: 1px solid #073586;
}

#content h4
{
	margin: 0 0 10px 0;
	padding: 0 0 2px 0;
	font-size: 100%;
	letter-spacing: 1px;
	font-weight: bold;
	color: #BA3B3E;
}

/* FOOTER
____________________________________________________________________________________________________ */

#footer
{
	clear: both;
	position: relative;
	width: 100%;
	bottom: 0;
	padding: 10px 0px 10px 0px;
	font-family: Verdana, sans-serif, Georgia, Arial;
	font-size: 10px;
	text-align: left;
	color: #ffffff;
	background: #000000;
}

#footer p
{
	margin: 0;
	padding: 0px 0px 0px 10px;
}

/* LINKS
____________________________________________________________________________________________________ */

a:link, a:visited
{
	padding: 0 0 1px 0;
	font-weight: bold;
	font-size: 12px;
	text-decoration: none;
	color: #40608C;
}
a:hover
{
	color: #2D405B;
	text-decoration: underline;
}

/* HOT FIXES FOR IE
____________________________________________________________________________________________________ */

/* Fix: Font-size keyword problem for IE5/Win */
body
{
	font-size: x-small; /* For: IE5 Win */
	voice-family: "\"}\"";
	voice-family: inherit;
	font-size: small;
}
html > body
{
	/* For: Opera */
	font-size: small;
}

/* Fix: IE doesn't like block anchors */
* html ul.articles li a
{
	height: 1%;
}

/* Fix: Strange issue with BODY padding in IE */
* html #container
{
	height: 1%;
}


/* SELF CLEARING FLOATS
____________________________________________________________________________________________________ */

/* Internet Explorer 7 */
#logo, #nav, #title, #main-body, #resources, #port, .prod-feature, dl.item
{
	display: inline-block;
}

/* target ie5+6/win only */
* html #logo, * html #nav, * html #title, * html #main-body, * html #resources, * html #port, * html .prod-feature, * html dl.item
{
	height: 1%;
}

/* Reset display property for all browsers */
#logo, #nav, #title, #main-body, #resources, #port, .prod-feature, dl.item
{
	display: block;
}
