

/* BUTTONS */
.btn {
	border: none;
	padding: 6px 12px;
	border-bottom: 4px solid;
	-webkit-transition: border-color 0.1s ease-in-out 0s, background-color 0.1s ease-in-out 0s;
	transition: border-color 0.1s ease-in-out 0s, background-color 0.1s ease-in-out 0s;
	outline: none;
}
.btn-default,
.wizard-cancel,
.wizard-back {
	background-color: #95a5a6;
	border-color: #7f8c8d;
	color: #fff;
}

.btn-default .caret {
	border-top-color: #FFFFFF;
}
.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active, 
.open .dropdown-toggle.btn-default {
	background-color: #7f8c8d;
	border-color: #5c6667;
}
.btn-info {
	background-color: #01b9fe;
	border-color: #0298d1;
}
.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active, 
.open .dropdown-toggle.btn-info {
	background-color: #0298d1;
	border-color: #0178a5;
}
.btn-link {
	border: none;
}
.btn-primary {
	background-color: #3498db;
	border-color: #2980b9;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active, 
.open .dropdown-toggle.btn-primary {
	background-color: #2980b9;
	border-color: #1c5c87;
}
.btn-success {
	background-color: #2ecc71;
	border-color: #27ae60;
}
.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active, 
.open .dropdown-toggle.btn-success {
	background-color: #27ae60;
}
.btn-danger {
	background-color: #e74c3c;
	border-color: #c0392b;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active, 
.open .dropdown-toggle.btn-danger {
	background-color: #c0392b;
}
.btn-warning {
	background-color: #f1c40f;
	border-color: #f39c12;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active, 
.open .dropdown-toggle.btn-warning {
	background-color: #e0b50a;
	border-color: #bd9804;
}

.btn-facebook {
	background-color: #3b5998;
	border-color: #2f477b;
}
.btn-facebook:hover {
	background-color: #2f477b;
	border-color: #263963;
}
.btn-twitter {
	background-color: #00aced;
	border-color: #0098d1;
}
.btn-twitter:hover {
	background-color: #0098d1;
	border-color: #0283b4;
}

.icon-box {
	margin-top: 5px;
}
.icon-box .btn {
	border: 1px solid #e1e1e1;
	margin-left: 3px;
	margin-right: 0;
}
.icon-box .btn:hover {
	background-color: #eee;
	color: #3498db;
}


/* LABELS */
.label {
	border-radius: 3px;
	font-size: 0.875em;
	font-weight: 600;
}



/* FORMS */
.form-group {
	margin-bottom: 20px;
}
label {
	font-weight: 400;
	font-size: 0.875em;
}
.form-control {
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	border-color: #e7ebee;
	-webkit-box-shadow: none;
	box-shadow: none;
	font-size: 13px;
}
.form-control:focus {
	border-color: rgba(52, 151, 219, 0.6);
	outline: 0;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(52, 152, 219, 0.6);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(52, 152, 219, 0.6);
}
.form-inline-box {
	background: none repeat scroll 0 0 #F6F6F6;
	border: 1px solid #e7ebee;
	padding: 7px;
}


.input-group > .form-control, 
.input-group > .input-group-addon, 
.input-group > .input-group-btn > .btn {
	line-height: 1;
}
.input-group > .input-group-btn > .btn {
	border: 0;
	height: 34px;
}
.input-group-addon {
	background: transparent;
	border-color: #e7ebee;
}

.checkbox-inline > input {
	margin-top: 0;
}

.checkbox-nice {
	position: relative;
	padding-left: 15px;
}
.checkbox-nice input[type=checkbox] {
	visibility: hidden;
}
.checkbox-nice label {
	padding-top: 3px
}
.checkbox-nice.checkbox-inline > label {
    margin-left: 16px;
}
.checkbox-nice label:before {
	cursor: pointer;
	position: absolute;
	width: 22px;
	height: 22px;
	left: 1px;
	top: 1px;
	background: #ffffff;
	content: "";
	border: 1px solid #e7ebee;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.checkbox-nice label:after {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	opacity: 0;
	content: '';
	position: absolute;
	width: 12px;
	height: 7px;
	background: transparent;
	top: 7px;
	left: 6px;
	border: 3px solid #3498db;
	border-top: none;
	border-right: none;

	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.checkbox-nice label:hover::after {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
	filter: alpha(opacity=30);
	opacity: 0.3;
}
.checkbox-nice input[type=checkbox]:checked + label:after {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	opacity: 1;
}



/* LOGIN PAGE */
#login-page {
	background-color: #e7ebee;
}
#login-page-full {
	background-color: #e7ebee;
}
#login-box {
	background: #fff;
	max-width: 350px;
	min-width: 280px;
	border: 1px solid #e1e1e1;
	border-bottom-width: 5px;
	margin: 60px auto 20px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	overflow: hidden;
}
#login-box #login-box-header {
	height: 5px;
}
#login-box #login-box-header > div {
	height: 100%;
	width: 16.6667%;
	float: left;
}
#login-box #login-box-header .login-box-header-red {
	background: #e74c3c;
}
#login-box #login-box-header .login-box-header-green {
	background: #2ecc71;
}
#login-box #login-box-header .login-box-header-yellow {
	background: #f1c40f;
}
#login-box #login-box-header .login-box-header-purple {
	background: #9b59b6;
}
#login-box #login-box-header .login-box-header-blue {
	background: #3498db;
}
#login-box #login-box-header .login-box-header-gray {
	background: #95a5a6;
}
#login-box-inner {
	padding:0px 25px 40px 25px;
}
#login-logo {
	/*background: none repeat scroll 0 0 #34495e;*/
    color: #fff;
    display: block;
    font-size: 2em;
    font-weight: 400;
    padding: 25px 0;
    text-align: center;
    text-transform: uppercase;
}
#login-logo > img {
	display: block;
    height: 120px;
    margin: 0 auto;
}
#login-logo > span {
    display: block;
    font-size: 0.6em;
    font-weight: 300;
    text-transform: none;
}
#login-box .input-group {
	margin-bottom: 10px;
}
#login-box .input-group input {
	font-weight: 300;
}
#login-box .input-group .input-group-addon {
	padding-left: 0;
	padding-right: 0;
	min-width: 50px;
}
#login-box .input-group .input-group-addon i {
	color: #efefef;
}
#login-box #login-forget-link {
	display: block;
	font-size: 0.875em;
	text-align: right;
	margin-top: 3px;
}
#login-box #remember-me-wrapper {
	padding: 10px 0;
}
#login-box .btn {
	font-size: 1.125em;
    font-weight: 600;
    padding-bottom: 10px;
    padding-top: 10px;
    text-transform: uppercase;
}
#login-box .form-group {
	margin-bottom: 7px;
}
#login-box-inner .input-group > .form-control,
#login-box-inner .input-group > .input-group-addon {
	height: 46px;
	padding-top: 0;
	padding-bottom: 0;
}
#login-box-inner .input-group > .input-group-addon {
	height: 44px;
}
#login-box .form-group .checkbox label {
	padding-left: 7px;
}
#login-box .form-group .checkbox input {
	margin-left: 0;
}
#login-box .btn-facebook,
#login-box .btn-twitter {
	text-transform: none;
	font-size: 1em;
	margin-bottom: 10px;
}
#login-box .social-text {
	margin: 0;
    padding: 15px 0;
    text-align: center;
    font-size: 0.875em;
}
@media only screen and (max-width: 767px) {
	#login-box {
		margin-top: 20px;
	}
}


