/* 
    Document   : enrolment
    Created on : 05/12/2014, 12:38:10 PM
    Author     : Jasweb
    Description:
        Purpose of the stylesheet follows.
*/

/*@import url(reset.css);*/
@import url('http://fonts.googleapis.com/css?family=Open+Sans:400,400italic,600,600italic,700,700italic,800,800italic');
/* HTML */

* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }
.group:after {
  content: "";
  display: table;
  clear: both;
}
html,body{
  font-family: 'Open Sans', sans-serif;
  color:#000;
  font-size:1em;
  line-height: 1.3em;
}
.wrapper{
  width: 1024px;
  margin: 0 auto;
  padding: 0 20px;
}
h1{
  font-size: 1.8em;
  margin: 0 0 15px 0;
  color: #000
}
h2{
  font-size: 1.6em;
  margin: 0 0 15px 0;
}
h3{
  color: #000080;
}
h4{
  color: #000080;
}
p{
  font-size: 0.9em;
  margin: 0 0 10px 0;
}
ul,ol{
  font-size: 0.9em;
  margin: 0 0 20px 25px;
}
li{
  margin: 10px 0;
}
small{
  font-size: 0.8em;
}
strong{
  font-weight: 900;
}
/* HEADER */
header{
  position: relative;
  min-height: 130px;
  padding: 20px;
  background: #034ea1;
  color: #FFF;
  vertical-align: top;
}
header h1{
  color: #FFF;
}
#siteseal{
  position: absolute;
  right: 5%;
  top: 20px;
}
#logo{
  position: absolute;
  left: 5%;
  width: 200px;
}
/* FORM */
legend{
  font-size: 1.2em;
  font-weight: 700;
  padding: 10px;
}
fieldset{
  padding: 20px;
  margin: 20px 0;
}
label{
  margin: 5px 0;
  font-weight: 700;
}
textarea{
  height: 120px;
}
input, textarea, select{
  padding: 5px;
  border: thin solid #CCC;
  width: 100%;
  margin: 5px 0;
}
input[type='radio'], input[type='checkbox'], input[type='submit']{
  width: auto;
}
input:focus, textarea:focus, input:hover, textarea:hover{
  border: solid 1px #999;
  box-shadow: 0 0 5px 1px #CCC;
}
input[type='submit']{
  background: #3e9cbf; 
  padding: 5px 14px 5px; 
  border:1px solid #3e9cbf; 
  cursor:pointer; 
  font-size:1.2em;
  letter-spacing:.1em;
  text-transform: uppercase;
  text-shadow: 0 -1px 0px rgba(0, 0, 0, 0.3); 
  color: #fff;
  -webkit-box-shadow: inset 0px 1px 0px #3e9cbf, 0px 5px 0px 0px #205c73, 0px 10px 5px #999;
  -moz-box-shadow: inset 0px 1px 0px #3e9cbf, 0px 5px 0px 0px #205c73, 0px 10px 5px #999;
  box-shadow: inset 0px 1px 0px #3e9cbf, 0px 5px 0px 0px #205c73, 0px 10px 5px #999;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
.inputInlineBlock{
  min-width: 250px;
  width: auto;
  display: inline-block;
  margin: 0 0 0 10px;
}
/* TABLE */
table{
  width: 100%;
  margin: 0 0 20px 0;
}
table.half:nth-of-type(odd){
  width: 49%;
  margin: 0 1% 20px 0;
}
table.half:nth-of-type(even){
  width: 49%;
  margin: 0 0 20px 1%;
}
th{
  background: #CCC;
  text-align: left;
  font-weight: 700;
  padding: 5px;
  vertical-align: bottom;
}
th.blank{
  background: #fff;
}
td{
  padding: 0 5px;
  vertical-align: middle;
}
td.half{
  float:none;
  width: 50%;
}
td span, .inputBlock{
  display: inline-block;
  padding: 5px 13px;
}
table.border td{
  border:solid thin #000;
}
table p{
  margin: 0;
}

.txtAlignCenter{
  text-align: center;
}
.txtAlignRight{
  text-align: right;
}
.half{
  width: 50%;
  float: left;
}
.half:nth-of-type(odd){
  padding: 0 5px 0 0;
}
.half:nth-of-type(even){
  padding: 0 0 0 5px;
}
.thirds{
  float: left;
  width:33%;
  padding: 0 5px;
}
.thirds:first-child{
  padding: 0 5px 0 0;
}
.thirds:last-child{
  padding: 0 0 0 5px;
}
.width10{
  width: 10%;
}
.width40{
  width: 40%;
}
.width50{
  width: 50%;
}
.redTxt{
  color: #CC0000;
}
.hidden{
  display:none;
}
.vAlignMid{
  vertical-align: middle;
}
.alertError, .alertSuccess, .alertWarning{
  padding: 10px;
  text-align: center;
  margin: 20px 0 0 0;
}
.alertSuccess{
  color: #69B92F; 
  border: solid thin #69B92F;
  background: #E1FCCF;
}
.alertError{
  color: #CC0000;
  border: solid thin #CC0000;
  background: #f2dede;
}
.alertWarning{
  color: #F47D0E;
  border: solid thin #F47D0E;
  background: #FFD8C1;
}