body {
    margin: 0px;
	font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

span.ValidationErrors {
    color: #D00;
    display: inline-block;
	font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 12px;
    margin-left: 10px;
}

.txtDatePicker{
	background: #fff url("../images/field_calendar.png") no-repeat;
	background-position: bottom 7px right 7px;
}

.txtTimePicker{
	background: #fff url("../images/clock.png") no-repeat;
	background-position: bottom 7px right 7px;
}

.alert {
    background: #C00;
    border-radius: 8px;
    color: #FFF;
    font-size: 14px;
    font-weight: 600;
    padding: 3px 5px;
    position: absolute;
    top: 4px;
    right: 4px;
    z-index: 100;
}

/* ========== Lobibox Style ========== */

.lobibox-notify.lobibox-notify-success {
    background-image: linear-gradient(to bottom,#CBFFCC,#CBFFC8);
	border: solid 1px #B9D3B8;
	box-shadow: none;
	-webkit-transition: none;
}

.lobibox-notify.lobibox-notify-success:hover {
	background-color: #CBFFC8;
	border-color: #000;
}

.lobibox-notify .lobibox-notify-icon{
	display: table;
	float: left;
	margin: 15px 10px;
    width: auto;
}

.lobibox-notify.lobibox-notify-success .lobibox-notify-title{
	color: #494017;
	font-size: 15px;
	font-weight: 700;
	line-height: 22px;
	margin-top: -5px;
}

.lobibox-notify.lobibox-notify-success .lobibox-notify-msg{
	color: black;
    font-size: 13px;
    font-weight: 600;
}

.lobibox-notify.lobibox-notify-success .lobibox-close{
	color: #494017;
}

.lobibox-notify.lobibox-notify-success .lobibox-close:hover{
	color: white;	
}

.lobibox-notify.lobibox-notify-error {
    background-image: linear-gradient(to bottom,#FBCECB,#FFCBCF);
	border: solid 1px #A94954;
	box-shadow: none;
	-webkit-transition: none;
}

.lobibox-notify.lobibox-notify-error:hover {
	background-color: #FFCBCF;
	border-color: #000;
}

.lobibox-notify.lobibox-notify-error .lobibox-notify-title{
	color: darkred;
	font-size: 15px;
	font-weight: 700;
	line-height: 22px;
	margin-top: -5px;
}

.lobibox-notify.lobibox-notify-error .lobibox-notify-msg{
	color: black;
    font-size: 13px;
    font-weight: 600;
}

.lobibox-notify.lobibox-notify-error .lobibox-close{
	color: #494017;
}

.lobibox-notify.lobibox-notify-error .lobibox-close:hover{
	color: white;	
}

/* ========== Form Style ========== */

input[type="text"], textarea, input[type="password"] {
    border: 1px solid #CCC;
	border-radius: 3px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .15) inset;
    -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, .15) inset;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .15) inset;
    color: #424242;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 13px;
    outline: none;
	padding: 5px;
}

input[type="text"]:focus, input[type="password"]:focus, textarea:focus {
    border: 1px solid rgba(128, 191, 255, 1);
}

select {
    border: 1px solid #CCC;
	border-radius: 3px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .15) inset;
    -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, .15) inset;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .15) inset;
    color: #424242;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 13px;
	outline: none;
    padding: 5px;
}

select:focus {
    border: 1px solid rgba(128, 191, 255, 1);
}

