/**
 * You can place your custom CSS statements here
 * it is better to write everything custom here
 * because this file won't be replaced during upgrade
 * Don't forget to rename this file to "site.css"
 */
/* properties for entire page and text inside tables */
body, th, td {
    font-family: Verdana, "Lucida Grande","Lucida Sans Unicode",geneva,verdana,sans-serif;
    font-size: 0.9em;
}
html{
height:100%;
background:#1F3349 /*url('../images/css_images/gradient_large.jpg') repeat-x top*/; 
margin:0px;
/*padding:2px;*/ /*commented out because it causes scrollbar to popups and sideeffects to editor*/
}
body{
font-size:12px;
font-family:Trebuchet MS,verdana,geneva,arial,helvetica,sans-serif;
height:99%;
margin:0px auto 0px auto;
width:960px;
color:#AAAAAA;
}

ul, li { list-style: disc; font-size:14px; margin:5px;}

hr { 
    background-color: #999999;
    border: 0;
    width: 100%;
    height: 2px;
}

/*Form elements and form element holders*/
input,select,textarea {
border:1px solid #777777;
background:#DAE2E9;
font-size:12px;
font-weight:bold;
font-family:Trebuchet MS,verdana,geneva,arial,helvetica,sans-serif;
padding:3px 3px 3px 3px;
}


h1,h2,h3 {
    color: #CCCCCC;
    font-weight: bold;
    text-align: center;
    margin: 0.5em 0.5em 0.5em 0.5em;
}

h1 { font-size: 170%; }
h2 { font-size: 155%; }
h3 { font-size: 140%; }

a,a:visited,a:hover{color:#AAAAAA}


/* other elements */
div.centered { text-align: center; }
div.centered table {
    margin: 0 auto; 
    text-align: left;
}

.powered, .powered a { text-align:center; font-size: small; color: #808080; margin: 0.5em 0em 0.5em 0em; }

/* vedit - vertical table (signup, profile edit) */
.vedit {
    border: solid 0px #8CACBB;
	color: #333333;
}
/* vedit - usual column (right) */
.vedit td {
    text-align: left;
    vertical-align: middle;
    padding: 15px 15px 15px 15px;

    background-color: white;
    border: solid 1px #8CACBB;
}
/* vedit - header column (left) */
.vedit th {
    padding: 10px 15px 10px 10px;
    text-align: right;
    vertical-align: middle;
    font-weight: bold;

    background-color: #DEE7EC;
    border: solid 1px #8CACBB;
}
/* vedit - heading row */
.vedit .headrow { font-weight: bold; text-align: center; }


/* hedit - horizontal table (payments list) */
.hedit {
    border: solid 1px #8CACBB;
	color: #333333;
}
/* hedit - usual column */
.hedit td {
    padding: 5px;
    background-color: #E0E0E0;
    font-size: 8pt;
    background-color: white;
    border: solid 1px #8CACBB;
}
/* hedit - header column */
.hedit th {
    padding: 5px;
    font-weight: bold;
    text-align: center;

    background-color: #DEE7EC;
    border: solid 1px #8CACBB;
}

table.errmsg
{
    background-color: red;
    border: #CCCCCC 1px solid;
    margin: 8px 8px 8px 8px;
	color:white;
}
table.errmsg td
{
    padding: 5px 50px 5px 5px;
    font-weight: bold;
}
table.errmsg td li
{
    list-style: square;
}

/* Receipt table from thanks.html */
.receipt td {
    background-color: #F0F0F0;
    border: solid 1px black;
    padding: 2px 4px 2px 4px;
    color:#333333;
}
.receipt th {
    background-color: #C0C0C0;
    border: solid 1px black;
    font-weight: bold;
    padding: 2px 4px 2px 4px;
    color:#333333;
}
.receipt td.total {
    background-color: #C0C0C0;
    border: solid 1px black;
    color:#333333;
}
.receipt {
    border-collapse: collapse;
}
