body{
	font-family:'Open Sans',sans-serif;
}
.container{
    /*width: 650px;*/
    /*width: 800px;*/
    /*width: 1050px;*/
    width: 1200px;
    padding: 25px 30px;
	    box-shadow: 0 2px 4px rgba(0,0,0,0.45);
    min-height: 660px;
}
h2{    
	
    font-size: 28px;
    color: #222222;
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'Open Sans',sans-serif;
    margin-bottom: 15px;
}
a{
    color: #009241;
    font-size: 14px;
}
.table-bordered>tbody>tr>td, 
.table-bordered>tbody>tr>th, 
.table-bordered>tfoot>tr>td, 
.table-bordered>tfoot>tr>th, 
.table-bordered>thead>tr>td, 
.table-bordered>thead>tr>th {
    text-align: center;
}
/*.btn {*/
    /*position: relative;*/
    /*!*padding: 9px 15px;*!*/
    /*padding: 9px 5px;*/
    /*line-height: 14px;*/
    /*text-transform: uppercase;*/
    /*background: none;*/
    /*color: #009241 !important;*/
    /*border: 2px solid #009241;*/
    /*font-size: 11px;*/
    /*!*font-size: 13px;*!*/
    /*font-weight: 500;*/
    /*border-radius: 1px;*/
/*}*/

.btn {
    margin-top: 5px;
    position: relative;
    /* padding: 9px 15px; */
    padding: 11px 34px;
    line-height: 12px;
    text-transform: uppercase;
    background: none;
    color: #009241 !important;
    border: 2px solid #009241;
    font-size: 13px;
    /* font-size: 13px; */
    font-weight: 500;
    border-radius: 1px;
}
.btn:hover {
    background: #009241;
    color: #ffffff !important;
    border-color: #009241;
}
.form-control{
	   display: block;
    width: 100%;
    line-height: 24px;
    height: 44px;
    font-size: 13px;
    border: 1px solid #e0e0e0;
    padding: 11px 15px;
    background: none;
	border-radius:0px;
    color: #111111;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}
.form-control:focus {
    border-color: #009241;    box-shadow: none;
}
.margin-top15{
	margin-top:15px;
}
#div_err {
	color:#f00;
	font-size:12px;
	font-style:italic;
}
label{
	color: #009241;
    font-style: italic;
    letter-spacing: 1px;
}
.logo{
	text-align:right;
}

.loader {
    margin-left: 27%;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    border-bottom: 16px solid #3498db;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}