input[type="Submit"], input[type="Button"] {
    background: #FBFBFB;
    background: -moz-linear-gradient(top, #FBFBFB 0%, #ECECEC 2%, #CCCCCC 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FBFBFB), color-stop(2%, #ECECEC), color-stop(100%, #CCCCCC));
    background: -webkit-linear-gradient(top, #FBFBFB 0%, #ECECEC 2%, #CCCCCC 100%);
    background: -o-linear-gradient(top, #FBFBFB 0%, #ECECEC 2%, #CCCCCC 100%);
    background: -ms-linear-gradient(top, #FBFBFB 0%, #ECECEC 2%, #CCCCCC 100%);
    background: linear-gradient(top, #FBFBFB 0%, #ECECEC 2%, #CCCCCC 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ECECEC', endColorstr='#CCCCCC');
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#ECECEC', endColorstr='#CCCCCC')";
    border: 1px solid #a2a2a2;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    color: #333333;
    cursor: pointer;
	display: inline-block;
	font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 12px;
    text-decoration: none;
}

input[type="Submit"]:hover, input[type="Button"]:hover {
    background: -moz-linear-gradient(top, #FBFBFB 0%, #E8E8E8 2%, #BBBBBB 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FBFBFB), color-stop(2%, #E8E8E8), color-stop(100%, #BBBBBB)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #FBFBFB 0%, #E8E8E8 2%, #BBBBBB 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #FBFBFB 0%, #E8E8E8 2%, #BBBBBB 100%); /* Opera11.10+ */
    background: -ms-linear-gradient(top, #FBFBFB 0%, #E8E8E8 2%, #BBBBBB 100%); /* IE10+ */
    background: linear-gradient(top, #FBFBFB 0%, #E8E8E8 2%, #BBBBBB 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#E8E8E8', endColorstr='#BBBBBB');
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#E8E8E8', endColorstr='#BBBBBB')";
}

/*input[type="Submit"], input[type="Button"] {
	background: none;
	background: #252A31;
    color: white;
}

input[type="Submit"]:hover, input[type="Button"]:hover {
	background: none;
	background: #30353C;
    color: goldenrod;
}*/

input[type="radio"] {
    display: none;
}

input[type="radio"] + label{
	cursor: pointer;
	margin-right: 20px;	
}

input[type="radio"] + label span {
    background: url("../images/crbuttons.png") 0px -18px no-repeat;
	display: inline-block;
    height: 18px;
    margin: -1px 4px 0 0;
    vertical-align: middle;
    width: 18px;
}

input[type="radio"]:checked + label span {
    background: url("../images/crbuttons.png") -72px -18px no-repeat;
}

/* ========== Login Style ========== */

#Login .loginheader .logo{
	display: table;
	margin: 40px auto;
}

#Login .loginheader .logo img{
	width: 130px;	
}

#Login .loginbody .loginform {
	border-top: dashed 1px silver;
	border-bottom: dashed 1px silver;
	display: table;
	margin: 0px auto;
	padding: 20px 0px;
	width: 30%;
}

#Login .loginbody .loginform .photo {
	border-bottom: dashed 1px silver;
	display: table;
	margin: 10px 0px;
	margin-top: 0px;
	padding-bottom: 20px;
	width: 100%;
}

#Login .loginbody .loginform .photo img{
	border: solid 6px silver;
	border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
	display: table;
	height: 100px;
	margin: 0px auto;
	width: 100px;
}

#Login .loginbody .loginform input[type="text"], #Login .loginbody .loginform input[type="password"] {
    background-image: url("../images/user.png");
    background-position: 7px 10px;
    background-repeat: no-repeat;
	padding: 10px;
	padding-left: 30px;
    margin: 5px 0px;
	width: calc(100% - 40px);
}

#Login .loginbody .loginform input[type="password"] {
	background-image: url("../images/password.png");
}

#Login .loginbody .loginform input[type="checkbox"]{
	float: left;	
}

#Login .loginbody .loginform label{
	color: #333333;
	cursor: pointer;
	display: table;
	font-size: 12px;
	margin: 10px 0px;
}

#Login .loginbody .loginform input[type="Submit"]{
    border-radius: 0px;
	display: table;
	font-weight: 500;
    height: 40px;
	margin: 0px auto;
	width: 50%;
}

#Login .loginbody .loginform .forgotpassword{
	color: #800000;
	cursor: pointer;
	font-size: 13px;
	font-weight: 600;
	float: right;
	margin: 20px 0px;
}

#Login .loginbody .loginform .forgotpassword:hover{
	color: #660000;
	text-decoration: underline;
}

#Login .loginfooter label{
	color: #666;
	display: table;
	font-size: 13px;
	font-weight: 500;
	margin: 0px auto;
	margin-top: 25px;
}

/* ========== Header Style ========== */

