
/* Default Body Style
   ================================================================================================== */
* {
	margin: 0;
	padding: 0;
}
body {
	/* font-family :Franklin Gothic Book; */
	font-family :Arial;
	background-size: 90% auto;
	font-size: 100%;
	line-height:1.5;
}

/* Top Navigation Style
   ================================================================================================== */
#nav-top {
	height: 70px;
	overflow: hidden;
}
#nav-top ul {
	list-style-type: none;
	text-align: right;
	cursor: pointer;
}
#nav-top ul li a{
	text-transform: uppercase;
	text-decoration: none;
	line-height: 70px;
	padding: 35px 30px;
	color: #000;
}
#nav-top a:link{
	transition: 0.40s;
	color: #000;
}
#nav-top a:hover{
	background-color: #123455;
	transition: 0.40s;
	color: #fff;
}
#logo{
	float: left;
	margin-left: 20px;
}
#logo img{
	height: 70px;
	width:  auto;
}
#red {
	background-color: #8B0000;
	border: none;
	height: 7px;
}
#blue {
	background-color: #123455;
	border: none;
	height: 10px;
	margin-bottom: 30px;
}

/* Containers Style
   ================================================================================================== */
#wrapper {
	margin:0 auto;
	width:80%;
	padding:20px;
}
.box {
	width: 25%;
	left: 50%;
	height: auto;
	transform: translate(-50%, 50%);
	position:absolute;
}
.box.clear {
	overflow: auto;
}
.img-box {
    text-align: center;
    margin-bottom: 15px;
}
.input-box {
	position: relative;
	margin-bottom: 15px;
}
#main-content {
	width: 100%;
	margin-top: 30px;
	position: relative;
}
.content {
	padding: 20px 30px 0 30px;
	box-sizing: border-box;
}

/* Footer Style
   ================================================================================================== */
.footer{
	margin: 10px 0;
	text-align:center;
	padding: 12px 20px 13px 20px;
	height:20px;

  height: 50px;
  text-align:center;
	padding: 12px 20px 13px 20px;
}

/* Login / Index Page Style
   ================================================================================================== */
.img-box img {
	width: 100%;
	height: auto;
}
.box label {
	pointer-events: none;
	position: absolute;
	transition: 0.5s;
	padding: 10px 0;
	font-size: 16px;
	top: 0;
	left: 0;
}
.box input:focus ~ label,
.box input:valid ~ label {
    color: #120b5c;
    font-size: 12px;
    top: -20px;
    left: 0;
}
input[type=text], input[type=password] { 
    display: inline-block;
    padding: 10px 0;
    width: 100%;
    outline: none;
    border: none;
    border-bottom: 1px solid #000000;
    background: transparent;
    font-size: 16px;
}
#btn_login {
	width:30%;
	float: right;
	text-decoration:none;
	border-radius: 5px;
	margin-top: 5%;
	padding: 5px;
	background-color: #fff;
    border: 1px solid #120b5c;
}
#btn_login:hover {
	background-color:#120b5c;
	color:#FFF;
}
.text-center {
	text-align: center;
}
.bg-warning {
	background-color: #FF9999; 
}

/* Registration Page Style 
   ================================================================================================== */

/** 
 * Progress-bar style:
 * REF:  Multi Step Form with Progress Bar using jQuery and CSS3. (2014). Thecodeplayer.com. 
 * Retrieved from http://thecodeplayer.com/walkthrough/jquery-multi-step-form-with-progress-bar
 */
#progressbar {
	counter-reset: step;
	height: 70px;
}
#progressbar li {
	list-style-type: none;
	width:25%;
	position: relative;
	text-align: center;
	float: left;
}
#progressbar li:before {
	content: counter(step);
	counter-increment: step;
	display: block;
	text-align: center;
	border: none;
	border-radius: 50%;
	margin: 0 auto 10px auto;
	width: 30px;
	height: 30px;
	line-height: 30px;
	color: #fff;
	background: black;
}
/*line connector*/
#progressbar li:after {
	content: '';
	width: 100%;
	height: 3px;
	background: black;
	position: absolute;
	left: -50%;
	top: 13px;
	z-index: -1; 
}
/*line connector not needed before the first step*/
#progressbar li:first-child:after {
	content: none; 
}
/*marking active/completed steps green*/
#progressbar li.active:before,  #progressbar li.active:after{
	background: green;
	color: white;
}

