@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,300);

@font-face {
    font-family: 'Avant Garde for TVK Demi';
    src: url('../fonts/AvantGardeforTVK-Demi.otf');
}


body{
	margin:0px;
	padding:0px;
  height:100%;
  font-family: 'Avant Garde for TVK Book Demi', 'Open Sans', sans-serif;
  background-color: #0149b8;
  font-size:16px;
}

.innerBody{
  background-color: white;
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 20px;
}

.navbar{
  background-color: rgba(255,255,255,1);
  border-bottom-color: #3F3F5C;
  border-bottom-width: 1px;
  border-bottom-style: solid;
}

.navbar-brand>img {
  height: 60px;
  padding: 0px;
  width: auto;
}


h1{
  font-size: 250%;
  color: #506371;
  font-variant: small-caps;
}
h2{
  font-size: 150%;
  color: #506371;
}
h3{
  color: #506371;
}


p{
  font-size:120%;
  color:#223847;
}

.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
}

.selectedButton{
  color: #FFF;
  background: #01317b;
  font-weight:700;
  width:100%;
  padding:12px;
  border:none;
  border-radius: 10px;
  outline: none;
}

.submitbutton{
   color: #FFF;
  background: #01317b;
  font-weight:700;
  width:100%;
  padding:12px;
  border:none;
  border-radius: 10px;
  outline: none;
}


.deselectedButton{
  color: #939DA4;
  background: #0149b8; 
  font-weight:700;
  width:100%;
  padding:12px;
  border:none;
  border-radius: 10px;
  outline: none;
}

.img-thumbnail {
    display: inline-block;
    width: 100%;
    height: 250px;
    padding: 4px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}


.listItem{
  font-size:10px;
}

.inputBox{
  width:100%;
  margin-top:10pt;
  margin-bottom: 10pt;
}


footer { background-color:#01317b; }
.footerleft { margin-top:20px; padding:0 36px; }
.logofooter { margin-bottom:10px; font-size:25px; color:#fff; font-weight:700;}
.footerleft p { color:#fff; font-size:12px !important; margin-bottom:15px;}
.footerleft p i { width:20px; color:#999;}

.footer-ul { list-style-type:none;  padding-left:0px; margin-left:2px;}
.footer-ul li { line-height:29px; font-size:12px;}
.footer-ul li a { color:#a0a3a4; transition: color 0.2s linear 0s, background 0.2s linear 0s; }
.footer-ul i { margin-right:10px;}
.footer-ul li a:hover {transition: color 0.2s linear 0s, background 0.2s linear 0s; color:#ff670f; }
 
 .copyright { min-height:40px; background-color:#000000;}
 .copyright p { text-align:left; color:#FFF; padding:10px 0; margin-bottom:0px; font-size: 12px;}
 .bottom_ul { list-style-type:none; float:right; margin-bottom:0px;}
 .bottom_ul li { float:left; line-height:40px;}
 .bottom_ul li:after { content:"/"; color:#FFF; margin-right:8px; margin-left:8px;}
 .bottom_ul li a { color:#FFF;  font-size:12px;}


.table{
  width:100%;
}



/* Custom labels: the container */
.checkcontainer {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 17px;
    -webkit-user-select: none; /* Chrome, Opera, Safari */
    -moz-user-select: none; /* Firefox 2+ */
    -ms-user-select: none; /* IE 10+ */
    user-select: none; /* Standard syntax */
}

/* Hide the browser's default checkbox */
.checkcontainer input {
    position: absolute;
    opacity: 0;
}


/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.checkcontainer:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkcontainer input:checked ~ .checkmark {
    background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkcontainer input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkcontainer .checkmark:after {
    left: 10px;
    top: 6px;
    width: 7px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Create a custom radio button */
.radiobtn{
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.checkcontainer:hover input ~ .radiobtn{
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.checkcontainer input:checked ~ .radiobtn{
  background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radiobtn:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.checkcontainer input:checked ~ .radiobtn:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.checkcontainer .radiobtn:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

.table td, .table th{
  border-top:none;
}