/**** CSS for general styles (view/layout.html)****/

/*Body*/
body {
  font-size: 14px;
  background-color: white;
}

/*HTML*/
html {
  font-family: Arial, Verdana, sans-serif;
  height: 100%;
  margin-bottom: 1px;
  max-height:0px;
}

/*Container of containers*/
#container {
  width: 90%;
  text-align: left;
  margin-right: auto;
  margin-left: auto;
  margin-top: 15px;
  min-width: 815px
}

/*Header*/
#header-container {
  width: 100%;
  height:60px;
  margin-top: 30px;
}

/*Footer*/
#footer-container {
  clear: both;
  font-size: 12px;
}

/*Float right*/
.right {
  float: right;
  font-size: 100%;
  margin-top: 3px;
  color: #999;
  text-align: right;
}

/*Float left*/
.left {
  float: left;
  font-size: 100%;
  margin-top: 5px;
  color: #999;
}

/*Disclaimer*/
.disclaimer{
  text-align: center;
  font-size: 90%;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #999;
}

/*Labels within fieldsets*/
fieldset label{
  font-weight: bold;
  color: #4d9b12;
  font-style: normal;
  font-size: 15px;
}

/*Fieldset titles*/
legend{
  color: black;
  font-size: 17px;
  padding:0.5em;
  margin-left:15px;
}

/*Bolded text in Fieldset titles*/
legend b{
  color: #c55
}

/*Heading 1: Recall title*/
h1 {
  font-size: 28px;
  color: #c55;
  font-weight: 300;
}

/*Heading 2*/
h2 {
  color: black;
  font-size: 20px;
  font-family: Ariel, Verdana, sans-serif;
  text-align: center;
  font-weight: normal;
  padding: 5px;
  margin-bottom: 10px;
  text-decoration: underline
}

/*Heading 3*/
h3 {
  font-size: 13px;
  color: gray;
  font-weight: 300;
  margin-top:3px;
}

/*Bolded text in Heading 3*/
h3 b{
  color: black
}

/*Horizontal rule*/
hr {
  border: 0px;
  color: #ccc;
  background-color: #cdcdcd;
  height: 1px;
  width: 100%;
  text-align: left;
}

/*Link*/
a {
  color: #4d9b12;
  text-decoration: none;
}

/*Link hover*/
a:hover {
  color: #4d9b12;
  text-decoration: underline;
}

/*Question icons*/
a.question{
  position: relative;
  font-size: 15px;
  font-weight: bold;
  border: 1px solid #4d9b12;
  padding-left: 2px;
  padding-right: 2px;
  margin-left: 5px;
	vertical-align: middle;
}

/*Clarification box*/
div.clarification{
  background: #e8e8e8;
  color: black;
  position: absolute;
  visibility:hidden;
  border: 2px solid black;
  padding: 10px;
  line-height: 15px;
  font-size: 12px;
  font-family: Arial, Verdana, sans-serif;
  text-align: left;
  min-width: 150px;
  z-index:100;
}

/*Error Messages*/
#error, #error2{
  padding-bottom: 10px;
  color: blue;
}

/*tables: cells align right*/
table td.rightCell{
	text-align: right;
}

/*tables: cells align left*/
table td.leftCell{
	text-align: left;
}

/*buttons*/
input.button{
  font-size: 13px;
  font-weight: bold;
  width: 85px;
  margin: 2px;
}
