
  /********************/
 /* LOADING OF FONTS */
/********************/
@font-face {
  font-family: 'montserrat';
  src: url('../fonts/Montserrat-Regular.otf')  format('opentype');
}
@font-face {
  font-family: 'sansation';
  src: url('../fonts/Sansation-Regular.ttf')  format('truetype');
}
@font-face {
  font-family: 'sansationBold';
  src: url('../fonts/Sansation-Bold.ttf')  format('truetype');
}
@font-face {
  font-family: 'opensans';
  src: url('../fonts/OpenSans-Regular.ttf')  format('truetype');
}
@font-face {
  font-family: 'opensansBold';
  src: url('../fonts/OpenSans-Bold.ttf')  format('truetype');
}
@font-face {
  font-family: 'dinRegular';
  src: url('../fonts/DIN-Regular.ttf')  format('truetype');
}
@font-face {
  font-family: 'gothicRegular';
  src: url('../fonts/CenturyGothic-Regular.ttf')  format('truetype');
}
@font-face {
  font-family: 'gothicItalic';
  src: url('../fonts/CenturyGothic-Italic.ttf')  format('truetype');
}
@font-face {
  font-family: 'gothicBold';
  src: url('../fonts/CenturyGothic-Bold.ttf')  format('truetype');
}
@font-face {
  font-family: 'gothicBoldItalic';
  src: url('../fonts/CenturyGothic-BoldItalic.ttf')  format('truetype');
}



	  /**************/
	 /* GLOBAL CSS */
	/**************/
