/*****************************************************************************/
/* 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;
}


/*****************************************************************************/
/* Navigation Table */
/*****************************************************************************/
#navTable {
    width: 720px;
    border: none;
    margin-bottom: 10px;
}
#navTable td {
    width: 172px;
    padding: 4px;
    margin: 0;
    background-color: #094c3a;
    border: solid 1px rgb(0, 0, 0);
    
    font-size: 11px;
    color: #fff;
    font-weight: bold;
    text-align: center;
}
#navTable td a {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
}
#navTable a:hover {
    text-decoration: underline;
}


/*****************************************************************************/
/* Buttons */
/*****************************************************************************/
.camp-buttons {
    margin-bottom: 10px;
}

.camp-buttons:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}


.camp-buttons .button {
    width: 230px;
    height: 40px;
    border: 1px solid #ccc;
    float: left;
    margin-right: 8px;
    background-color: #F9F905;

    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
}

.camp-buttons .button a {
    display: block;
    width: 230px;
    line-height: 36px;
    text-align: center;
    color: #094C3A;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}

.camp-buttons .button#kicking-camp a {
    font-size: 15px;
}


/*****************************************************************************/
/* Sidebar */
/*****************************************************************************/
#secondary-content {
    width: 220px;
    margin: 5px;
    float: right;
    background-color: rgb(255, 255, 204);
    border: solid 1px rgb(255, 204, 0);

    border-radius: 12px;
    -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;
}


/*****************************************************************************
 * 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; }