#header {
	background-color: #F1F1F1;
    background-image: -webkit-gradient(radial,center center,0,center center,460,from(#F1F1F1),to(#FFFFFF));
    background-image: -webkit-radial-gradient(circle,#F1F1F1,#FFFFFF);
    background-image: -moz-radial-gradient(circle,#F1F1F1,#FFFFFF);
    background-image: -o-radial-gradient(circle,#F1F1F1,#FFFFFF);
    background-image: radial-gradient(circle,#F1F1F1,#FFFFFF);
    background-repeat: no-repeat;
    border-bottom: solid 1px #0b172a;
	box-shadow: inset 0 -10px 10px -10px gray;
	display: table;
	height: 40px;
	width: 100%;
}

#header .logo{
	display: table;
	margin: 8px 10px;	
}

#header .logo .companyname{
	color: #525252;
    float: left;
	//font-family: "Times New Roman", Times, serif;
    font-size: 16px;
    font-weight: 600;
    margin-left: 5px; 
}

#header .logo img{
	float: left;
	width: 24px;
}

#header .logininfo{
	display: table;
	position: absolute;
	right: 15px;
	top: 6px;
}

#header .logininfo .lastlogin{
	color: #525252;
	float: left;
	font-size: 12px;
	margin: 5px 10px; 
}

#header .logininfo .lastlogin strong{
	margin-right: 10px;	
}

#header .logininfo .notification {
	border-left: dotted 1px #525252;
    border-right: dotted 1px #525252;
	cursor: pointer;
    float: left;
    margin: 5px 10px;
    padding: 0px 15px;
	position: relative;
}

#header .logininfo .notification .alert {
	background-color: #C00;
	border-radius: 25px;
	-moz-border-radius: 25px;
	-webkit-border-radius: 25px;
	color: #FFF;
	font-size: 10px;
	font-weight: 600;
	position: absolute;
	padding: 2px 3px;
	right: 8px;
	top: -5px;
	z-index: 1;
}

#header .logininfo .profile{
	float: left;
	padding: 0px 10px;
	position: relative;
}

#header .logininfo .profile label{
	display: table;
	font-size: 12px;
}

#header .logininfo .profile label .photo{
	border: solid 1px #525252;
	border-radius: 4px;
	cursor: pointer;
	float: left;
	height: 24px;
	width: 24px;
}

#header .logininfo .profile label .employeename{
	color: #AF741F;
	cursor: pointer;
	float: left;
	font-weight: 600;
	margin: 4px 8px;  
}

#header .logininfo .profile label .arrow{
	cursor: pointer;
	float: left;
	margin-top: 5px;
}

#header .logininfo .profile label .profilemenu{
    background-color: #666;
    border: 1px solid #555;
	border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
	display: none;
    padding: 5px;
    position: absolute;
    right: 0px;
    top: 26px;
    width: 200px;
	z-index: 1000;
}

#header .logininfo .profile label .profilemenu ul {
	background-color: #FFF;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
	list-style: none;
    margin: 0px;
    padding: 0px;
}

#header .logininfo .profile label .profilemenu ul li{
    border-bottom: 1px dotted #BBB;
    font-weight: 600;
	margin: 0px;
    padding: 12px;
}

#header .logininfo .profile label .profilemenu ul li:last-child{
	border-bottom: none;	
}

#header .logininfo .profile label .profilemenu ul li img{
	float: left;
    height: 16px;
	margin-right: 10px;
	width: 16px;
}

#header .logininfo .profile label .profilemenu ul li a{
	color: #333;
	text-decoration: none;
}

#header .logininfo .profile label .profilemenu ul li a:hover{
	color: #666;
	text-decoration: underline;
}

#header .logininfo .profile label .profilemenu .menu-top {
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #666;
	height: 0px;
    position: absolute;
    right: 11px;
	top: -6px;
	width: 0px;
}

#header .logininfo .logout{
	border-left: dotted 1px #525252;
	float:left;
	padding-left: 10px;
}

#header .logout label{
	cursor: pointer;
	display: table;
}

#header .logout label img{
	float: left;
	margin-top: 5px;
}

#header .logout label a{
	color: #525252;
	float: left;
	font-weight: 400;
	font-size: 12px;
	margin: 4px 5px;
	text-decoration: none;
}

#header .logout label a:hover{
	color: #333;
	text-decoration: underline;	
}


