/* Vforms */
.vf_form{
    font-family: Arial, Helvetica;
}

.vf_controls {
    clear: both;
    float: none;
    height: 38px;
    width: 100%;
}
.vf_status {
    max-height: 60px;
    overflow-y: auto;
    text-align: center;
    clear: both;
    padding: 5px;
    margin: 5px;
}
.vf_field {
    min-width: 100px;
    margin: 0;
    padding: 6px 0 4px 2px;
    box-sizing: border-box;
    position: relative; 
    left: -4px;
    vertical-align: top;
    -webkit-border-radius: 0 3px 3px 0;
    -moz-border-radius: 0 3px 3px 0;
    border-radius: 0 3px 3px 0;
    background-color: #fff;
    border: 1px solid #ccc;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    -webkit-transition: border linear .2s box-shadow linear .2s;
    -moz-transition: border linear .2s box-shadow linear .2s;
    -o-transition: border linear .2s box-shadow linear .2s;
    transition: border linear .2s box-shadow linear .2s;
}
.vf_field:focus{
/* 	border-color: rgb(55, 135, 255);
	-webkit-box-shadow: inset 0 0 6px #7fc3ff;
	-moz-box-shadow: inset 0 0 6px #7fc3ff;
	box-shadow: inset 0 0 6px #7fc3ff; */
}
.vf_required:focus{
	border-color: #e9322d;
	-webkit-box-shadow: inset 0 0 6px #f8b9b7;
	-moz-box-shadow: inset 0 0 6px #f8b9b7;
	box-shadow: inset 0 0 6px #f8b9b7;
}
*.vf_field:invalid { /* when a field is considered invalid by the browser */
	box-shadow: inset 0 0 1px rgb(192, 1, 1);
	background-image: url("../images/icons/required.gif");
	background-repeat: no-repeat;
	background-size: 8px;
	background-position: 100%;
}
*.vf_field:focus:invalid {
	background-image: url("../images/icons/exclamation.gif");
	background-repeat: no-repeat;
	background-size: 18px;
	background-position: 100%;
	background-color: white;
	border-color: red;
}
*.vf_field:focus:valid { /* when a field is considered invalid by the browser */
	background-image: url("../images/icons/check.gif");
	background-repeat: no-repeat;
	background-size: 18px;
	background-position: 100%;
	border: solid 2px green;
}
.vf_section_header {
    font-size: 150%;
    font-weight: bold;
}
.vf_item_header{
	font-size: 120%;
	text-decoration :  none;
	cursor: help;
	color: rgb(63, 63, 63);
	padding-bottom: 2px;  
	border-bottom: dotted 1px;
	margin-bottom: 10px;
	margin-top: 10px;
	float: none;
	clear: left;
	display: block;
}
.vf_item_desc {
    margin-top: -13px;
    color: rgb(133, 133, 133);
    margin-bottom: 10px;
}

		.vf_form input+label, .vf_form input:disabled+label{
			margin-top: 10px;
			line-height: 170%;
			cursor: pointer;
		}
		.vf_form input:disabled, .vf_form input:disabled+label{
			cursor:default !important;
		}
		.vf_form input[type=checkbox]:disabled+label {
            background-color: rgb(255, 255, 255) !important;
            color: rgb(158, 158, 158) !important;
        }
		.vf_form input[type=radio]:disabled+label{
            color: rgb(187, 183, 183) !important;
			border-color: rgb(187, 183, 183) !important;
			/*margin-top: 0;
			border: solid 1px rgb(111, 111, 111);
			padding: 3px 20px 3px 5px;
			-webkit-box-shadow: inset 0px 4px 4px rgba(50, 50, 50, 1);
			-moz-box-shadow: inset 0px 8px 8px rgba(50, 50, 50, 1);
			box-shadow: 0 0;
			border-radius: 3px;
			background-color: rgb(243, 243, 243);
			margin: 0 -10px 0 -3px; */
        }
		.vf_form input:focus{
		}
		.vf_form input[type=checkbox], .vf_form input[type=radio]{
			min-width: 0;
			top: 3px;
			margin-left: 10px;
		}
        .vf_form input[type=checkbox]{
            margin-top: 4px;
        
}
        .vf_form input[type=checkbox]+label{
			line-height: 120%;
			color: rgb(39, 39, 39);
			margin: 0 10px 0 -25px;
			padding: 3px 7px 3px 20px;
			display: inline-block;
			border: solid 1px rgb(150, 149, 149);
			border-radius: 3px;
			box-shadow: inset 0 0 10px rgb(185, 185, 185);
			background-color: whitesmoke;
			/* background: url(img/check_02.png) 0px 0px no-repeat; */
            /* text-indent: -1000em; */
        }
		.vf_form input[type=radio]+label{
            line-height: 140%;
			color: rgb(78, 78, 78);
            margin: 0 0 0 -25px;
			padding: 3px 5px 3px 20px;
			border: solid 1px rgb(111, 111, 111);
			border-radius: 3px;
            box-shadow: 0 0;
			-webkit-box-shadow: 0 0;  
            -moz-box-shadow: 0 0; 
            background-color: rgb(243, 243, 243);
        }
        .vf_form input[type=radio]:checked+label{
			color: rgb(76, 126, 0);
			padding: 3px 6px 3px 20px;
			border-color: rgb(76, 126, 0);
			border-bottom: solid 3px;
			box-shadow: 0px 4px 10px -2px rgba(50, 50, 50, 1);
			font-weight: bold;
		}
        .vf_form input[type=checkbox]:checked+label{
			color: white;
			background-color: rgb(0, 129, 26);
			box-shadow: inset 0 0 15px rgb(116, 116, 116);
			border-color: black;
        }
		.vf_form input[type=checkbox]:checked+label.vf_important{
			background-color:rgb(201, 0, 0);
		}
        .vf_form input[type=radio]:hover+label{
			cursor: pointer;
			color: rgb(2, 134, 2) !important;
        }
        .vf_form input[type=radio]:hover+label:hover {
            color: rgb(93, 155, 0);
        }