/* Master Form */
.addMaster 
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px; 
	/*border: 1px solid #eee;*/
	color: #000;
	height:100%;
	width:100%;
    border-spacing:0;
}

.addMaster td.header 
{
    /*background:#376f88;
    height:28px;  
    padding-left:10px;
    vertical-align:middle;
	font-family:"BellCent NamNum BT"; 
    font-size:16px; 
    color:#ffffff; 
    text-decoration:none;
    text-transform:capitalize;*/

        height:35px;
        text-align:left;
        padding:0 0 0 10px;
        font-size:13px;
        background: #99C4E5; /* old browsers */
        background: -moz-linear-gradient(top, #99C4E5 0%, #5B7899 100%); /* firefox */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#99C4E5), color-stop(100%,#5B7899)); /* webkit */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#99C4E5', endColorstr='#5B7899',GradientType=0 ); /* ie */	
        color:#fff;
        text-shadow:0px -1px 0px #5B7899;
        font-weight:bold;
        text-transform:capitalize;
}


.addMaster td.info {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	border: 0px solid #eee;
	color: #000;
	vertical-align:top;
    /*text-transform:capitalize;*/
}

.addMaster td.footer 
{
    background: url(Images/wbg.gif) repeat-x top;
	height:35px;
	text-align:center;
    vertical-align:middle;
}


.V3MGrid
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	position: relative;
	border: 1px solid #d4e5ed;
	overflow: hidden;
	color: #000;
    /*text-transform:capitalize;*/
}
.V3MGrid .headerTd
{
    vertical-align:top;
    height:25px;
     
}

.V3MGrid .headerTable th
{
   background: #fafafa url(images/fhbg.gif) repeat-x bottom;
	position: relative;
	border: 1px solid #ccc;
	border-bottom: 0px;
	overflow: hidden;
	height:25px;
     border-left: 0px;
}

					
.V3MGrid table.bodyTable
{
    /*border: 1px solid #ccc;
    border-top: 0px;
    background: #fff;
    overflow: auto;
    position: relative;*/
}

.V3MGrid table.bodyTable tr td
{
    height:22px;   
      border-top: 0px;
        border-left: 0px;
}
.V3MGrid .bodyTable tr.selectedrow td 
{
     background-color: #F4FF9A;

     /*background-color: #fff2c3;*/
     
}

.V3MGrid table tr:hover td 
{
     background-color: #F4FF9A;cursor:pointer;
      /*background-color: #fff2c3;cursor:pointer;*/
}

.V3MGrid .bodyTable td
{
    border:1px solid #d4e5ed;
    /*border:0px solid black;
    border-bottom:1px solid black;
    border-right:1px solid black;*/
}


.container
{
    /*font-family: Arial, sans-serif;
    font-size: 12px;
    overflow: auto;
  
    background: #FFF;
    border: solid 5px #999;
    color: #000;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;*/
    border: 4px solid #376f88;
    margin: auto;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    -webkit-border-radius: 10px;
    background: #FFF;
}










