/*-------------------------------------------------
PAGE BODY
-------------------------------------------------*/

body {
    margin: 0 auto;
    padding: 0;
    color: #333;
    background-color: #f0f0f0;
    text-align: center;
	font-family: "trebuchet ms", sans-serif;
	font-size: 11pt;    
}

/* Make sure the table cells show the right font */
td { font-family: "trebuchet ms", sans-serif; }


/*-------------------------------------------------
GLOBALS & GENERAL CASES
-------------------------------------------------*/

input { padding: 3px; }

a {text-decoration: underline; padding: 1px; }
a:link { color: #03c; }
a:visited { color: #03c; }
a:hover { color: #fff; background-color: #30c; text-decoration: none; }

form {
    margin: 0;
    padding: 0;
}

h1 {
    font-family: "trebuchet ms", sans-serif; 
    padding: 0;
    border-bottom: 0;
    margin: 0;
    color: #333;
    font-size: 1.4em;
    font-weight: bold;
}

td, th {
    padding: 3px;
    text-align: left;
}

/*-------------------------------------------------
STRUCTURE
-------------------------------------------------*/

.Container {
    margin: 0 auto;
    text-align: center;
    width: 90%;
    min-width: 750px;
}

/*-------------------------------------------------
LOGIN SCREEN (.login is body class)
-------------------------------------------------*/

.login div.Container {
    width: 500px;
    margin: 60px auto 20px auto;
    min-width: inherit;
}

.login h1 {
    margin-bottom: 20px;
}


.login dl {
    margin: 10px 0 0 0;
}

.login p {
    margin: 10px 0 0 0;
}

.login dt {
    float: left;
    width: 80px;
    font-size: 14px;
    line-height: 24px;
}

.login dd {
    margin: 0 0 5px 90px;
    font-size: 11px;
    line-height: 24px;
    color: #666;
    margin-left: 80px;
}

.login input {
    font-size: 14px;
}

.login dd span {
    color: #ccc;
}

.login input#username {
    width: 300px;
}

.login input#password {
    width: 150px;
    margin-right: 5px;
}

.login input#emailpassword {
    vertical-align: middle;
    margin-right: 5px;
}

.login div.AlertGood,
.login div.AlertBad {
    margin: 10px 0 20px 0;
}

.login div#Dialog {
    border: 10px solid #ccc;
    padding: 15px 20px 10px 20px;
    text-align: left;
    background: #fff;
}

.button {
	font-family: "trebuchet ms", sans-serif;
	height: 26px;
	font-size: 11pt;
	color: #000000;
	text-align: center;
	background-image: url('/themes/cssadmin/images/button.gif');
	background-repeat: repeat-x;
	border: 1px solid #326BC0;    
}

/*-------------------------------------------------
ALERTS
-------------------------------------------------*/

.AlertGood {
    text-align: left;
    border-top: 1px solid #9c9;
    border-bottom: 1px solid #9c9;
    padding: 5px 5px 5px 30px;
    font-size: 11px;
    margin: 0 20px 15px 20px;
    color: #060;
    background: url(/images/alertgood_icon.gif) #E2F9E3 left no-repeat;
}

.AlertBad {
    text-align: left;
    font-weight: bold;
    border-top: 1px solid #c99;
    border-bottom: 1px solid #c99;
    padding: 5px 5px 5px 27px;
    font-size: 11px;
    margin: 0 20px 15px 20px;
    background: url(/images/alertbad_icon.gif) #c00 left no-repeat;
    color: #fff;
}