/* ========== Navigation - Menubar ========== */

#menubar
{
    background-image: -moz-linear-gradient(top,#46444A,#2d2b32);
    background-image: -webkit-gradient(linear,0 0,0 100%,from(#46444A),to(#2d2b32));
    background-image: -webkit-linear-gradient(top,#46444A,#2d2b32);
    background-image: -o-linear-gradient(top,#46444A,#2d2b32);
	background-image: linear-gradient(to bottom,#46444A,#2d2b32);
    background-repeat: repeat-x;
    /*border-bottom: solid 1px #784269;
    border-right: none;
    border-left: none;*/
    display: table;
    width: 100%;
}

#menubar ul
{
	list-style: none;
	position: relative;
	float: left;
	margin: 0px;
	padding: 0px;
}

#menubar ul a
{
	display: block;
	color: #FFF;
	cursor: pointer;
	text-decoration: none;
	font-size: 13px;
	padding: 11px 20px 11px 20px;
}

#menubar ul li
{
	position: relative;
	float: left;
	margin: 0px;
	padding: 0px;
}

#menubar ul li:hover
{
	background: #666666;
	color: #CCC;
}

#menubar ul ul
{
	border: solid 1px silver;
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: #FFF;
	padding: 0px;
}

#menubar ul ul li
{
	display: table;
	float: none;
	width: 250px;
	border-bottom: dotted 1px silver;
}

#menubar ul ul li:hover
{
	color: #333;
	background-color: #EFEFEF;
}

#menubar ul ul a
{
	color: #000;
	cursor: pointer;
	float: left;
	line-height: 120%;
	padding: 10px 15px
}

#menubar ul ul img{
	float: right;
	margin-top: 8px;
	margin-right: 10px;
}

#menubar ul ul ul
{
	top: 0;
	left: 100%
}

#menubar ul li:hover > ul
{
	display: block;
	z-index: 9999;
}

/* ========== Container ========== */

#container{
	background-color: #8F8F8F;
	height: calc(100% - 81px);
	overflow: auto;
	position: absolute;
	right: 0px;
    width: 100%;
}

/* ========== Titlebar ========== */

#titlebar{
	background-color: white;
	border-bottom: solid 1px #666;
    box-shadow: inset 0 -10px 10px -10px gray;
    color: #383532;
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
}

#titlebar .titlegroup {
	float: left;	
}

#titlebar .titlegroup #lblSubTitle{
	color: #313D60;
	font-weight: 600;
}

#titlebar .actions{
    display: table;
    padding-left: 15px;
	position: relative;
}

#titlebar .actions input[type='submit'], #titlebar .actions input[type='button']{
    float: left;
	margin-right: 5px; 
}

/* ========== Filters ========== */

#filters{
    background-color: #FFFFFF;
    border: solid 1px #000;
    position: absolute;
	top: 32px;
	z-index: 2;
}

#filters #tblFilters th{
	background-color: #252A31;
    border-bottom: dotted 1px silver;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: normal;
    text-align: left;
    padding: 8px 10px;
}

#filters #tblFilters td{
    font-size: 12px;
    font-weight: normal;
    padding: 5px 0px;
    padding-left: 10px;
}

#filters #tblFilters input[type="Submit"], #filters #tblFilters input[type='button']{
	background: none;
	background: #252A31;
    color: white;
}

#filters #tblFilters input[type="Submit"]:hover, #filters #tblFilters input[type="Button"]:hover {
    background: none;
	background: #30353C;
    color: goldenrod;
}

#filters .menu-top {
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #252A31;
    height: 0px;
    position: absolute;
    left: 90px;
    top: -7px;
    width: 0px;
}

/* ========== Content ========== */
#content{
	height: calc(100% - 46px);
	overflow: auto;
	width: 100%;
	z-index: -1;
}

