﻿/*
    WebSearch Website Common Styles
    Filename: Styles.css
    Last Updated: April 2, 2007
    Updated By: Michael Brockman

    This styles sheet contains common HTML element styles
    for the client site. Any additional client styles
    should also be added here. The WsStyles.css stylesheet
    contains the default style selectors used by the
    WebSearch web controls.
*/

/* Main Styles */
html,body
{
	margin: 0px;
	height: 100%
}

body, table, tr, td, div, span, a, textarea
{
	font-family: verdana, arial, sans-serif;
	font-size: 12px;
}

a, .highlight
{
    color: #0B577B;
}

a:hover
{
    color: #128EC8;
}

h1, .h1
{
	color: #0B577B;
	font-size: 18px;
	font-weight: normal;
}

h2, .h2
{
	color: #5B5B5B;
	font-size: 16px;
	font-weight: normal;
}

input.submit, input.update
{
	color: White;
	background-color: #3C79B2;
}

input.delete
{
	color: White;
	background-color: #C00000;
}

input.submit2
{
	color: White;
	background-color: #639CCE;
}

select
{
	background-color: #EFF6FB;
}

textarea, .textarea
{
	border: dimgray 1px solid;
	background-image: none;
	background-color: #e7efff;
}

div.padded
{
    padding: 10px;
}

p.compact
{
    margin: 2px;
}
/* End Main Styles */

/* Table Styles */
table.container
{
	width: 800px;
	height: 100%;
}

table.bordered
{
	border: solid 1px black;
}

table.content
{
	font-size: 12px;
	color: Black;
	width: 100%;
}

td.content
{
	background-color: white;
	padding: 0px;
	vertical-align: top;
}
/* End Table Styles */

/* Data Styles */
table.data,tr.data,td.data
{	
	color: dimgray;
}

table.data
{
	background-color: white;
	border: solid 1px gray;
}

td.colhead, tr.colhead
{
	color: white;
	background-color: #63528C;
	font-size: 14px;
}

td.colhead2, tr.colhead2
{
	color: dimgray;
	background-color: gainsboro;
	font-size: 13px;
}

td.colhead, td.colhead2
{
	font-family: Arial;
	font-weight: bold;
}

td.data, tr.data, .datalink
{
	color: dimgray;
	background-color: whitesmoke;
}

td.dataalt, tr.dataalt, .dataaltlink
{
	color: dimgray;
	background-color: white;
}

td.data, td.dataalt, tr.data, tr.dataalt, .datalink, .dataaltlink
{
	font-family: Arial;
	font-size: 11px;
}

td.label, .label
{
    text-align: right;
    font-size: 12px;
    font-weight: bold;
    color: #0B577B;
    padding-right: 5px;
}

.datalink, .dataaltlink
{
	text-decoration: none;
}

.datalink:hover, .dataaltlink:hover
{
	text-decoration: underline;
}
/* End Data Styles */