/** 
 * Content In Registration Page Style:
 * REF:  Multi Step Form with Progress Bar using jQuery and CSS3. (2014). Thecodeplayer.com. 
 * Retrieved from http://thecodeplayer.com/walkthrough/jquery-multi-step-form-with-progress-bar
 */
/*Hide all except the first fieldset*/
#main-content fieldset:not(:first-of-type) {
	display: none;
	overflow: hidden; 
}
#main-content fieldset{
	border-radius: 5px;
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
	background: white;
	border: 0 none;
	padding: 20px 40px 20px 40px;
	position: relative; /*stacking fieldsets above each other*/
}
.content ol {
	padding-left: 50px;
}
.content.color {
	color: #3c763d; 
  	background: #dff0d8; 
  	border: 1px solid #3c763d;
  	border-radius: 5px;
  	margin-bottom: 20px;
  	padding-bottom: 30px;
}
#main-content .action-button{
	width: 100px;
	background: #123455;
	font-weight: bold;
	color: white;
	border: 0 none;
	border-radius: 1px;
	cursor: pointer;
	padding: 10px 5px;
	margin: 10px 5px;
	float: right;
}
/*Button In Registration Page Style*/
#main-content .action-button:hover, #main-content .action-button:focus{
	box-shadow: 0 0 0 2px white, 0 0 0 3px #123455;
}
#main-content .sub-btn {
	width: 100px;
	background: #123455;
	font-weight: bold;
	color: white;
	border: 0 none;
	border-radius: 1px;
	cursor: pointer;
	margin: 10px 5px;
	padding: 10px 5px;
	float: right;
}
#main-content .view-btn {
	width: 250px;
	background: #123455;
	font-weight: bold;
	color: white;
	border: 0 none;
	border-radius: 1px;
	cursor: pointer;
	margin: 10px 5px;
	padding: 10px 5px;
	float: left;
}
#main-content .sub-btn:hover, #main-content .sub-btn:focus,
#main-content .view-btn:hover, #main-content .view-btn:focus  {
	box-shadow: 0 0 0 2px white, 0 0 0 3px #123455;
}
fieldset label {
    display: inline-block;
	pointer-events: none;
	margin-right:0.5em;
  	font-weight:bold;
  	box-sizing: border-box;
}
fieldset input[type=text], select, textarea {
    width: 100%;
    padding: 3px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 5px;
    font-size: 14px;
}
.title h1 {
	font-size: 20px;
	text-transform: uppercase;
	background-color: #123455;
	color: #fff;
	padding: 5px 0px 2px 30px;
	margin-top: 30px;
}
h2 {
	font-size: 20px;
	text-transform: uppercase;
}

/** 
 * To make the input lable and text next to each other:
 * REF:  CSS Forms. (2018). W3schools.com.
 * Retrieved from https://www.w3schools.com/css/css_form.asp
 */
.col-25 {
    float: left;
    width: 25%;
    margin-top: 6px;
}
.col-75 {
    float: left;
    width: 75%;
    margin-top: 6px;
}
/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}
table {
    border-collapse: collapse;
    width: 70%;
}
th {
    background-color: #f2f2f2;
}
th, td {
    padding: 7px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}
/* Display error message style */
.input-error { 
    border-color: red; 
}
.content .print-btn{
	width: 100px;
	background: #123455;
	font-weight: bold;
	color: white;
	border: 0 none;
	border-radius: 1px;
	cursor: pointer;
	margin: 10px 5px;
	padding: 8px 24px;
	float: right;
}
.content .print-btn:hover, .content .print-btn:focus {
	box-shadow: 0 0 0 2px white, 0 0 0 3px #123455;
}

/* Modal / Dialog Box Style
   ================================================================================================== */