#content #tblData thead th{
    background-color: #13294a;
    background-image: -moz-linear-gradient(top,#152d53,#10223e);
    background-image: -webkit-gradient(linear,0 0,0 100%,from(#152d53),to(#10223e));
    background-image: -webkit-linear-gradient(top,#152d53,#10223e);
    background-image: -o-linear-gradient(top,#152d53,#10223e);
    //background-image: linear-gradient(to bottom,#152d53,#10223e);
    background-image: linear-gradient(to bottom,#25304f,#3B496F);
    background-repeat: repeat-x;
    border-bottom: 1px solid #0b172a;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff10223e',endColorstr='#ff0b172a',GradientType=0);
    color: #FFFFFF;
    font-size: 12px;
	font-weight: 600;
	padding: 10px;
}

#content #tblData tbody tr.odd td{
    background-color: #EEF0F0;
}

#content #tblData tbody tr.even td{
    background-color: #FFFFFF;
}

#content #tblData tbody td{
	border-bottom: dotted 1px silver;
	font-size: 12px;
    padding: 5px 10px;
    text-align: left;	
}

#content #tblData tbody td.actions{
	text-align: center;	
}

#content #tblData tbody td.actions img{
	cursor: pointer;	
}

#content #tblData tbody td img.photo {
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border: solid 1px silver;
    cursor: pointer;
	display: table;
    height: 48px;
	margin: 0px auto;
    width: 48px;
}

#content #tblData tbody td.noresultsfound{
	background-color: #FFFFFF;
	color: #006;
	font-size: 13px;
	font-weight: 600;
	text-align: center;
}

#content #tblData tfoot td.totalrecords{
	border-top: dotted 1px black;
	color: #FFFFFF;
	background-image: linear-gradient(to bottom,#464A50,#252A31);
	font-size: 12px;
	font-weight: 600;
	padding: 6px 10px;
}

/* ========== Form ========== */
#content #Form {
	background-color: #FFF;
	box-shadow: 0px 4px 9px 1px dimgrey;
	display: table;
	font-family: "Open Sans", Arial, Helvetica, sans-serif;
	font-size: 12px;
	margin: 10px auto;
	padding: 0px;
	padding-bottom: 30px;
	position: relative;
	width: 90%;
}

#content #Form .heading{
	background-color: #13294a;
    background-image: -moz-linear-gradient(top,#152d53,#10223e);
    background-image: -webkit-gradient(linear,0 0,0 100%,from(#152d53),to(#10223e));
    background-image: -webkit-linear-gradient(top,#152d53,#10223e);
    background-image: -o-linear-gradient(top,#152d53,#10223e);
    //background-image: linear-gradient(to bottom,#152d53,#10223e);
    background-image: linear-gradient(to bottom,#25304f,#3B496F);
    background-repeat: repeat-x;
	border-bottom: 1px solid #0b172a;
    display: table;
    width: 100%;
}

#content #Form .heading ul.tabs{
	float: right;
	list-style: none;
	margin: 0px;
	padding: 0px;	
	color: white;
}

#content #Form .heading ul.tabs li.active, #content #Form .heading ul.tabs li.deactive{
	border-left: solid 1px #999999;
	cursor: pointer;
	float: left;
	margin: 0px;
	padding: 20px;
}

#content #Form .heading ul.tabs li.deactive{
	cursor: text;
	color: #whitesmoke;
}

#content #Form .heading ul.tabs li.active:hover, #content #Form .heading ul.tabs li.active#current{
	background-color: #182954;
}

#content #Form .heading ul.tabs li.active img, #content #Form .heading ul.tabs li.deactive img{
	float: left;
	margin-right: 10px;
}

#content #Form .heading ul.tabs li.deactive img{
	opacity: 0.4;
}

#content #Form .form{
	margin-top: 10px;
}

#content #Form td{
	padding: 5px 0px 5px 10px;
	text-align: left;
}

#content #Form td td{
	padding-left: 0px;	
}

#content #Form .formtitle{
	border-bottom: dotted 1px silver;
	color: #666;
	font-size: 16px;
	font-weight: bold;
	padding: 15px 0px;
	width: 100%;
}

#content #Form img.photo{
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border: solid 1px silver;
    bottom: 0px;
    cursor: pointer;
    height: 90px;
    position: absolute;
    right: 25px;
    width: 90px;
}

#content #Form .dvdropdown{
    display: table;
    float: left;
}

#content #Form .dropdownactions {
    float: left;
    margin: 5px;
}

#content #Form .dropdownactions img{
	cursor: pointer;
}

