/* COLORS
    #555555;	darker gray
    #666666;	dark gray
    #BBBBBB;	spacer/border gray
    #EEEEEE;	sidebar gray
    #FF5200;	IT orange
    #0E3793; 	IT blue - used for links on white background
    #000080;	IT blue dark - used for links on gray background
    #FFFFFF;	white
    #000000;	black
*/


/* General Styles */
body {
    font-family: Arial, "Lucida Grande", Verdana, Helvetica, Geneva, sans-serif;
    color: #000000;							/* black */
    background: #FFFFFF;					/* white */
    padding: 0;
    margin: 0;
}

#page {
    margin: 2em;
    color: #000000;							/* black */
    background: transparent;
}

h1, h2, h3, h4 {
    font-family: Arial, "Lucida Grande", Verdana, Helvetica, Geneva, sans-serif;
}

h1 {
    font-size: 1.4em;
    color: #666666;							/* dark gray */
    background: transparent;
}

h2 {
    margin-top: -.3em;
    margin-bottom: -.5em;
    font-size: 1.3em;
}

h2 a:link, h2 a:active {
    color: #0E3793;							/* IT blue */
    background: transparent;
    text-decoration: none;
}

h2 a:visited {
    color: #555555;							/* darker gray */
    background: transparent;
    text-decoration: none;
}

h2 a:hover {
    color: #FF5200;							/* IT orange */
    background: #EEEEEE;					/* sidebar gray */
    text-decoration: underline;
}

h3 {
    font-size: 1em;
    margin-top: .9em;
    margin-bottom: -.5em;
    padding-bottom: 0;
}

h4 {
    color: #666666;							/* dark gray */
    background: transparent;
}

a:link, a:active {
    color: #0E3793;							/* IT blue */
    background: transparent;
    text-decoration: underline;
}

a:visited {
    color: #555555;							/* darker gray */
    background: transparent;
    text-decoration: underline;
}

a:hover {
    color: #FF5200;							/* IT orange */
    /* background: #EEEEEE;	*/				/* sidebar gray - caused problems in IE 6 for Windows - text disappearing */
    text-decoration: underline;
}
/* End General Styles */


/* Header Styles */
#header {
    position: relative;
    color: #000000;							/* black */
    background: #FFFFFF;					/* white */
    height: 130px;
    margin-bottom: 15px;
    border-top: 3px solid #FF5200;          /* IT orange */
    border-bottom: 3px solid #FF5200;		/* IT orange */
    font-size: .75em;
    line-height: 180%;
    font-family: "Lucida Grande", Verdana, Helvetica, Arial, Geneva, sans-serif;
}

#header #logo {
    float: left;
    height: 120px;
    width: 255px;
    color: inherit;
    background: transparent url(images/255x120.gif) 10px 5px no-repeat; /* left top */
    vertical-align: middle;
}

#header #logo a {							/* Must have same dimensions and position as #logo. */
    position: absolute;
    top: 0;
    left: 0;
    height: 120px;
    width: 250px;
}

#header #logo a:hover {
    color: inherit;
    background: transparent;
}

#menubox {
    position: absolute;
    right: 0;
    color: inherit;
    background: transparent url(images/itotd-circles.gif) 0px 0px no-repeat;
    height: 130px;
    width: 360px;
}

#mainmenu {
    border: 1px solid #FFFFFF;				/* white; otherwise menu doesn't show in IE5/Mac */
    position: relative;
    height: 40px;
    top: 0;
    margin: 0px auto;
    padding: 0;
}

#mainmenu a {
    text-decoration: none;
    color: #0E3793;							/* IT blue dark */
    background: transparent;
    padding-top: 3px;
    padding-bottom: 3px;
}

#mainmenu a#current, #contactmenu a#current {
    color: #BBBBBB;							/* background/spacer/border gray */
    background: transparent;
    border-top: 1px solid #BBBBBB;			/* background/spacer/border gray */
    border-bottom: 1px solid #BBBBBB;		/* background/spacer/border gray */
}

#mainmenu a:hover {
    display: inline;
    color: #FF5200;							/* IT orange */
    background: #EEEEEE;					/* sidebar gray */
}

#mainmenu a span.details {
    display: none;
}

#mainmenu a:hover span.details {
    display: block;
    position: absolute;
    top: 45px;
    right: 48px;
    width: 250px;
    padding: 5px;
    z-index: 200;
    color: #000000;							/* black */
    background: transparent;
    font: 10px Verdana, sans-serif;
    line-height: 15px;
    text-align: center;
}

#mainmenu p {
    font-weight: bold;
    color: #000000;							/* black */
    background: transparent;
    margin-top: .8em;
    margin-bottom: 0;
    font-size: 100%;
}

