/*This style sheet controls the fonts,
 *bottons, etc.
 *
 */

body {
	margin: 0px;
	padding: 0px;
	font-family: Verdana,Arial,Helvetica,sans-serif;
	font-size: 12px;
}
a {
	text-decoration: none;
	color: blue; /* keep link blue - it's what lets the users know that it is a link */
}
a:visited {
	color: darkblue;
}
a:active {}
a:hover {
	text-decoration: underline;
}
a img{
	border: none;
}
/* 'a.button' is grouped with form buttons */

/*
 * --------------- Fonts ----------------
 */
#title_blue {
	font-weight: bold;
	color: #006699;
}
#title_red {
	font-weight: bold;
	color: #CC0000;
}
#step_link {
	font-weight: bold;
	color: #666666;
}

/*
 * --------------- Tables ----------------
 */

table {
	border-collapse:collapse;
}
tr.even {
	background-color:#F4F4F4;
}
tr.odd {
	background-color: #FFFFFF;
}
th {
	font-weight: bold;
}
th.horizontal { /*Headers that are in a horizontal row*/
	border-bottom: 1px solid #000;
	text-align: center;
}
th.vertical { /*Headers that are in a vertical column*/
	padding-right: 1ex;
	text-align:right;
	vertical-align:top;
	border: none;
}
td {
	padding: 0 0.5ex;
}
table.data { /*Tables with lots of information ->improve readability */
	border: thin solid #CCC;
	margin: auto;
}
table.data th#report {
	background-color: #73A2CE;
	color: #FFFFFF;
}
table.data th#list {
	background-color: #FFFFFF;
	color: #CC0000;
}
table.data td{
	padding: 3px 3px;
	/*border-bottom: 1px solid #666666;*/
}
table.data tr:hover{
	background-color:  #D0DAF3;
}

table.id_display {
	border-collapse: separate;
	border: 2px solid #DADADA;
	margin: auto;
	border-spacing: 5px;
}

/*
 * --------------------- Forms -------------------
 */
.btns {
	
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #333333;
	text-decoration: none;
}
input,textarea{
	font-size: 110%;
	font-family: inherit;
}
input,textarea{
	font-size: 110%;
	font-family: inherit;
}
input[type='text'], input[type='password'],
  textarea,  select {
	margin: 1px;
	border: 1px solid #CCC;
}
input[type='text'], input[type='password'], textarea{
	padding: 0.1ex 0.25ex;
}
img.calendar_icon { /* Pop up calendar */
	cursor:pointer;
	vertical-align:middle;
}

a.button{
     line-height:2.0em;	/* borders don't automatically increase vertical height */
     margin: 0 0.5ex;	/* links need extra margins & padding that buttons have automatically */
     padding: 0.25ex 0.5ex;
}

input[disabled],input[readonly]{
	color:#555;
	background-color: #eee;
}


/*
 * ------------ Other page structures ----------------
 */
 
ul{
	list-style-position:outside;
	font-size:small;
}