#content #Form #dvAttachments ul{
	display: table;
	list-style: none;
	margin: 5px 0px;
	padding: 0px;
}
    
#content #Form #dvAttachments ul li{
	background: #f1f1f1;
	border: dotted 1px silver;
	float: left;
    font-size: 12px;
    margin: 5px 0px;
	margin-right: 10px; 
	padding: 10px;
}
	
#content #Form #dvAttachments ul li img{
	float: left;
	height: 24px;
	width: 24px;
}

#content #Form #dvAttachments ul li a{
	color: black;
	float: left;
	font-size: 13px;
	font-weight: 600;
	margin: 2px 8px;	
}

#content #Form #dvAttachments ul li img.delete{
	cursor: pointer;
	float: left;
	height: 16px;
	width: 16px;
	margin-top: 2px;
	padding-left: 5px;
}

#content #Form .multipleentriesform {
	margin-top: 10px;
}

#content #Form .multipleentriesform input[type="checkbox"]{
	cursor: pointer;
}

#content #Form .multipleentriesform table{
	border-collapse: collapse;
}

#content #Form .multipleentriesform thead tr th{
	border: dotted 1px silver;
	font-weight: 600;
	height: 40px;
}

#content #Form .multipleentriesform tbody tr td{
	padding: 10px;	
}

#content #Form .multipleentriesform tbody tr td .photo{
	border-radius: 8px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border: solid 1px silver;
	float:left;
	height: 32px;
	margin-right:10px;
	width: 32px;
}

#content #Form .multipleentriesform tbody tr td .membername, #content #Form .multipleentriesform tbody tr td .businessname{
	color: #444444;
	font-weight: 500;
	height: 17px;
	overflow: hidden;
	width: 170px;
}

#content #Form .multipleentriesform tbody tr td .businessname{
	color: #337900;
}

#content #Form .multipleentriesform tr.disabled {
    background-color: rgba(202, 33, 33, 0.3);
}

/* ========== Fast Track ========== */

#fasttrack-modal .title{
	background-color: #f5f5f5;
	border-bottom: 1px solid #ddd;
	color: #333333;
	font-size: 15px;
	font-weight: bold;
	padding: 20px 10px;
}

#fasttrack-modal .error{
	color: black;
	font-size: 13px;
	height: 250px;
	overflow: auto;
	padding: 10px;
	width: 500px;
}

#fasttrack-modal .form{
	margin: 10px 0px;
}

#fasttrack-modal .form td{
	font-size: 12px;
	padding: 5px 10px;
}

#fasttrack-modal .form input[type="submit"], #fasttrack-modal .form input[type="button"]{
	background: none;
	background: #252A31;
    color: white;
	width: 70px;
}

#fasttrack-modal .form input[type="submit"]:hover, #fasttrack-modal .form input[type="button"]:hover {
    background: none;
	background: #30353C;
    color: goldenrod;
}

#fasttrack-modal .form img.photo{
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border: solid 1px silver;
    cursor: pointer;
    height: 90px;
    width: 90px;
}

#fasttrack-modal .form .dvdropdown{
    display: table;
    float: left;
}

#fasttrack-modal .form .dropdownactions {
    float: left;
    margin: 5px;
}

#fasttrack-modal .form .dropdownactions img{
	cursor: pointer;
}

/* ========== Fast Track For Import ========== */

.fasttrack-modal-import .title input[type="button"]{
	background: #30353C;
    color: goldenrod;
	float: right;
	width: 70px;
}

.fasttrack-modal-import .form table tr:nth-child(2) td{
	padding: 0px;
}

.fasttrack-modal-import .form table td label.error-message{
	color: red;
	display: table;
	font-size: 13px;
	font-weight: 600;
	padding: 5px 0px;
}

/* ===== Fast Track For Data Table =====*/

#fasttrack-modal #tblDatas_wrapper.dataTables_wrapper .ui-widget-header{
	border: none;
	background: #f5f5f5;
    border-bottom: 1px solid #ddd;
}

#fasttrack-modal #tblDatas_wrapper.dataTables_wrapper .ui-corner-tl, #fasttrack-modal .dataTables_wrapper .ui-corner-tr{
	-webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;	
}