/* 
*.vf_field:valid {

}

*.vf_field::required{
	box-shadow: 0 0;
}*/
.vf_loading {background: url(../images/ajax-loader.gif) no-repeat 100% 0; padding: 5px 20px}
.vf_warn{color:red}
.vf_success {color:green; font-weight: bold}
.vf_error{border:1px solid #e20000}
.vf_error:focus{border:1px solid red}
.vf_clr{clear:both;margin-bottom:10px}
.vf_fieldset{
    position: relative;
    display: inline;
}

.vf_fieldset > *.input-prepend {
    display: inline-block;
    white-space: nowrap;
}
.input-prepend {
    -webkit-border-radius: 3px 0 0 3px;  -moz-border-radius: 3px 0 0 3px;  
    border-radius: 3px 0 0 3px;
    margin: 5px 2px;
    clear: left;
}
.input-prepend.vf_full_w, *.vf_full_w * {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;    
}
.input-prepend textarea {
    width: 100%;
    min-height: 50px;
    min-width: 100% !important;
}
.vf_btn {
    display: inline-block;
    padding: 4px 14px;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 20px;
    color: #333333;
    text-align: center;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
    vertical-align: middle;
    cursor: pointer;
    background-color: #f5f5f5;
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
    background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
    background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
    background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
    background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
    background-repeat: repeat-x;
    border: 1px solid #bbbbbb;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    border-color: #e6e6e6 #e6e6e6 #bfbfbf;
    border-bottom-color: #a2a2a2;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
    filter: progid:dximagetransform.microsoft.gradient(enabled=false);
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}
input.vf_btn {
    padding: 4px 10px;
    width: initial !important;
    margin: 3px 15px;
}
.vf_btn:focus{
	outline: thin dotted #333;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
}
.vf_btn:hover{
	color: #333333;
	text-decoration: none;
	background-color: #e6e6e6;
	background-position: 0 -15px;
	-webkit-transition: background-position 0.1s linear;
	-moz-transition: background-position 0.1s linear;
	-o-transition: background-position 0.1s linear;
	transition: background-position 0.1s linear;
}
.vf_btn_success{
    color: #ffffff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    background-color: #5bb75b;
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
    background-image: -webkit-linear-gradient(top, #62c462, #51a351);
    background-image: -o-linear-gradient(top, #62c462, #51a351);
    background-image: linear-gradient(to bottom, #62c462, #51a351);
    background-image: -moz-linear-gradient(top, #62c462, #51a351);
    background-repeat: repeat-x;
    border-color: #51a351 #51a351 #387038;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);
    filter: progid:dximagetransform.microsoft.gradient(enabled=false);
}
.vf_btn_success:hover{
	color: #ffffff;
	background-color: #51a351;
}

.vf_next, .vf_btn_success {
    float: right;
    width: 55px;
    margin: 10px;
}
.vf_prev {
    float: left;
    width: 55px;
    margin: 10px;
}
.vf_mask {
    background-color: yellow;
}
.vf_page {
    float: left;
    background-color: transparent;
    position: relative;
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}
.vf_container {
    margin: 15px;
}
.vf_slider {
    overflow: auto;
    border-top: solid 1px rgb(206, 206, 206);
    border-bottom: solid 1px rgb(206, 206, 206);
}
.vf_form {
    position: relative;
    min-width: 450px;
    border-style: inset;
    border: solid 1px;      
}
.vf_form.vf_paginated {
    overflow: hidden;
}
.vf_fork {
    clear: both;
    float: none;
}
.vf_fork_label{
	display:block !important;
}

.vf_item {
    float: left;
    clear: left;
    border: solid 1px #777;
    width: 92%;
	
    padding: 5px 4% 10px;
    margin: 5px auto 10px;
    border-radius: 3px;
    background-color: transparent;
    box-shadow: 0 3px 7px rgb(136, 136, 136);
}
/* End of Vforms */