#contactmenu {
    position: absolute;
    height: 40px;
    bottom: 0;
    margin: 0px auto;
    width: 100%;
}

#contactmenu p {
    height: 20px;
    font-weight: bold;
    margin-top: 8px;
    margin-bottom: 0;
    font-size: 100%;
}

#contactmenu a {
    text-decoration: none;
    color: #0E3793;							/* IT blue */
    background: transparent;
    padding-top: 3px;
    padding-bottom: 3px;
}

#contactmenu a:hover {
    display: inline;
    color: #FF5200;							/* IT orange */
    background: #EEEEEE;					/* sidebar gray */
}

#contactmenu a span.details {
    display: none;
}

#contactmenu a:hover span.details  {
    display: block;
    position: absolute;
    top: -45px;
    right: 48px;
    width: 250px;
    padding: 5px;
    z-index: 100;
    color: #000000;							/* black */
    background: transparent;
    font: 10px Verdana, sans-serif;
    line-height: 15px;
    text-align: center;
}
/* End Header Styles */


/* Mainbar Styles */
#container {
    width: 100%;
    float: left;
    margin-right: -210px;
}

#content {
    margin-right: 216px;
    color: inherit;
    background: #FFFFFF; 					/* white */
    border: 1px dotted #0E3793;				/* IT blue */
    padding: 5px 10px 10px 10px;
}

#content h4 {								/* Used for guest authors & sidebar heads */
    font-size: .9em;
    margin-top: .6em;
    margin-bottom: 0;
    padding-top: .4em;
    padding-bottom: 0;
    font-weight: bold;
    text-align: left;
    font-style: italic;
}

#ls_related {
    color: inherit;
    background: #EEEEEE; 					/* sidebar gray */
    padding-top: .1em;
    padding-bottom: .1em;
    padding-left: 1em;
    padding-right: 1em;
    font-size: .9em;
    line-height: 1em;
}

#ls_related h3, #ls_related p, #ls_related ul {
    margin-top: .5em;
    margin-bottom: .5em;
}

.photo {
    float: left;
    margin: 0 1em .2em 0;
    padding-top: .3em;
    padding-bottom: 0;
}

#content .ad {
    float: right;
    margin-left: 1em;
    margin-bottom: 1em;
}

#content .adl {
    float: left;
    margin-right: 1em;
    margin-bottom: 1em;
}

#content .adll {
    margin: 5px 0 5px 0;
}

#content .adc {
    margin-right: auto;
    margin-left: auto;
    width: 300px;
}

#content p, #content dt, #content dd, #content ul, #content ol, #content blockquote {
    font-size: .9em;
    line-height: 1.5em;
}

#content ul ul {
    font-size: 1em;
}

#content p.date {
    color: #666666;							/* dark gray */
    background: transparent;
    font-size: .8em;
    margin-top: 0;
}

#content p.metadata {
    font-size: .75em;
    font-family: "Lucida Grande", Verdana, Helvetica, Arial, Geneva, sans-serif;
    font-weight: bold;
    margin-top: -.5em;
}

#content p.metadata span, .extra p span {
    font-weight: normal;
    color: #BBBBBB;							/* spacer/border gray */
    background: transparent;
}

#content p.metadata a {
    font-weight: normal;
}

.separator {
    text-align: center;
    font-size: 2em;
    color: #BBBBBB;							/* spacer/border gray */
    background: transparent;
    letter-spacing: .2em;
}

#moreinfo, #donations {
    border-top: 3px double #FF5200;          /* IT orange */
}

dt {
    font-weight: bold;
    padding-top: 0.5em;
}

dd p {
    font-size: 1em;
    margin-bottom: 0;
}

dl {
    margin-top: 0;
}
/* End Mainbar Styles */


/* Theme Styles */
.theme {
    color: #000000;							/* black */
    background: transparent;
    font-size: 1.2em;
    text-align: left;
}

.themebox {
    color: #000000;							/* black */
    background: #BBBBBB;					/* spacer/border gray */
    padding: .2em .5em .2em .5em;
    border: 1px solid #BBBBBB;				/* spacer/border gray */
}

.themetitle {
    color: #FF5200;							/* IT orange */
    background: transparent;
    font-weight: bold;
    padding: .2em .5em .2em .5em;
    border-top: 1px solid #BBBBBB;			/* spacer/border gray */
    border-right: 1px solid #BBBBBB;		/* spacer/border gray */
    border-bottom: 1px solid #BBBBBB;		/* spacer/border gray */
}
/* End Theme Styles */