#fasttrack-modal #tblDatas_wrapper.dataTables_wrapper .dataTables_length{
	float: left;	
}

#fasttrack-modal #tblDatas_wrapper.dataTables_wrapper .dataTables_length #title{
	color: #666;
    display: table;
    font-size: 14px;
    font-weight: bold;
    margin: 10px;
}

#fasttrack-modal #tblDatas_wrapper.dataTables_wrapper .dataTables_length input[type="button"]{
	margin: 7px 10px;
    width: 80px;
}

#fasttrack-modal #tblDatas_wrapper.dataTables_wrapper .dataTables_filter {
    float: right;
    margin-top: 35px;
}

#fasttrack-modal #tblDatas_wrapper.dataTables_wrapper .dataTables_filter label {
    color: #666;
    display: table;
	font-size: 12px;
    font-weight: 500;
    margin: 4px 5px;
}

#fasttrack-modal #tblDatas_wrapper.dataTables_wrapper .dataTables_filter input[type="text"] {
    margin-left: 10px;
    width: 250px;
}

#fasttrack-modal #tblDatas_wrapper.dataTables_wrapper th.ui-state-default{
	//background: #632523;
    background: #4F5360;
	border: dotted 1px silver;
    border-bottom: 4px solid #a2d27a;
    color: #FFF;
	cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    height: 35px;
    padding: 0px;
}

#fasttrack-modal #tblDatas_wrapper.dataTables_wrapper th.ui-state-default .ui-icon{
	float: right;	
}

#fasttrack-modal #tblDatas.tblDataTable tr:hover{
	background-color: #F4F4F4;
	cursor: pointer;
}

#fasttrack-modal #tblDatas.tblDataTable td{
	border-bottom: dotted 1px silver;
    font-size: 12px;
	padding: 10px;
}

#fasttrack-modal #tblDatas.tblDataTable td input[type="checkbox"]{
	cursor: pointer;	
}

#fasttrack-modal #tblDatas_wrapper.dataTables_wrapper .dataTables_info {
    color: #666;
	font-size: 12px;
    font-weight: 600;
    float: left;
    margin: 12px;
}

#fasttrack-modal #tblDatas_wrapper.dataTables_wrapper .dataTables_paginate {
    float: right;
    margin: 8px;
}

#fasttrack-modal #tblDatas_wrapper.dataTables_wrapper .ui-buttonset .ui-button {
    background: -moz-linear-gradient(top, #FFFFFF 0%, #DFDBDB 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FFFFFF), color-stop(100%, #DFDBDB));
    background: -o-linear-gradient(top, #FFFFFF 0%, #DFDBDB 100%);
    background: -ms-linear-gradient(top, #FFFFFF 0%, #DFDBDB 100%);
    background: linear-gradient(top, #FFFFFF 0%, #DFDBDB 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#DFDBDB');
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#DFDBDB')";
    color: black;
    font-size: 12px;
    margin-right: 4px;
    padding: 2px 10px;
}

#fasttrack-modal #tblDatas_wrapper.dataTables_wrapper .dataTables_paginate span span.ui-state-disabled {
    background: #066ECD;
    background: -moz-linear-gradient(top, #A8CCEC 0%, #4993D7 2%, #066ECD 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #A8CCEC), color-stop(2%, #4993D7), color-stop(100%, #066ECD));
    background: -webkit-linear-gradient(top, #A8CCEC 0%, #4993D7 2%, #066ECD 100%);
    background: -o-linear-gradient(top, #A8CCEC 0%, #4993D7 2%, #066ECD 100%);
    background: -ms-linear-gradient(top, #A8CCEC 0%, #4993D7 2%, #066ECD 100%);
    background: linear-gradient(top, #A8CCEC 0%, #4993D7 2%, #066ECD 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4993D7', endColorstr='#066ECD');
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#4993D7', endColorstr='#066ECD')";
    border-color: #0561B4;
    color: #FFF;
    filter: Alpha(Opacity=100);
    opacity: 1;
}

#fasttrack-modal #tblDatas_wrapper.dataTables_wrapper .ui-state-default {
    background: none;
    color: #000;
    cursor: pointer;
}