﻿/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
* Project: Example master html page
* Purpose: Default styles
* Author : Dominic Winsor, www.get2dom.com
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
body {
	color: #333;
	background: #DEE2C1;
	font-size: 68.9%; /* Default (medium) is 16px: scale to 11px */
	font-family: Geneva, Arial, sans-serif;
	margin: 0;
}
body>form
{
    margin:0;
}
p, div {
	font-family: inherit;
}
td, th {
	vertical-align: top;
}
h1 {
	font-size: 1.8em;
	letter-spacing: -.5px;
	margin: 0 0 .5em 0;
}
h2 {
	font-size: 1.5em;
	letter-spacing: -.5px;
	margin: 0 0 .5em 0;
}
h3 {
	font-size: 1.1em;
	margin: 1em 0 .5em 0;
}
h4 {
	color: #888;
	font-size: 1em;
}
p {
	margin: .5em  0; 
	line-height: 1.5em;
}
td {
	line-height: 1.5em;
}

form {
	margin: 0 0 1em 0;
}
input, select, textarea {
	font: 1em/1em Tahoma, sans-serif;
}

a img {
	border: 0;
}

label.none {
	display: none;
}

a:link {  
	color: #036; 
	text-decoration: underline;
}
a:visited {  color: #406; }
a:hover {  color: #00B; }
a:active {  color: #F44; }
a.disabled { 
	color: #444; 
	text-decoration: none;
}
hr {
	border-top: 0;
	border-right: 0;
	border-bottom: 1px solid #5081B3;
	border-left: 0;
	margin: 5px 0 7px 0;	
}

pre, tt, code
{
    font-family: Courier New, Monospace;
    font-size: 1em;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
* ACCESSIBILITY: Hide audio-only content
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
.audio {
	display: none;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
* STRUCTURE: columns, banners & size constraints
*            NOTE: no colours, fonts or other aesthetics. Just the width, height
*            here. Colours etc are set in later definitions (scroll down).
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
#uberContainer {
	text-align: left;
	float: left;
	display: inline;
	padding: 0;
	margin: 0 0 0 10px;
	width: 790px;
}
#utility {
	float: right;
	padding: 0;
	width: 100%;
	margin: 0;
}
#utility ul {
	float: right;
}
#utility form {
	float: right;
	margin: 0;
	padding: 0 1em;
}
#headerContainer {
	height: 119px;
	width: 100%;
	float: left;
}
#mainContainer {
	float: left;
	display: inline;
	padding: 40px 0 75px 4px;
	width: 786px; /* (uberContainer full width) - ( mainContainer padding) - mainContainer border */
}
#mainContainer .navigation {
	float: left;
	display: inline;
	width: 768px;
	margin: -30px 0 20px 6px;
}
#mainContainer #content {
	float: left;
	padding: 0 20px 20px;
	width: 740px;
	display: inline;
}
#mainContainer #content .crumbs {
	margin: 0 0 1em 0;
}

#footerContainer {
	clear: both;
	width: 100%;
}


/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
* STYLE: outermost container
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

#uberContainer {
	background-color: #EFF2F7;
}


/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
* NAVIGATION: utility
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
a.skip {
	color: #aaa;
}
a.skip:hover {
	color: blue;
}
#utility form * {
	font-size: 1em;
}
#utility form label {
	display: none;
}
#utility form #txtGQuery {
	border: 1px solid #527DB9;
	padding: 2px 5px;
}
#utility ul {
	margin: 0 10px 0 5px;
	padding: 0;
	list-style: none;
	display: inline;
}
#utility ul li {
	list-style: none;
	float: left;
}
#utility ul li a {
	text-transform: lowercase;
	padding: 5px .6em;
	font-size: .9em;
	color: #333;
	text-decoration: underline;
	width:.1em; /* Clickable region fix part 1 of 2 (ala) */
	white-space: nowrap;
	float: left;
	display: inline;
	/* IE5-Mac.start  \*/
	display: block;
	/* IE5-Mac.end */
}

/* Clickable region fix part 2 of 2 (ala) */
#utility>ul li a {
	width:auto;
}

/* IE5-Mac.start  \*/
#utility a {float:none;}
/* IE5-Mac.end */

#utility a:hover {
	background: #C9D4DA;
}


/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
* STYLE: header
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
#headerContainer { 
	background: transparent url('client.header.jpg') 0 100% no-repeat;
}
#headerContainer h1 {
	display: none;
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
* NAVIGATION: primary
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

.navigation {
	background: #DEE2C1;
	border: 1px solid #DEE2C1;
}
.navigation ul {
	margin: 0;
	padding: 0;
	list-style: none;
	float: left;
}
.navigation ul li {
	list-style: none;
	float: left;
}
.navigation ul li a {
	background: transparent url('arrow.off.gif') 12px 8px no-repeat;
	text-transform: lowercase;
	padding: 3px 16px 3px 24px;
	color: #333;
	text-decoration: underline;
	width: auto; 
	float: left;
	display: inline;
	border-right: 1px dotted #BEA92A;
}
.navigation ul li a:hover {
	color: #FFF;
	background: #BEA92A url('arrow.hover.gif') 12px 8px no-repeat;
}
.navigation a:active
{
    color: #1D330D;
}
.navigation ul li strong a, .navigation ul li strong a:hover  {
	font-weight: bold;
	color: #1D330D;
	text-decoration: none;
	background: #CFE7CD url('arrow.on.gif') 12px 8px no-repeat;
}


