/*****************************************************************************/
/* public_html/css/default.css */
/*****************************************************************************/

body {
    width: 720px;
    font-family: Verdana, Helvetica, Arial, sans-serif;
    margin: 4px;
    padding: 0;
}

img { display: block; }

p, dt, dd, dl, li, td {
    font-size: 12px;
    line-height: 1.5;
}

h1 { font-size: 24px; }
h2 { font-size: 18px; }
h3 { font-size: 16px; }
h4, h5, h6 { font-size: 14px; }

.smallText { font-size: 9px; }

.floatRight {
    float: right;
    padding: 1px;
    margin-left: 2px;
}

.floatLeft {
    float: left;
    padding: 1px;
    margin-right: 2px;
}

.clear {
    clear: both;
}

/*****************************************************************************/
/* Confirmation */
/*****************************************************************************/
#main-content {
    width: 470px;
}

#main-content img {
    padding: 3px;
    border: 1px solid #ddd;
}


/*****************************************************************************/
/* Confirmation */
/*****************************************************************************/
#confirmTable { border-spacing: 0; border-collapse: collapse; }
#confirmTable td {
    font-size: 10px;
}

#confirmTable th {
    font-size: 10px;
    font-weight: bold;
    background: #e2e2e2;
}

/*****************************************************************************/
/* Identity */
/*****************************************************************************/
#identity {
    background-color: #edf7ff;
    border: solid 1px #d3e0eb;
    padding: 2px 2px 2px 5px;
    margin-bottom: 2px;
    overflow: auto;
}

#identity p, label {
    text-align: right;
    font-size: 10px;
    font-weight: bold;
    margin: 0;
    padding: 0;
}

#identity input {
    font-size: 10px;
}

#identity span {
    text-decoration: underline;
}

/*****************************************************************************/
/* Navigation Table */
/*****************************************************************************/
#navTable {
    width: 720px;
    border: none;
    margin-bottom: 10px;
}
#navTable td {
    width: 144px;
    padding: 2px;
    margin: 0;
    background-color: #094c3a;
    border: solid 1px rgb(0, 0, 0);
    
    font-size: 9px;
    color: rgb(255, 255, 0);
    font-weight: bold;
    text-decoration: none;
    text-transform: capitalize;
    text-align: center;
}
#navTable a {
    font-size: 9px;
    color: rgb(255, 255, 255);
    font-weight: bold;
    text-decoration: none;
    text-transform: capitalize;
    text-align: center;
}
#navTable a:hover {
    text-decoration: underline;
}

/*****************************************************************************/
/* Sidebar */
/*****************************************************************************/
#secondary-content {
    width: 220px;
    margin: 5px;
    float: right;
    background-color: rgb(255, 255, 204);
    border: solid 1px rgb(255, 204, 0);
    -moz-border-radius: 12px;
    -webkit-border-radius: 12px;
}
#secondary-content .inside {
    padding: 4px;
}
#secondary-content ul {
	padding-left: 16px;
}
#secondary-content ul, #secondary-content li{
	margin-left: 0;
	text-indent: 0;
	font-size: 10px;
}

/*****************************************************************************/
/* Footer */
/*****************************************************************************/
#footer {
    margin-top: 3px;
    clear: both;
    border-top: 2px solid #094c3a;
}


/*****************************************************************************
 * Forms 
 *****************************************************************************/

.required {
    padding: 0 10px 0 0;
    background-image: url("../images/required.png");
    background-position: right;
    background-repeat: no-repeat;
}

legend {
    font-size: 16px;
    font-weight: bold;
}

fieldset {
    background-color: #f1f3f5;
    /*
     Old, Light Green Background
    background-color: rgb(220, 255, 220);
    */
}

ul.errors {
    margin: 4px 0 4px 0;
    padding: 4px;
    background: #FBE3E4;
    border: 1px solid #FBC2C4;
}

ul.errors li {
    color: #8A1F11;
    margin: 0;
    list-style: none;
}

/*****************************************************************************
 * Notices 
 *****************************************************************************/
.error,
.notice, 
.success    { padding: .8em; margin-bottom: 1em; border: 2px solid #ddd; }

.error      { background: #FBE3E4; color: #8a1f11; border-color: #FBC2C4; }
.notice     { background: #FFF6BF; color: #514721; border-color: #FFD324; }
.success    { background: #E6EFC2; color: #264409; border-color: #C6D880; }
.error a    { color: #8a1f11; }
.notice a   { color: #514721; }
.success a  { color: #264409; }