/* Begin Sidebar Styles */
#sidebar {
    width: 170px;
    float: right;
    color: inherit;
    background: #EEEEEE;					/* sidebar gray */
    text-align: left;
    padding: 1em;
}

#sidebar p, #sidebar h4 {
    color: #000000;							/* black */
    background: transparent;
    margin-top: 0;
    margin-bottom: 0;
    font-size: .75em;
    line-height: 180%;
    font-family: "Lucida Grande", Verdana, Helvetica, Arial, Geneva, sans-serif;
    font-weight: bold;
    border-top: 1px solid #BBBBBB;			/* background gray */
}

#sidebar img.lgimage {
    margin-left: 10px;
    margin-top: 10px;
}

#sidebar script {
    margin-left: 5px;
    margin-top: 10px;
}

#sidebar p.first {
    border-top: 0;
}

#sidebar p a, #sidebar h4 a {
    color: #000080;							/* IT blue dark */
    background: transparent;
    text-decoration: none;
    font-weight: normal;
}

#sidebar p a:hover, #sidebar h4 a:hover {
    color: #FF5200;							/* IT orange */
    background: transparent;
    text-decoration: underline;
}

#sidebar form {
    margin: 0 0 3px 5px;
}

#sidebar h4 {
    margin-bottom: 0;
}

#sidebar p.badge {
    padding-top: 5px;
}

#sidebar p.badge img a:hover, #sidebar p.te-lo a:hover {
    color: inherit;
    background: transparent;
}

#sidebar p.te-lo {
    border-top: 0;
}

#sidebar #related p, #sidebar #altconcepts p, #sidebar #recent p, #sidebar #advertise p {
    line-height: 17px;
    font-weight: normal;
    padding-top: 3px;
    padding-bottom: 3px;
    margin-left: 5px;
}

#sidebar div.separator {
    font-size: 1em;
}

textarea, select {
    font-family: "Lucida Grande", Verdana, Helvetica, Arial, Geneva, sans-serif;
    color: #000000;							/* black */
    background: transparent;
    font-weight: normal;
    font-size: .8em;
    border-color: #000000;					/* black */
}

input {
    font-family: "Lucida Grande", Verdana, Helvetica, Arial, Geneva, sans-serif;
    font-size: .8em;
}
/* End Sidebar Styles */


/* Pseudotable DIVs */
div.row {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: .9em;
    clear: both;
}

.leftcolumn {
    float: left;
    width: 49%;
}

.leftcolumn-r {
    float: left;
    width: 50%;
    text-align: right;
}

.leftcolumn-r2 {
    float: left;
    width: 35%;
    text-align: right;
}

.rightcolumn {
    float: right;
    width: 49%;
}

.rightcolumn-2 {
    float: right;
    width: 64%;
}

div.row span.label {
    float: left;
    width: 25%;
    text-align: right;
    margin-bottom: .5em;
}

div.row span.formfield {
    float: right;
    width: 74%;
    text-align: left;
    margin-bottom: .5em;
}

div.spacer {
    clear: both;
}
/* End Pseudotable DIVs */


/* Real Table DIVs */
.row1 {
    background: #EEEEEE;					/* sidebar gray */
    color: #000000;							/* black */
    font-size:.9em;
}

th {
    background: #BBBBBB;					/* background gray */
    color: #000000; 						/* black */
    font-size: .9em;
    font-weight: bold;
    text-align: center;
    height: 1.5em;
}

td p {
    margin-top: 0;
    margin-bottom: 0;
}

.cell {
    background: #EEEEEE;					/* sidebar gray */
    color: #000000;							/* black */
    margin-top: 0;
    margin-bottom: 0;
    padding: 0.5em;
    vertical-align: top;
}

.cellGraphic {
    background: #EEEEEE;					/* sidebar gray */
    color: #000000;							/* black */
    margin-bottom: 0;
    padding: 0.5em;
    vertical-align: middle;
    text-align: center;
}
/* End Real Table DIVs */


/* Comments */
#comment-content {
    color: inherit;
    background: #FFFFFF; 					/* white */
    border: 3px double #BBBBBB;				/* spacer/border gray */
    padding: 10px;
    font-size: .9em;
}
/* End Comments */


/* Footer Styles */
#footer {
    text-align: center;
    color: inherit;
    background: #FFFFFF;					/* white */
    border-top: 2px solid #FF5200;			/* IT orange */
    border-bottom: 2px solid #FF5200;		/* IT orange */
    padding-top: .5em;
    padding-bottom: .5em;
    clear: both;
    width: 100%;
    margin-left: 0;
}

.copyright {
    font-size: .8em;
}
/* End Footer Styles */
