* {
    margin: 0px
}

@media print{
  body{ background-color:#FFFFFF; background-image:none; color:#000000 }
  #header{ display:none;}
  a{ display:none; }
  
} 

html, body {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 13px;
    color: #333333;
    margin: 0px;
    height: 100%;
    min-width:1024px; /* suppose you want minimun width of 1000px */
    width: auto !important;  /* Firefox will set width as auto */
    width:1200px;             /* As IE ignores !important it will set width as 1000px; */     
}
header {
    color:#282828;
    padding:5px;
    padding-right: 20px;    
    height: 106px;
    background-color: #FFFFFF;

    background-position: left; 
 }

section {
    float: left;
    width: 100%;
  /*  min-height: 90%; */
    padding: 5px;
    padding-right: 20px;
    padding-left: 10px;
}

nav {
    float:left; 
    background-color: #00567e;
    width: 100%;
    height: 42px;
}

.button_nav{
    float: left;
    height: 42px;

    padding-top: 5px;
    padding-left: 20px;
}

.button_link{
    color: #ededed;
    font-size: 14px;    
    color: #ededed;      
}

.button_link:hover{
    color: #aaaaaa;
}
footer {
    background-color:#eeeeee;
    color:#ededed;
    width: 100%;
    text-align:center;
    padding:5px;
    height: 24px;
    bottom:0;
    position:fixed;    
}

.small_text_grey{
    font-size: 11px;
    color: #333333;
}

.standard_text_grey{
    font-size: 13px;
    color: #333333;
}

.big_text_grey{
    font-size: 15px;
    color: #333333;
}

.highligted_text {
    font-size: 15px;
    color: #3291CF;
}

.step2_data_disabled {
    color:darkgrey;
    border: 1px solid darkgray;
    font-size:10px;
}

.valid_td {
    border: 1px solid #eeeeee;
}  

.warning_td {
   border: 1px solid yellow; 
}

.invalid_td {
   border: 1px solid darkred; 
}

.small_text {
    font-size: 12px;
}

.button_left{
    float: left;
    width: 180px;
}

.button_left_small{
    float: left;
    width: 150px;
}

.button_right{
    float: right;
    width: 180px;
}

.section_table{
    width: 100%;
    color: gray;
    margin: auto;
}

.section_title{
    text-align: center;
    color: #0078bd;
    font-size: 20px;
    width: 100%;
}

#dropdown {
    opacity: 0;
    padding: 5px;
    margin-top: 25px;
    text-align: left;
    background-color: #fff; 
    border: 1px solid lightgray; 
    color: #34495e;
    border-radius: 2px;
    position: relative;
}

.list_value{
    float:left; 
    width: 20%;
    margin: auto;
    padding: 5px;
}

.list_value2{
    float:left; 
   
    padding: 5px;
    vertical-align: top;
}

.list_div{
    float:left;
    width: 100%;
    margin: auto;
    padding: 5px;
    cursor: pointer;
    color: #34495e;
    line-height: 25px;
    background-color: inherit;
    border: 2px solid lightgray;
    border-radius: 2px;

    -webkit-transition: border-color 1s ease;
         -moz-transition: border-color 1s ease;
           -o-transition: border-color 1s ease;
          -ms-transition: border-color 1s ease;
              transition: border-color 1s ease;    
}


.list_div2 {
    border-top: 1px solid lightgrey;
    padding: 10px;
    padding-top: 5px;
    padding-bottom: 45px;
    line-height: 17px;
}

.list_head{
    float: left;
    width: 20%;
    margin: auto;
    cursor: pointer;
    color: #34495e;
    background-color: lightgray;
  
}

.list_head_span{
    float:left;
    border: 2px solid lightgray;
    line-height: 25px;
    border-radius: 2px;     
    padding: 8px;
    color:white;
    width:95%;
    -webkit-transition: border-color 1s ease;
         -moz-transition: border-color 1s ease;
           -o-transition: border-color 1s ease;
          -ms-transition: border-color 1s ease;
              transition: border-color 1s ease;                 
}

.list_head_span:hover{
    border-color: #40c55e;
    color: #34495e;
  }

.list_div:hover{
    border-color: #40c55e;
    color: white;
    background: #1abc9c;
    
  }
  
 .search {
    float: right;
    cursor: pointer;
    padding:6px 12px 4px 25px;
    color: #34495e;
    background-image: url(../img/search.png);
    background-position: 200px 8px;
    background-repeat: no-repeat;
    border: 2px solid lightgray;
    border-radius:2px; 
    -webkit-transition: border-color 1s ease;
         -moz-transition: border-color 1s ease;
           -o-transition: border-color 1s ease;
          -ms-transition: border-color 1s ease;
              transition: border-color 1s ease;   
}