/* The Modal (background) */
.dialog {
	display:none; /*hidden by default*/
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

/* Modal Content Box */
.dialog-content {
    background-color: #fefefe;
    margin: 3% auto 3% auto;
    border: 1px solid #888;
    width: 40%; 
	padding-bottom: 30px;
}

/* Center the image and position the close button */
.dialog-container {
    text-align: center;
    margin: 24px 0 12px 0;
    position: relative;
}

.gownpic {
    width: auto;
	height: 300px;
    text-align: center;
}

/* The Close Button (x) */
.close {
    position: absolute;
    right: 10px;
    bottom: 23px;
    color: #000;
    font-size: 35px;
    font-weight: bold;
}
.close:hover,
.close:focus {
    color: red;
    cursor: pointer;
}

/* Media Queries for Print Style
   ================================================================================================== */
@media screen {
   #printarea {display: none;}

}

@media print {
	
	header, #wrapper, .content {
		display:none;
	}
	

	#printarea {
		padding:0 10px 0 10px;
	}
	
	.prtinfo {
		margin: 10px 0 10px 0;
	}	
	
	.prtinfo table {
	width: 100%;
	font-size: 12px;
	border: none;
		margin: 0 0 15px 0;
	}
		.prtinfo table tr td {
		border: none;
		margin: 0 0 0 0;
		padding: 0 0 0 0;
	}		.prtinfo table td:nth-child(1) {
		width: 15%;
	}
	
	.prtinfo p{
		font-size: 12px;
	}	

	.prttitle h1 {
		font-size: 14px;
		text-transform: uppercase;
		padding: 2px 0 2px 0;
		background-color: #DCDCDC;
		color: #000000;
		text-align:center;
	}

   

   .prtinfo .prtsignboxx table {
		border:1px solid #000;
	}  
   .prtinfo .prtsignboxx table td {
		width: 10%;
		border:1px solid #000;
	}   
	.prtinfo .prtsignboxx table td p {
		margin: 0 0 3px 5px;
		font-size: 10px;
	}
   .pagebreak {
        clear: both;
        page-break-after: always;
    }
	
	.prtinfoR p{
		margin: 5px 0 5px 0;
		font-size: 10px;
	}
	
	.prtinfoR ol {
		padding: 0px 0 5px 20px;
		margin: 0px 0 5px 0;
		font-size: 10px;
	}
	
		.prtinfoR ol li {
		padding: 0 0 10px 5px;
		font-size: 10px;
	}		
	
   /*#printlogo {display: block; margin-top: 0px;}*/
}


/* Media Queries For Phone Style
   ================================================================================================== */
@media only screen and (min-width:150px) and (max-width:480px) {
	body {
		font-size: 14px;
		line-height:1.5;
	}
	#wrapper {
		text-align: left;
		width:90%;
	}
	.box {
		width: 70%;
	}
	#btn_login {
		width:100%;
		border-radius: 0px;
		margin-top: 5%;
		padding: 10px;
		background-color: #fff;
	    border: 1px solid #120b5c;
		text-decoration:none;
		float: right;
	}
	#nav-top {
		height: 55px;
		overflow: hidden;
	}
	#nav-top ul li a{
		line-height: 55px;
		padding: 35px 20px;
		text-decoration: none;
		text-transform: uppercase;
		color: #000;
	}
	#logo{
		float: left;
		margin-left: 15px;
	}
	#logo img{
		width:  auto;
		height: 55px;
	}
	#main-content {
		width: 100%;
		margin-top: 30px;
		position: relative;
	}
	#main-content fieldset{
		padding: 0 15px 10px 15px;
	}
	#main-content .view-btn {
		width: 80%;
	}
	.content {
		padding: 15px 18px 0 18px;
		text-align:justify;
	}
	.title h1 {
		font-size: 15px;
		padding: 6px 0px 6px 15px;
	}
	.content ol {
		padding-left: 30px;
		text-align:left;
	}
	table {
	    width: 100%;
	}
	th, td {
	    padding: 7px;
	}
	.col-25, .col-75, input[type=submit] {
        width: 100%;
        margin-top: 0;
    }
	#main-content .action-button{
		width: 98%;
		padding: 10px 5px;
		margin: 10px 5px 5px 5px;
		float: none;
	}
	#main-content .sub-btn {
		width: 98%;
		margin: 10px 5px 5px 5px;
		padding: 10px 5px;
		float: none;
	}
	fieldset input[type=text], select, textarea {
	    width: 100%;
	    border-radius: 2px;
	    margin-top: 0;
	    margin-bottom: 10px;
	    font-size: 12px;
	}
	.row.radio{
		 margin-top: 0;
		 margin-bottom: 15px;
	}
	.content .print-btn{
		width: 100%;
		margin: 0;
		float: none;
	}
}