a { color: #222; }
a:hover { color: #fff; text-shadow: 1px 1px #777; text-decoration: none; }

.clear { clear: both !important; }

.padding-overlay {
	padding: 0px;
}
.body-content {
	 height: auto;
	 padding-top: 30px;
}
html {
    position: relative;
    min-height: 100%;
}
body {
    margin: 0 0 100px;
    font-family: "gothicRegular";
    background: url('../images/striped.png');
}

hr {
    border: 0;
    height: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 0px;
	margin-bottom: 10px;
}

.panelBodyCont {
	margin: 0 50px;
	background: url('../images/maze.png');
	padding: 20px;
	border: 3px solid rgba(0, 0, 0, 0.25);
	border-radius: 10px;
	box-shadow: 0 12px 6px -3px black;
}
.ui-datepicker-year, .ui-datepicker-month {
	color: #000;
}
.padding-overlay {
	padding: 0;
}
.controlSpan {
	line-height: 2;
}
.override-btn {
	color: #fff !important;
	background-color: #1e1d1d !important;
	border: 1px solid #000 !important;
}
.override-btn:hover, .override-btn:focus {
	color: #1e1d1d !important;
	background-color: #fff !important;
	border: 1px solid #000 !important;
}
.form-control:focus {
  border-color: #1e1d1d;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(0, 0, 0, 0.6);
  outline: 0 none;
}


	  /**************/
	 /* Modals CSS */
	/**************/
.delete-modal .modal-header {
	background: #ED4949;
	color: #fff;
}
.update-modal .modal-header {
	background: #76E628;
	color: #fff;
}
.add-modal .modal-header {
	background: #79CBFF;
	color: #fff;
}
.modal-header .close {
	opacity: 1;
	color: #FFF;
}

	
	  /**************/
	 /* CSS ERRORS */
	/**************/
.error-bg {
	background: rgb(204,126,126); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(204,126,126,1) 0%, rgba(249,39,39,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(204,126,126,1) 0%,rgba(249,39,39,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(204,126,126,1) 0%,rgba(249,39,39,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cc7e7e', endColorstr='#f92727',GradientType=0 );
	border-radius: 10px;
	color: #fff;
	font-family: 'gothicRegular';
	font-weight: bold;
	text-align: center;
	padding: 10px;
	margin: 10px;
	text-shadow: 1px 1px #555;
	border: 1px solid red;
}


	  /**********************/
	 /* BUTTON BACKGROUNDS */
	/**********************/
.btnGreenBG {
	background: rgb(211,237,97); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(211,237,97,1) 0%, rgba(134,214,49,1) 50%, rgba(103,193,0,1) 51%, rgba(158,203,45,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(211,237,97,1) 0%,rgba(134,214,49,1) 50%,rgba(103,193,0,1) 51%,rgba(158,203,45,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(211,237,97,1) 0%,rgba(134,214,49,1) 50%,rgba(103,193,0,1) 51%,rgba(158,203,45,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d3ed61', endColorstr='#9ecb2d',GradientType=0 );
	color: #222;
	font-size: 16px;
	font-family: 'gothicRegular';
}

.btnGreenBG:hover {
	background: rgb(230,240,163); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(230,240,163,1) 0%, rgba(210,230,56,1) 50%, rgba(195,216,37,1) 51%, rgba(219,240,67,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(230,240,163,1) 0%,rgba(210,230,56,1) 50%,rgba(195,216,37,1) 51%,rgba(219,240,67,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(230,240,163,1) 0%,rgba(210,230,56,1) 50%,rgba(195,216,37,1) 51%,rgba(219,240,67,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6f0a3', endColorstr='#dbf043',GradientType=0 );
	color: #fff;
}

.btnWhiteBG {
	background: rgb(242,246,248); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(242,246,248,1) 0%,rgba(188, 188, 188) 50%,rgba(179, 179, 179) 51%,rgba(230, 230, 230) 100%);
	background: -webkit-linear-gradient(top, rgba(242,246,248,1) 0%,rgba(188, 188, 188) 50%,rgba(179, 179, 179) 51%,rgba(230, 230, 230) 100%);
	background: linear-gradient(to bottom, rgba(242,246,248,1) 0%,rgb(188, 188, 188) 50%,rgb(179, 179, 179) 51%,rgb(230, 230, 230) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f6f8', endColorstr='#e0eff9',GradientType=0 );
	color: #222;
}

.btnWhiteBG:hover, .btnWhiteBG:focus {
	background: #f2f2f2;
	background: -moz-linear-gradient(top, #f2f2f2 0%, #ffffff 50%, #e5e5e5 51%, #fff7f7 100%);
	background: -webkit-linear-gradient(top, #f2f2f2 0%,#ffffff 50%,#e5e5e5 51%,#fff7f7 100%);
	background: linear-gradient(to bottom, #f2f2f2 0%,#ffffff 50%,#e5e5e5 51%,#fff7f7 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f2f2', endColorstr='#fff7f7',GradientType=0 );
	color: #333;
	outline: none;
}

.btnRedBG {
	background: rgb(243,197,189); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(243,197,189,1) 0%, rgba(232,108,87,1) 50%, rgba(232,86,60,1) 51%, rgba(199,34,0,1) 100%) no-repeat; /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(243,197,189,1) 0%,rgba(232,108,87,1) 50%,rgba(232,86,60,1) 51%,rgba(199,34,0,1) 100%) no-repeat; /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(243,197,189,1) 0%,rgba(232,108,87,1) 50%,rgba(232,86,60,1) 51%,rgba(199,34,0,1) 100%) no-repeat; /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3c5bd', endColorstr='#c72200',GradientType=0 ) no-repeat;
	color: #000;
}

.btnRedBG:hover {
	background: rgb(254,204,177); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(254,204,177,1) 0%, rgba(241,116,50,1) 50%, rgba(234,85,7,1) 51%, rgba(251,149,94,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(254,204,177,1) 0%,rgba(241,116,50,1) 50%,rgba(234,85,7,1) 51%,rgba(251,149,94,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(254,204,177,1) 0%,rgba(241,116,50,1) 50%,rgba(234,85,7,1) 51%,rgba(251,149,94,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#feccb1', endColorstr='#fb955e',GradientType=0 );
	color: #fff;
}

.btnBlueBG {
	background: rgb(149,215,237); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(149,215,237,1) 0%, rgba(64,193,237,1) 50%, rgba(0,172,224,1) 51%, rgba(130,202,224,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  rgba(149,215,237,1) 0%,rgba(64,193,237,1) 50%,rgba(0,172,224,1) 51%,rgba(130,202,224,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  rgba(149,215,237,1) 0%,rgba(64,193,237,1) 50%,rgba(0,172,224,1) 51%,rgba(130,202,224,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#95d7ed', endColorstr='#82cae0',GradientType=0 ); /* IE6-9 */
	color: #000;
}

.btnBlueBG:hover {
	background: rgb(235,241,246); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(235,241,246,1) 0%, rgba(171,211,238,1) 50%, rgba(137,195,235,1) 51%, rgba(213,235,251,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(235,241,246,1) 0%,rgba(171,211,238,1) 50%,rgba(137,195,235,1) 51%,rgba(213,235,251,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(235,241,246,1) 0%,rgba(171,211,238,1) 50%,rgba(137,195,235,1) 51%,rgba(213,235,251,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ebf1f6', endColorstr='#d5ebfb',GradientType=0 );
	color: #fff;
}

.btnOptionsBlue{
   width: 200px;
   border-top: 1px solid #94caff;
   background: -webkit-gradient(linear, left top, left bottom, from(#94caff), to(#0070cc)) no-repeat scroll 0% 0%;
   background: -webkit-linear-gradient(top, #94caff, #0070cc) no-repeat scroll 0% 0%;
   background: -moz-linear-gradient(top, #94caff, #0070cc) no-repeat scroll 0% 0%;
   background: -ms-linear-gradient(top, #94caff, #0070cc) no-repeat scroll 0% 0%;
   background: -o-linear-gradient(top, #94caff, #0070cc) no-repeat scroll 0% 0%;
   -webkit-border-radius: 9px;
   -moz-border-radius: 9px;
   border-radius: 9px;
   text-shadow: rgba(0,0,0,.4) 0 1px 0;
   color: #ffffff;
   font-size: 15px;
   font-family: gothicRegular;
   text-decoration: none;
   vertical-align: middle;
   box-shadow: 0px 1px 1px #B4DAFF;
}

.btnOptionsBlue:hover {
   background: #4f97e3;
   color: #ffffff;
}

.btnOptionsBlue:active {
   border-top-color: #007DCE;
   background: #007DCE;
   color: #ffffff;
}
.btnOptionsBlue:focus {
	color: #ffffff;
}

.btnOptionsGreen{
   width: 200px;
   border-top: 1px solid #02bc0e;
   background: -webkit-gradient(linear, left top, left bottom, from(#02bc0e), to(#378e00)) no-repeat scroll 0% 0%;
   background: -webkit-linear-gradient(top, #02bc0e, #378e00) no-repeat scroll 0% 0%;
   background: -moz-linear-gradient(top, #02bc0e, #378e00) no-repeat scroll 0% 0%;
   background: -ms-linear-gradient(top, #02bc0e, #378e00) no-repeat scroll 0% 0%;
   background: -o-linear-gradient(top, #02bc0e, #378e00) no-repeat scroll 0% 0%;
   -webkit-border-radius: 9px;
   -moz-border-radius: 9px;
   border-radius: 9px;
   text-shadow: rgba(0,0,0,.4) 0 1px 0;
   color: #ffffff;
   font-size: 15px;
   font-family: gothicRegular;
   text-decoration: none;
   vertical-align: middle;
   box-shadow: 0px 1px 1px #B4DAFF;
}

.btnOptionsGreen:hover {
   background: #66b335;
   color: #ffffff;
}

.btnOptionsGreen:focus {
	color: #ffffff;
}



	  /**************/
	 /* Header CSS */
	/**************/
.container {
	width: 100% !important;
}
.btnHeaders {
	font-size: 0.9em;
	font-family: 'gothicRegular';
	width: 16%;
	margin-left: 3.5%;
	text-align:center;
}
.header-logo-container {
	padding: 0px;
	height: 140px;
	background-color: #1e1d1d;
}
.header-black-bar {
    padding: 0px;
    height: 3px;
    margin-bottom: 30px;
    background: #ffffff !important;
}
.headerButtonActive {
	background: linear-gradient(to bottom, rgba(181,189,200,1) 0%,rgb(149, 149, 149) 36%,rgb(68, 68, 68) 78%,rgba(48, 48, 48, 0.8) 83%,rgb(156, 156, 156) 100%);
	border-radius: 10px;
	color: #fff;
	height: 40px;
	margin-top: -3px;
}
.header-menu-bar {
	background: #e4e4e4;
	background: -moz-linear-gradient(top, #e4e4e4 0%, #898686 93%, #605d5d 97%, #000000 100%);
	background: -webkit-linear-gradient(top, #e4e4e4 0%,#898686 93%,#605d5d 97%,#000000 100%);
	background: linear-gradient(to bottom, #e4e4e4 0%,#898686 93%,#605d5d 97%,#000000 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e4e4e4', endColorstr='#000000',GradientType=0 );
	
	height: 60px;
	margin-top: 10px;
	border-top-left-radius: 20px;
	padding-top: 12px;
	padding-left: 20px;
}
.header-modal-bar {
	background: rgb(174,205,229); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(174,205,229,1) 0%, rgba(65,179,242,1) 73%, rgba(29,132,211,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(174,205,229,1) 0%,rgba(65,179,242,1) 73%,rgba(29,132,211,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(174,205,229,1) 0%,rgba(65,179,242,1) 73%,rgba(29,132,211,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#aecde5', endColorstr='#1d84d3',GradientType=0 );
	color: #FFF;
	border-radius: 5px 5px 0px 0px;
}
.header-logo {
	padding-top: 12px; 
	width: 100%;
}
.logout-bar {
	background: rgba(255, 255, 255, 0.78);
	border-radius: 5px;
	width: 240px;
	height: 25px;
	float: right;
	margin-top: -5px;
}
.welcome-msg {
	color: #fff;
	float: right;
	margin-top: 25px;
	padding-right: 13px;
	font-size: 18px;
	font-family: 'gothicRegular';
}
.header-title {
	color: #FFF;
	line-height: 1.9;
	margin: 0px 0px 0px 10px;
}
.header-change-pass {
	color: #222;
	cursor: pointer;
	float: right;
	font-size: 12px;
	line-height: 24px;
}
.header-change-logout {
	color: #222;
	cursor: pointer;
	float: right;
	font-size: 12px;
	line-height: 24px;
}
#button-sytle .btn-default {
	width: 140px;
	height: 28px;
	font-size: 12px;
	border: 1px solid #000;
	color: #000;
	background-color: #FFF;
}
#button-sytle .btn-default:hover {
	width: 140px;
	height: 28px;
	font-size: 12px;
	border: 1px solid #000;
	color: #FFF;
	background-color: #000;
}
#button-sytle .btn-default:active, .active {
	width: 140px;
	height: 28px;
	font-size: 12px;
	font-weight: bold;
	border: 1px solid #000;
	color: #FFF;
	background-color: #000;
}


	  /*************/
	 /* FOOTER CSS*/
	/*************/
footer {
	background: rgba(0, 0, 0, 0.45) none repeat scroll 0% 0%;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 60px;
    width: 100%;
    padding-top: 20px;
}
.footer-text {
	color: #FFF;
	font-weight: bold;
	font-size: 18px;
	font-family: gothicRegular;
}
.footer-icons {
	width: 32px;
	height: 32px;
}
.copy-right {
	color: #FFF;
	font-family: 'gothicRegular';
	font-size: 12px;
}