.search:hover{
    border-color: #0078bd;
}

.list {
    color: #34495e;
    cursor: pointer;
}

.list:hover {
    border-color: #40c55e;
    background: #1abc9c;
    color: #fff;
}

.system_input {
    width: 500px;
}

td {
    vertical-align: top;
}

.row_delete{
    height:22px; 
    padding-bottom:2px;
    cursor: pointer;
}

.rp_leftbox{
    border-radius: 2px;
    border: 2px solid lightgrey;
    width: 200px;
    height: 70px;
    text-align: center;
    float: right;
    color: black;
}

.rp_rightbox{
    border-radius: 2px;
    border: 2px solid lightgrey;
    width: 200px;
    height: 70px;
    text-align: center;
    float: left;
    color: black;
}

.rp_confirmed{
    text-align: center;
    border-radius: 2px;
    background-color: green;
    color: white;
}

.rp_rejected{
    text-align: center;
    border-radius: 2px;
    background-color: darkred;
    color: white;
}

.rp_unanswered{
    text-align: center;
    border-radius: 2px;
    background-color: darkgrey;
    color: white;
}

.fileUpload {
    position: relative;
    overflow: hidden;
    margin: 10px;
}
.fileUpload input.upload {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
    font-size: 15px;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
}

.topLine{
    border-top:1px solid #dddddd; 
    padding-top:20px;
}
.desc_popup{
    position: absolute;
    background-color: #EEEEEE;
    color: grey;
    font-size: 13px;
    font-weight: 200;
    padding-left: 5px;
    padding-right: 5px;
    border: 2px solid #EEEEEE;
    border-radius: 2px;     
    animation: fadein 1s;
    -moz-animation: fadein 1s; /* Firefox */
    -webkit-animation: fadein 0.5s; /* Safari and Chrome */
    -o-animation: fadein 1s; /* Opera */      
    -webkit-transition: border-color 1s ease;
         -moz-transition: border-color 1s ease;
           -o-transition: border-color 1s ease;
          -ms-transition: border-color 1s ease;
              transition: border-color 1s ease;        
}

.desc_parent .desc_popup {
  display: none;
}

.desc_parent:hover .desc_popup {
    display: block;
    z-index: 9999;
  
}


@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-moz-keyframes fadein { /* Firefox */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-webkit-keyframes fadein { /* Safari and Chrome */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-o-keyframes fadein { /* Opera */
    from {
        opacity:0;
    }
    to {
        opacity: 1;
    }
}

.over_element		{ font-size:75px; position:absolute; }

#approved_element	{ color: white; margin-left: 200px;   z-index:2; }

.greyed_out {
        background:rgb(0,0,0);  
    background: transparent\9;  
    background:rgba(0,0,0,0.4);  
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#66000000,endColorstr=#66000000);  
    zoom: 1;
}

.showme {display:none}

.showme2 {display:block}


.spinner {
  height: 30px;
  width: 30px;

  margin: 12px auto 0 auto;
 
  position: relative;
  -webkit-animation: rotation .6s infinite linear;
  -moz-animation: rotation .6s infinite linear;
  -o-animation: rotation .6s infinite linear;
  animation: rotation .6s infinite linear;
  border-left: 6px solid rgba(0, 174, 239, .15);
  border-right: 6px solid rgba(0, 174, 239, .15);
  border-bottom: 6px solid rgba(0, 174, 239, .15);
  border-top: 6px solid rgba(0, 174, 239, .8);
  border-radius: 100%;
}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}

@-moz-keyframes rotation {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(359deg);
  }
}

@-o-keyframes rotation {
  from {
    -o-transform: rotate(0deg);
  }
  to {
    -o-transform: rotate(359deg);
  }
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

.active2 {
    background-color: #0d4c80;
} 

.pagination ul > li > a:hover {
    background-color: #0d4c80;
}

#yourBtn{
   position: relative;
   top: 5px;
   font-family: calibri;
   width: 250px;
   padding: 10px;
   -webkit-border-radius: 5px;
   -moz-border-radius: 5px;
   border: 1px dashed #BBB; 
   text-align: center;
   background-color: #DDD;
   cursor:pointer;
  }
  