/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
* main container
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
#mainContainer {
	background: white url('header.shadow.gif') 0 0 repeat-x;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
* NAVIGATION: breadcrumb trail
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
#mainContainer {
	/*background: white url('header.shadow.gif') 0 0 repeat-x;*/
}

#crumbs {
	margin-bottom: 2em;
}


/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
* STYLE: footer
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
#footerContainer {
	background: #325D6D;
	padding: 5px 0;
	color: #fff;
}
#footerContainer p {
	margin: 0;
	padding: 0 1em;
	text-align: center;
}
#footerContainer p img
{
    float: right;
    margin: -2px;
    padding: 0;
}
#footerContainer a
{
    color: #fff;
}



/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
* INLINE: table styles
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

/* listing: is for data presentation */
.listing {
	margin: 1em 0;
	border-color: #F7F8F9;
	border-style: solid;
	border-width: 1px 0 0 1px;
	empty-cells: show;
	border-collapse: collapse;
}
.listing td, .listing th {
	border-color: #EFF0F1;
	border-style: solid;
	border-width: 0 1px 1px 0;
	font-size: 1em;
	padding: 6px 10px;
}
.listing {
	width: 100%;
}
.listing th {
	background: #EFF0F1;
	padding: 4px 1em 3px;
	width: 130px;
	border-color: #F7F8F9;
}
.listing td {
	background: #F7F8F9;
}
.listing td em 
{
    color: #777;
}
.listing th.section
{
    background: #DDD;
    text-align: left;
}
.vertical th { text-align: right; }
.horizontal th { text-align: left; }
.twocol th { white-space: nowrap; }
.twocol td { white-space: normal !important; }
.subtotal td, .total td { background-color: #EFF0F1 !important; border-color: #DDD;}
.label {text-align: right; font-weight: bold;}
.totalprice {font-weight: bold;}
td.price, th.price
{
    text-align: right;
    white-space: nowrap;
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
* INLINE: text styles
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
.emergency {
	color: red;
}

/* confirmation message: changes failed */
.warn 
{
    background-color: ivory;
    border: 1px solid goldenrod;
    padding: 1em;
}
.warn h4 {
	background: transparent url('icons/warning.png') 0 0 no-repeat;
	padding: 0 0 0 20px;
	margin: 0;
}
.warn p
{
   	margin-left: 20px;
}
.warn *, .warn a {
	color: #A22;
}

/* confirmation message: changes ok */
.accept 
{
    background-color: honeydew;
    border: 1px solid green;
    padding: 1em;
}
.accept h4 {
	background: transparent url('icons/tick.png') 0 0 no-repeat;
	padding: 0 0 0 20px;
	margin: 0;
}
.accept p
{
   	margin-left: 20px;
}
.accept *, .accept a {
	color: green;
}

/* system message: no data/no records match your search etc.. */
.dataMessage 
{
    background: ivory url('icons/warning.png') 10px 50% no-repeat;
    border: 1px solid goldenrod;
    padding: 1em 1em 1em 3em;
    font-weight: bold;
}

/* datagrid: container for links top right (add new record) etc.. */
.dataMgtLinks
{
    text-align: right;   
}


/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
* INLINE: random stuff
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

.required
{
    color: Red;
}
textarea.fauxField
{
    font-family: Monospace;
    font-size: 8pt;
    padding: .25em;
    line-height: 1.15em;
}
textarea.readonly
{
    color: #666;
    border: 1px solid #EFF0F1;
    background-color: #EFF0F1;
}




/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
* DEVIATION from default styles
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
.panel
{
    float: left;
    width: 260px;
    margin: 0 5px 5px 0;
    padding: 5px;
    border: 1px solid #F6F9FC;
}

.wide
{
    width: 535px
}
.panel h4
{
    color: #444;
    margin: 0 0 .5em 0;
}


/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
* INLINE: button links
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/* dodgy though this sounds, provide class=edit or class=inlineBtn to an <a> 
*  to make a link look like a button.
*/

a.edit, a.edit:visited { 
	color: black;
	text-decoration: none;
	border: 1px #eeeeee outset;
	padding: 1px 4px 1px 4px;
	background: #FFF;
	float: right;
}

a.edit:hover { 
	background: lemonchiffon;
}
a.edit:active
{
    text-decoration: underline;
    background: ivory;
    color: #F44;
}

a.inlineBtn, a.inlineBtn:visited, input.action { 
	color: black;
	text-decoration: none !important;
	border: 1px #eeeeee outset;
	padding: 0 3px;
	background: #FFF;
}

a.inlineBtn:hover { 
	background: lemonchiffon;
}

/* subtly indicate which button proceeds in wizard: msie */
* html input.next {
	font-weight: bold;
}
/* subtly indicate which button proceeds in wizard: web standards */
input[type=button].next, input[type=submit].next{
	font-weight: bold;
}





ul.language {
	margin: 0 10px 0 5px;
	padding: 0;
	list-style: none;
	display: inline;
}
ul.language li {
	list-style: none;
	float: left;
}
ul.language li a {
	padding: 7px;
	font-size: .9em;
	color: #333;
	text-decoration: underline;
	white-space: nowrap;
	float: left;
	display: inline;
}
ul.language li a:hover {
    background-color: #DEE2C1;
}