/* 
 * File: mainSite.css
 * Purpose: Styles defined here are used throughout the site.
 * Author: Monish Nagisetty
 * Date: 03/11/2006
 * Credit: Web standards used from bluerobot.com (http://www.bluerobot.com/web/layouts/)
*/

body
{
	margin: 0px;
	padding: 0px;
	font-family: Tahoma, Verdana, Helvetica, Helvetica-Narrow, sans-serif;
	font-size: medium;
	color: #333;
	background-color: white;
}

/* Headings */
h1
{
	margin: 0px 0px 15px 0px;
	padding: 0px;
	font-size: 20px;
	line-height: 20px;
	font-weight: 900;
	color: #ccc;
}

h2
{
	margin: 0px 0px 15px 0px;
	padding: 0px;
	font-size: 17px;
	line-height: 17px;
	font-weight: 900;
	color: black;
}

h3
{
	margin: 0px 0px 15px 0px;
	padding: 0px;
	font-size: 14px;
	line-height: 14px;
	font-weight: 900;
	color: black;
}

h4
{
	margin: 0px 0px 15px 0px;
	padding: 0px;
	font-size: 12px;
	line-height: 12px;
	font-weight: 900;
	color: black;
}

/* Links */
a
{
	color: #09c;
	font-size: 11px;
	text-decoration: none;
	font-weight: 600;
	font-family: verdana, arial, helvetica, sans-serif;
}
a:link
{
	color: #09c;
}
a:visited
{
	color: #07a;
}
a:hover
{
    color: #eee;
	background-color: #09c;
}




/* shows a visual seperation */
.DashedLine
{
	border-top: 1px dashed black;
	padding-top: 10px;
	margin-bottom: 10px;
	clear: right;
}


.GreyPanel
{
	margin: 0px 0px 10px 0px;
	padding: 10px 10px 10px 10px; /* For IE5/Win's benefit height = [correct height] + [top padding] + [top and bottom border widths] */
	height: auto;
	width: 300px;
	border-style: solid;
	border-color: black;
	border-width: 1px; /* top and bottom borders: 1px; left and right borders: 0px */
	line-height: 11px;
	background-color: #eee; /* Here is the ugly brilliant hack that protects IE5/Win from its own stupidity.  Thanks to Tantek Celik for the hack and to Eric Costello for publicizing it.  IE5/Win incorrectly parses the "\"}"" value, prematurely closing the style  declaration. The incorrect IE5/Win value is above, while the correct value is  below. See http://glish.com/css/hacks.asp for details. */
    text-align: left;
}

.GreyPanelWide
{
	margin: 0px 0px 10px 0px;
	padding: 10px 10px 10px 10px; /* For IE5/Win's benefit height = [correct height] + [top padding] + [top and bottom border widths] */
	height: auto;
	width: 650px;
	border-style: solid;
	border-color: black;
	border-width: 1px; /* top and bottom borders: 1px; left and right borders: 0px */
	line-height: 11px;
	background-color: #eee; /* Here is the ugly brilliant hack that protects IE5/Win from its own stupidity.  Thanks to Tantek Celik for the hack and to Eric Costello for publicizing it.  IE5/Win incorrectly parses the "\"}"" value, prematurely closing the style  declaration. The incorrect IE5/Win value is above, while the correct value is  below. See http://glish.com/css/hacks.asp for details. */
    text-align: left;    
}

.GreyPanel div, .GreyPanelWide div
{
	font-size: 11px;
}

table#displayArticles td
{
	text-align:left;
		
}