a:any-link {
	text-decoration:none;
}

a:-moz-any-link {
	text-decoration:none;
}

a:-webkit-any-link {
	text-decoration:none;
}

@-webkit-keyframes glowbutton {
  from {
    background-color: #aaa;
  }
  50% {
    background-color: #888;
  }
  to {
    background-color: #aaa;
  }
}
@-moz-keyframes glowbutton {
  from {
    background-color: #aaa;
  }
  50% {
    background-color: #888;
  }
  to {
    background-color: #aaa;
  }
}
@-o-keyframes glowbutton {
  from {
    background-color: #aaa;
  }
  50% {
    background-color: #888;
  }
  to {
    background-color: #aaa;
  }
}
@keyframes glowbutton {
  from {
    background-color: #aaa;
  }
  50% {
    background-color: #888;
  }
  to {
    background-color: #aaa;
  }
}

@-webkit-keyframes glowbutton-grey {
  from {
    background-color: #444;
  }
  50% {
    background-color: #6ca079;
  }
  to {
    background-color: #444;
  }
}
@-moz-keyframes glowbutton-grey {
  from {
    background-color: #444;
  }
  50% {
    background-color: #6ca079;
  }
  to {
    background-color: #444;
  }
}
@-o-keyframes glowbutton-grey {
  from {
    background-color: #444;
  }
  50% {
    background-color: #6ca079;
  }
  to {
    background-color: #444;
  }
}
@keyframes glowbutton-grey {
  from {
    background-color: #444;
  }
  50% {
    background-color: #6ca079;
  }
  to {
    background-color: #444;
  }
}

html {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	font-family: 'Lato', Arial, Helvetica, sans-serif !important;
    -webkit-font-smoothing: antialiased;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
	margin:0;
	background: #ececec;
}

ul {
	margin:0;
	padding:0;
}

li {
	list-style:none;
}

p {
	line-height: 1.5em;
}


a {
	color:#000000;
}

a :hover {
	color:#555555;
}

li:not(.megamenu_button) a:focus {
	/* background-color: #6ca079 !important; */
}
.hiddenspanforlink {
  height: 1px;
  width: 1px;
  position: absolute;
  overflow: hidden;
  top: -10px;
}

a img {
    border: 0;
}

h1 {
	color:#444;
}

h2 {
	font-size:1.875em;
	font-weight:bold !important;
	color:#444;
}

h2 a {
	color:#444;
}

h2 a:hover, h2 a:focus {
	color:#6ca079;
}

h3 {
	font-size:1.125em;
	font-weight:bold;
	color:#444 !important;
	background:none !important;
}

h4 {
	font-size:1em;
	font-weight:bold;
	color:#444 !important;
	background:none !important;
	margin:8px 0;
	text-decoration:underline;
}

hr {
	border: 0;
	width: 95%;
	margin:20px auto;
	background-color:#aaa;
	height:1px;
	float:left;
}


/* hr */

hr.spacer {
	position:static;
	margin: 50px 0 35px 0;
	float:left;
	width:100%;
	background-color:#fff;
	border:#aaa 1px dashed;
	border-style: none none dashed;
}

hr.fancy-line { 
    border: 0; 
    height: 1px;
    position: relative;
}
hr.fancy-line:before {
    top: -0.5em;
    height: 1em;
}
hr.fancy-line:after {
    content:'';
    height: 0.5em;   /* half the height of :before */
    top: 1px;        /* height of hr*/
}

hr.fancy-line:before, hr.fancy-line:after {
    content: '';
    position: absolute;
    width: 100%;
}

hr.fancy-line, hr.fancy-line:before {
    background: -moz-radial-gradient(center, ellipse cover, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 75%);
    background: -webkit-gradient(radial, center center, 0px, center center, 75%, color-stop(0%,rgba(0,0,0,0.1)), color-stop(75%,rgba(0,0,0,0)));
    background: -webkit-radial-gradient(center, ellipse cover, rgba(0,0,0,0.1) 0%,rgba(0,0,0,0) 75%);
    background: -o-radial-gradient(center, ellipse cover, rgba(0,0,0,0.1) 0%,rgba(0,0,0,0) 75%);
    background: -ms-radial-gradient(center, ellipse cover, rgba(0,0,0,0.1) 0%,rgba(0,0,0,0) 75%);
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.1) 0%,rgba(0,0,0,0) 75%);
}

input[type="password"],input[type="text"],textarea {
	padding:10px;
	box-sizing: border-box;
	width:100%;
	max-width :100%;
	border-radius:3px;
	resize:none;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border: 2px solid #aaa;
	margin:10px 0;
	cursor:text;
}

select {
	width:100%;
	max-width: 100%;
	padding:10px;
	border: 2px solid #aaa;
}

select#month, select#day, select#year {
	width:auto !important;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border: 2px solid #aaa;
	margin:10px 0;
	/* cursor:pointer; */
}
	
select:hover {
	border: 2px solid #888 !important;
}

h3.label {
	float: left;
	margin:20px 20px 20px 5px;
}

section {
	margin-bottom:30px;
}

/* =============================================================================
   Clearfix
   ========================================================================== */
.cf:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clearfix{clear:both}

.btn, input[type=submit] {
	background-color:#555;
	width:auto !important;
	text-indent:0px;
	border:1px solid #dcdcdc;
	display:inline-block;
	color:#fff !important;
	font-family:Arial;
	font-size:0.9375em;
	font-weight:bold;
	font-style:normal;
	padding:15px 26px;
	text-shadow:none;
	text-decoration:none !important;
	text-align:center;
	cursor:pointer;
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
	border-radius:3px;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
}

.slider-btn2 {
	background-color:#444;
	width:auto !important;
	text-indent:0px;
	display:inline-block;
	color:#fff;
	margin-right:10px;
	font-family:Arial;
	font-size:0.9375em;
	font-weight:bold;
	font-style:normal;
	text-shadow:none;
	padding:15px 30px;
	text-decoration:none;
	text-align:center;
	cursor:pointer;
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
	border-radius:3px;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
}

.slider-btn2:hover{
	background-color:#6ca079;
}

.gobtn {
	background-color:#555;
	text-indent:0px;
	border:0px solid #dcdcdc;
	display:inline-block;
	color:#fff;
	font-family:Arial;
	font-size:11px;
	font-weight:bold;
	font-style:normal;
	margin-left:10px;
	width:65px;
	height:65px;
	text-decoration:none;
	text-align:center;
	cursor:pointer;
	-webkit-border-radius:50% !important;
	-moz-border-radius:50% !important;
	border-radius:50% !important;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.btn:hover, .btn:focus, .gobtn:hover, .gobtn:focus {
	background-color: #888 !important;
	-webkit-animation: glowbutton 1.618s infinite;
	-moz-animation: glowbutton 1.618s infinite;
	-o-animation: glowbutton 1.618s infinite;
	animation: glowbutton 1.618s infinite;
}

.btn:active, .gobtn:active, .slider-btn2:active {
	position:relative;
	top:1px;
	left:1px;
}

.summary-btn {
	margin-bottom:30px;
	width:49% !important;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
}

.alert1 {
	background:#444;
	color:#fff;
}

.alert1:hover {
	background:red !important;
}

.compact {
	padding:5px 7px;
	font-size:0.75em;
	margin:10px 0;
}

.large {
	padding: 20px 38px;
	font-size: 0.875em;
	margin: 0 auto;
}

.muted {
	color:#777 !important;
}

.container {	
	margin: 0 auto;
	width: 100%;
}

.containerHome {	
	margin: 0 auto;
	width: 80%;
}

.content {
	min-height:400px;
	background: #FFF;
	padding: 5px 15px;
	/* border: 5px solid #ccc; */
	border: 5px solid #ccc;  /* Added by jignesh joshi */
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
}

.content h1 {
	font-size:3.125em !important;
}

.content h2 {
	font-size:1.125em !important;
	/* color:#444; */
	color: #444;  /* Changes by jignesh joshi */
	margin-top: 10px;
	padding: 0;
}

.faq-anchor-list h2.sub-heading {
	font-size:1.125em;
	color:#444;
	margin-top: 10px;
}

.faq-anchor-list .sub-heading-desc {
	color:#222;
	line-height:1em;
	margin-bottom:5px;
	border:0;
}

.content .masthead h1, .content .masthead h2 {
	text-align:center;
}

.content-inner {

}

.content-inner .top {
	overflow:auto;
	margin-bottom: 40px;
}

.sidebar {
	width:33%;
	overflow:auto;
	float:left;
}

.shifted {
	position:relative;
	top:10px;
	right:-10px;
}

.col-left {
	width:65%;
	float:left;
	margin-right:10px;
}

.col-right {
	width:65%;
	float:right;
	margin-left:10px;
}

.full-width {
	width:100%;
}

.edit a {
	background: #444;
	border-top: solid 5px #444;
	position:relative;
	padding: 0 10px 10px 10px;
	color: #FFF;
	text-decoration: none;
	font-weight: bold;
	border-top-right-radius: 0;
	-moz-border-top-right-radius: 0;
	-webkit-border-top-right-radius: 0;
	border-top-left-radius: 0;
	-moz-border-top-left-radius: 0;
	-webkit-border-top-left-radius: 0;
	border-bottom-right-radius: 10px;
	-moz-border-bottom-right-radius: 10px;
	-webkit-border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
	-moz-border-bottom-left-radius: 10px;
	-webkit-border-bottom-left-radius: 10px;
	-webkit-transition: all .05s ease-in-out;
	-moz-transition: all .05s ease-in-out;
	-o-transition: all .05s ease-in-out;
	transition: all .05s ease-in-out;
}

.edit a:hover {
	background:green;
	padding-top:10px;
	top:50px !important;
}

.editDisabled a {
	background: #555;
	position:relative;
	padding: 0 10px 10px 10px;
	color: #FFF;
	text-decoration: none;
	font-weight: bold;
	border-top-right-radius: 0;
	-moz-border-top-right-radius: 0;
	-webkit-border-top-right-radius: 0;
	border-top-left-radius: 0;
	-moz-border-top-left-radius: 0;
	-webkit-border-top-left-radius: 0;
	border-bottom-right-radius: 10px;
	-moz-border-bottom-right-radius: 10px;
	-webkit-border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
	-moz-border-bottom-left-radius: 10px;
	-webkit-border-bottom-left-radius: 10px;
	-webkit-transition: all .05s ease-in-out;
	-moz-transition: all .05s ease-in-out;
	-o-transition: all .05s ease-in-out;
	transition: all .05s ease-in-out;
}

.relative {
	position:relative;
}
.logo{
	display: flex;
	align-items: center;
}
.logo img{
	
}
.logo > *{
	padding: 5px;
}
.logo-subbanner{
	float: right;
	line-height: 1em;
}

.logo img:hover {
	opacity:0.8;
}

.login {
	float: right;
	/* margin-top: -10px; */
	/* margin-right:-91px; */
}

.login table {
	border: none;
	width: 100%;
	margin-top: -10px;
}

.login table th {
	font-size:12px;
	color:#444;
	font-weight:bold;
	text-align:right;
}

.login table td {
	color:#444;
	padding:2px 4px 2px 15px;
	font-size:12px !important;
}

.login input[type="password"], .login input[type="text"] {
	width:100% !important;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border: 2px solid #aaa;
	margin: 0;
	padding: 7px;
	background:#fff;
}

.login input[type="password"]:focus,.login input[type="text"]:focus {
	background:#fff;
}

.login .div-table {
	display: table;
}

.login .div-table span, .login .div-table input {
	display: table-cell;
	min-width: 70px;
	padding-right: 10px;
	font-size: 12px;
	font-weight: bold;
}

.login .login-table-div {
	float: left;
	line-height: 32px;
}

.login .login-btn-div {
	float: right;
	padding-right: 10px;
}

#signin {
	margin-top: 18px;
}

.header {
	width: 100%;
	background: #F7F8F3; /*#FEBF00;*/
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.skip-to-main {
	display: none;
	font-size: 13px;
	font-weight: bold;
	background-color: #fff;
}

.skip-to-main a {
	text-decoration: none !important;
}

.test-site {
	float:left !important;
}

.topnav {
	width: 100%;
 	background-color: #F7F8F3; /*#FFD75E;*/
	/* margin-bottom:10px; */
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}    
.topnav ul {
	width:auto;
	font-size: 0.825em;
	color:black;
	float:right;
}
.topnav .quick-links{
	font-size: 0.825em;
}
.topnav .quick-links img{
	display: none;
}
.topnav .quick-links span{
	vertical-align: top;
}
.topnav li {
	float:left;
	line-height: 1em;
}
.topnav li a{
	display: inline-block;
	padding:7px 10px;
}
.topnav a, .topnav .quick-links a,
.topnav a:visited, .topnav .quick-links a:visited {
	color:black;
	text-decoration:none;
}
.topnav .quick-links li:hover a {
	color: #66412f;
}
.topnav li.font-resizer  a{
	padding: 4px;
}
.topnav a:hover, .undertopnav a:hover {
	/* background-color:#bbb; */
	text-decoration:none;
}
.topnav li:hover{
	background-color: #83C0FD;
}
.topnav li.header-note span{
	display: block;
	padding: 7px;
}
.topnav li.header-note:hover{
	background: transparent;
}
.topnav li:hover a{
	color: #343331;
}
.active {
	font-weight:bold;
}

.undernav {
	width: 100%;
	font-size:15px;
	background-color:#fff;
	padding: 15px 10px 10px 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.undernav a {
	color:#000;
	font-size:0.825em;
	text-decoration:none;
}

.catchment {
	font-size:1.125em;
	font-weight:bold;
	margin: 0;
	text-align:center;
	color:#aaa;
	text-shadow:1px 1px rgba(255,255,255,0.4);
}

.breadcrumbs {
	display: inline;
	font-size:15px;
	color: #000;
	/* height: 18px; */
	float: left;
	word-break: break-word;
	/* padding: 0 10px; */
}

.breadcrumbs li{
	float:left;
	padding-right:5px;
	font-weight:normal;
	font-size:0.8125em;
}

.breadcrumbs a {
	color:#444;
	font-weight:bold;
}	

.breadcrumbs a:hover {
	text-decoration:underline;
}

div.breadcrumbs li.active {
	color:#000;
	font-size:15px;
	font-weight:bold;
}

.nav {
	height: 80px;
	background-color:whitesmoke;
}

.nav ul {
	padding:10px;
}

.nav li {
	float:left;
	padding:20px 20px;
}

.nav a {
	text-decoration:none;
	padding:30px;
}

.nav a:hover {
	background-color:#CCCCCC;
}

.page-title {
	margin:25px 0px;
}
.masthead {
	text-align: center;
}

div.masthead, .tab-view {
	display:none;
}

.masthead span {
	padding-top: 10px;
	display: block;
}

.masthead p a {
	color:#444;
}

.masthead p a:active{
	color:#fff;
	background:#444;
}

.masthead h1 {
	font-size: 2.8125em;
	margin: 50px 0 25px 0;
}

.masthead p {
	line-height:1.5625em;
}

.processflow {
	height:1000px;
	text-align:left;
}

.panel {
	margin-top:50px;
}

.row {
	overflow:auto;
	text-align:center !important;
	background: #444;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	padding: 20px;
	color: #FFF;
}

.col p {
	font-size:0.75em;
}

.col-2 {
	float:left;
	width:50%;
	padding: 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.col-3-4 {
	float:left;
	width:70%;
	padding: 0 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.col-3 {
	float:left;
	width:33%;
	padding: 1%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.col-3 h2 {
	font-size:1.15em;
}

.col-3.ctr{
	background:#efefef;
}

.col-3-4 h2 {
	color:#444;
	margin-top:0;
}

.row h2 {
	color:#fff;
	margin:0;
}

.col-3-4-inner {
	padding-bottom:32px;
}

.col-3-inner {
	float:left;
	width:33%;
	padding: 10px 20px;
	line-height: 1.25em;
	text-align: left;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.col-4 {
	float:left;
	width: 24%;
	padding-left: 10px;
	line-height: 1.25em;
	text-align: left;
}

.footer {
	background-color: #444;
	color:#fff;
	padding: 50px;
	margin-top: 50px;
}

.footer h1, .footer h2, .footer h3 {
	color:#eee;
	border-bottom: solid 1px #555;
	padding-bottom: 20px;
}

.footer p {
	color:#aaa;
}

.footer-content{
	background: #281859;
	color: #fff;
	padding: 10px;
}

.footer-content .footer-links li {
	display: inline-block;
	padding:0 7px;
	color:#fff;
}

.footer-content a {
	color:#fff !important;
	text-decoration:none;
}

.footer-content a:hover {
	text-decoration:underline;
}
.footer-content .credits{
	text-align: right;
}
.footer-icons .flex-viewport .slides {
	width: 100%!important;
	text-align: center;
}
.footer-icons .flex-viewport .slides li {
	 display: inline-block!important; 
	*display: inline!important; 
	float: none!important;
	vertical-align: middle;
}
#footerslider .flexslider{
	white-space: nowrap;
}
.footer-icons .flex-viewport img{
	max-height: 100px;
	max-width: 220px !important;
	background-color: white;
	vertical-align: middle;
}
#footerslider .flexslider{
	margin: 20px;
	height: 120px;
}
#footerslider .flex-viewport{
	padding: 10px;
	height : 120px !important
}
#footerslider .flex-direction-nav a{
    white-space: initial;
}
/* Form Datepicker Calender */

input[type="text"].calendar {
	background-image: url(/portal/images/cas/calender-icon_wu_dab782a38bf66badf928bb71cc597f6c.png);
	background-repeat: no-repeat;
	background-position: 95% center;
}

input[type="text"].calendar:hover {
	background-image: url(/portal/images/cas/calender-icon-over_wu_61683684f2ae55d42c35a033b202fe58.png);
	background-repeat: no-repeat;
	background-position: 95% center;
}

.ui-datepicker {
	width:200px !important;
}

.ui-datepicker table {
	font-size: 10px !important;
}

.ui-widget {
	font-size:10px /*{fsDefault}; */ !important;
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight {
	border-color:#6ca079 !important;
	background:#BFDDFF !important;
}

.ui-datepicker-next, .ui-datepicker-prev, .ui-datepicker-year {
	cursor:pointer;
}

select.ui-datepicker-year {
	width: 37% !important;
	padding: 1px !important;
	margin-left: 15px !important;
}

/* Colors */
.cas-blue {
	color:#444 !important;
}

/* Page Specific CSS */

/* Registration */
.regsteps {
	overflow:auto;
	margin-bottom:20px;
}

.step {
	width: 180px;
	min-height: 75px;
	background: #ddd;
	color: #555555;
	padding: 10px;
	font-weight: bold;
	font-size: 1.125em;
	margin-right: 10px;
	margin-bottom: 10px;
	/* float: left; */
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	display: inline-block;
	vertical-align: top;
	text-align: center;
}

.stepcomplete {
	width: 200px;
	background: #444;
	color: #fff;
	padding: 15px 0px 10px 20px;
	font-weight: bold;
	font-size: 1.125em;
	margin-right:20px;
	float: left;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
}

li.step.active{
	background: #444;
	color: #fff;
}

li.step.mini {
	width: 80px;
	height: 74px;
	background: #ddd;
	color: #ccc;
	padding: 22px;
	font-weight: bold;
	font-size: 1.25em;
	margin-right:0;
	float: left;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
}

li.step img {
	max-width:36px;
}

li.tile.active {
	background:#444;
	color:#fff;
}

li.tile.active h2 {
	color:#fff;
	background:none;
	border:none;
}

li.tile h2 {
	font-size:1.125em;
	color:#555555;
	background:none;
	border:none;
}

li.tile p {
	font-size:0.75em;
	font-weight:normal;
}

.tile {
	width:100%;
	background: #ddd;
	color: #555555;
	padding: 10px 10px 10px 20px;
	font-weight: bold;
	font-size: 1.25em;
	margin-bottom: 20px;
	float:right;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
}

.pagemessage {
	background: #DDDDDD;
	color: #555555;
	padding: 10px 10px 10px 20px;
	font-weight: bold;
	font-size: 1.25em;
	margin-bottom: 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
}

.pagemessage .alertmsg {
	font-size: 0.7em;
}

.addrmessage {
	min-width: 100px;
	max-width: 440px;
	min-height:100px;
	display: none;
	background: #DDDDDD;
	color: #555555;
	padding: 10px 10px 10px 10px;
	font-weight: bold;
	font-size: 1em;
	margin-left: 30px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
}

.addrmessageLarge {
	min-width: 100px;
	min-height:100px;
	display: none;
	background: #DDDDDD;
	color: #555555;
	padding: 10px 10px 10px 10px;
	font-weight: bold;
	font-size: 1.3em;
	margin: 30px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
}

/* Address table */

table.its {
	width: 98%;
	margin: 20px auto;
}

.its th {
	padding:10px;
}

.its tr.top {
	background:#444;
	color:#fff;
	font-weight:bold;
	font-size:1.125em;
	text-align:left;
}

.its tr.top td {
	border:0;
}

.its td {
	padding:10px;
}

.its tbody tr.even{
	background:#fafafa !important;
}

.its tbody tr input[type="radio"]{
	text-align:center;
	width:100%;
}

.its tbody tr:hover {
	background:#ccc !important;
	color:#fff;
	cursor:pointer;
}


/* For Task Management */

.contentInnerTable {
	background: #FFF;
	padding: 5px 15px 0px 10px;
	border: 5px solid #ccc;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
}


/* Registration Options */

.btn-wrap {
	background:#f7f7f7;
	border:1px solid #d1d1d1;
	border-radius:6px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	padding:10px 0 20px;
	text-align:center;
	position:relative;
	width:100%;
	min-height:19em;
	}

.btn-wrap h3 {
	background:#444 !important;
	text-shadow:1px 1px 1px #052f5e;
	padding:20px 0;
	color:#fff !important;
	text-transform:uppercase;
}

.btn-wrap p {
	padding:10px;
}

.content p.masthead {clear:both;}

.btn-wrap .btn {
	position:absolute;
	bottom:30px;
	width:75%!important;
	padding:20px 0;
	margin:0 auto;
    right:0;
    left:0;
}

.btn-wrap .btn:active {
	top:auto;
}


/* My-Services */

/* this link span over over the top of any myservices box to dispense with the need to have nested A tags (which IE 8 doesnt understand)*/
.my-service-link { 
  position:absolute; 
  width:100%;
  height:100%;
  top:0;
  left: 0;

  /* edit: added z-index */
  z-index: 1;

  /* edit: fixes overlap error in IE7/8, 
     make sure you have an empty gif */
  background-image: url('/portal/images/empty_wu_2a9f0e7247064edc8f35f98de0cd76f4.gif');
}

.quick-search {
	border-bottom:1px solid #aaa;
	padding-bottom:20px;
	margin-bottom:40px;
}

.my-service {
	width:443px;
	position:relative;
	padding:10px;
	margin: 8px;
	float:left;
	border:solid 1px #aaa;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	 -webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.my-service .thumb, .my-service .thumb img {
	background:#efefef;
	width:5.625em;
	height:5.625em;
	float:left;
	margin:0 10px 0 0;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.my-service .service-desc {
	font-size:0.75em;
}

.my-service h2 {
	margin:0 0 3px 0;
}

.my-service .thumb p {
	color:#ccc;
	font-size:0.625em;
	padding: 38px 0 0 25px;
	margin:0;
}

.inactive:hover {
	border:solid 1px #888;
}

.inactive h2 {
	color:#ccc !important;
}

.inactive .service-desc {
	color:#ccc !important;
}

.inactive .thumb img {
	opacity:0.3;
	filter:alpha(opacity=30);
	filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 3.5+ */
    filter: gray; /* IE6-9 */
    -webkit-filter: grayscale(100%); /* Chrome 19+ & Safari 6+ */

}

.my-service:hover .icons {
	visibility:visible;
}

.icons {
	position:absolute;
	visibility:hidden;
	top:8px;
	right:5px;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.icons img {
	width:15px;
	margin-right:3px;
	opacity:0.3;
	filter:alpha(opacity=30);
}

.icons img:hover {
	opacity:6;
	filter:alpha(opacity=60);
}

/* Services */

.sub-heading {
	margin-bottom:2px;
	width:100%;
	float:left;
	background-color:#fff;
	border:none;
}

.sub-heading-desc {
	text-indent: 1px;
	font-size:0.75em;
	border-bottom:dashed 1px #aaa;
	margin-bottom:20px;
	padding-bottom:10px;
}

.filter {
	position: relative;
	background-color: #fff;
}

.service {
	width:17em;
	height:17em;
	padding:10px;
	margin: 15px;
	float:left;
	border:solid 1px #aaa;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	 -webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.service:hover, .my-service:hover {
	border:solid 3px #444;
}

.service-desc {

}

.service .thumb, .service .thumb img {
	background:#efefef;
	width:15.8125em;
	height:15.8125em;
	margin:0 auto;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.service .thumb p {
	color:#ccc;
	margin:0;
	font-size: 0.875em;
	padding: 120px 0 0 98px;
}

.text {
	text-align: justify;
}

/* Single Service */

.add-section {
	width: 100%;
	margin: 25px 20px 30px 20px;
	overflow: auto;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.description {
	margin-left: 10px;
	margin-top: -10px;
	background: rgb(251, 251, 251);
	border: dashed 1px rgb(204, 204, 204);
	
	height: 100px;
	overflow-y: scroll;
	color: rgb(68, 68, 68);
	line-height: 24px;

}
.add-section .col-2 .desc {
	font-size:0.75em;
}

.add-srvc-btn:hover {
	background-image: url(/portal/images/cas/cross_grey_wu_8337a023f90bc755866344f8085d806c.png);
	text-decoration:underline;
	color:#999 !important;
}

.add-srvc-btn {
	background-image: url(/portal/images/cas/cross_wu_fc9de3a747f6262df612730fc95fffd7.png);
	background-repeat:no-repeat;
	background-position: 72px 0px;
	margin-left: 40px;
	margin-top: 4px;
	padding-left: 35px;
	border-left: dashed 1px #aaa;
	height: 40px;
	padding-top: 30px;
	float:left;
	font-size:0.75em;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

.add-srvc-btn p {
	text-align:center;
	color:#444;
	margin:0;
}

.add-srvc-btn a {
	font-size:0.75em;
	text-decoration:none;
}

.add-srvc-btn a:hover {
	text-decoration:underline;
	color:#444
}

.single-thumb {
	float:left;
	margin:0 20px;
}

.single-thumb img {
	width:300px;
	height:330px;
	border:solid 1px #aaa;
	padding:5px
}
	

.caption {
	margin-top:10px;
	font-size:0.75em;
}

.caption a {
	font-weight: bold;
	font-size: 1.5em;
	color: #444;
	position: relative;
	top: 4px;
}

.caption a:hover {
	color:red;
}

table.single-info {
	width: 550px;
	padding: 0 15px;
	color:#444;
	float:left;
}

.single-info div.nextInfo {
	padding-top:10px;
	border-bottom:dashed 1px #aaa;
	padding:10px;
}

.single-info, .single-attributes td {
	border-bottom:dashed 1px #aaa;
	padding:10px;
}

.single-info div.title  {
	width:50%;
	font-size:1.125em;
	font-weight:bold;
	padding: 15px;
}

.single-info div.info {
	color:#555555;
	padding: 15px;
}

.single-info div.info div.desc {
	margin-top:-10px;
	background:#fbfbfb;
	border:dashed 1px #aaa;
	padding: 5px 10px;
	height:110px;
	overflow-y:scroll;
	color:#444;
	line-height:1.5em;
}

table.single-attributes {
	width: 96%;
	margin: 40px auto;
}

.single-attributes td {
	text-align:center;
}

.single-attributes td.num {
	font-weight:bold;
	color:#444;
	font-size:1.25em;
} 

.single-attributes tr.top {
	background:#444;
	color:#fff;
	font-weight:bold;
	font-size:1.125em;
}

.single-attributes tr.top td {
	border:0;
}

/* Search by Local Authority */

.alphabet h2 {
	display:inline;
	list-style:none;
	float:left;
	padding: 10px;
	font-size: 1.375em;
	color:#444;
}

/* My Account - Profile Management */

.profile {
	border-right:solid 2px #aaa;
	margin-bottom: 30px;
	color:#444;
}

.profile p {
	margin:0;
}

.profile-pic {
	position:relative;
	background:#444;
	padding:10px;
	width:230px;
	height:230px;
	margin-left:-20px;
	border-radius:10px;
	moz-border-radius:10px;
	-webkit-border-radius:10px;
}

.profile-pic img {
	background:#efefef;
	max-width:230px;
}

#profile-pic-btn {
	position: absolute;
	background:#6ca079;
	color:#fff;
	display:none;
	left: 25%;
	top: 45%;
	padding: 5px 10px;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
}

#profile-pic-btn:hover {
	background:#ddd;
	
}

.profile-pic:hover #profile-pic-btn {
	display:block;
	text-decoration:none;
}

.summary-title {
	font-size:1.125em;
	font-weight:bold;
	color:#444;
	margin:8px 0;
}

.summary-title a {
	font-size: 0.75em;
	color: #444 !important;
	margin-left: 15px;
}

.summary-title a:hover {
	text-decoration:underline;
	color: #6ca079;
}

.first-name, .middle-name, .surname, .gender, 
.date-of-birth, .place-of-birth, .mothers-birth-name, 
.preferred-first-name, .preferred-middle-name, .preferred-surname, 
.username, .email-address, .landline-no, .mobile-no, .address-line-1, 
.address-line-2, .address-line-3, .postcode, .mothers-maiden-name, .nationality, .occupation, .religion, .fax, .alternate-mobile, .alternate-email, .office-num, .house-no, .street, .city_layout, .area, .district, .taluka, .village_layout, .society_name, .landmark, .pincode
{
	font-size:1.25em;
	font-weight:bold;
	color:#438c41;
	margin:0;
	text-indent:10px;
	word-wrap:break-word;
}

.layout-title {
	border-bottom:dashed 1px #aaa;
	padding-bottom:3px;
}

.read-only {
	color:#555555 !important;
}

.read-only p {
	color:#555555 !important;
}


/* Agent Dashboard - Agent Dashboard */

h3.label {
	float: left;
	margin:20px;
	font-weight: 500;
	font-size: 13px;
	color: #AAA;
	font-family: arial;
}

a#unresolved-count {
	font-size:30px;
	color:red;
	text-decoration:none;
	font-weight:bold;
	position: relative;
	top: 4px;
}

a#unresolved-count:hover {
	color:#FF7B7B;
}

/* tabs /*


/* root element for tabs  */
ul.tabs {
	list-style: none;
	margin: 0 !important;
	padding: 0;
	height: 38px;
	width: auto;
	position: relative;
	top: 5px;
	left: 5px;

}

/* single tab */
ul.tabs li {
    float:left;
    margin: 0 1px !important;
    list-style-image:none !important;
	border-radius:10px;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
	background:#444;
	padding:5px;
}

/* Style the tab itself here with this selector below */ 
ul.tabs a {
	height: 40px;
	padding: 4px 20px;
    font-size:15px;
    display:block;
    text-align:center;
    color:#444;
    position:relative;
	text-decoration:none;
	font-weight:bold;
	background: white;
	border-radius:6px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	background:#fff;
}

ul.tabs a:active {
    outline:none;
}

ul.tabs a:hover {
    color:#fff;
	background:#444;
}

/* active tab uses a class name "current". its highlight is also done by moving the background image. */
ul.tabs a.current {
    cursor:default !important;
	background:#444;
	color:#fff;
}

ul.tabs a.current:hover {
	
}

ul.tabs li.current a {
	color:#fff;
}

/* initially all panes are hidden */
.panes .pane {
    display:none;
}


/* tab pane styling */
.panes div {
}

/* label {
	color:#444;
} */
/*changed by jignesh joshi(895721) for home dept  */
 label {
	    color: #444;
    font-weight: bold;  

}
/*changed by jignesh joshi(895721) for home dept  */
input.button:hover, input.button:focus {
	background-color: #888;
	-webkit-animation: glowbutton 1.618s infinite;
	-moz-animation: glowbutton 1.618s infinite;
	-o-animation: glowbutton 1.618s infinite;
	animation: glowbutton 1.618s infinite;
}

input.button {   
	font-family: Arial, Helvetica, sans-serif;
	background-color: #555;
	width: auto !important;
	min-width: 80px !important;
	margin: 10px 0 !important;
	text-indent: 0px;
	border: 1px solid #dcdcdc;
	display: inline-block;
	color: #fff;
	font-size: 0.75em;
	font-weight: bold;
	font-style: normal;
	padding: 10px !important;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

input.button_disabled {
	font-family: Arial, Helvetica, sans-serif;
	background-color: #CCCCCC;
	width: auto !important;
	min-width: 80px !important;
	margin: 10px 0 !important;
	text-indent: 0px;
	border: 1px solid #dcdcdc;
	display: inline-block;
	color: #fff;
	font-size: 0.75em;
	font-weight: bold;
	font-style: normal;
	padding: 10px !important;
	text-decoration: none;
	text-align: center;
	/* cursor: pointer; */
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

.btnleft {
	float: left;
	padding-left: 5%;
}

.btnright {
	float: right;
	padding-right: 5%;
}

.alertmsg {
	color: #C00;
	font-size: 0.8em;
	font-weight: normal;
	/* display: none; */
}

/* FAQ's */

.faq-anchor-list {
	padding: 0 10px 10px 10px;
	background:#e5eef5;
	line-height: 1.75em;
	border: 5px solid #ccc;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	margin-bottom: 10px;
	
}

.faq-anchor-list ul {
	font-size:0.625em;
}

.faq-anchor-list a {
	color:#444;
	font-size:0.875em;
	font-weight:bold;
}

.faq-anchor-list a:active {
	text-decoration:underline;
	color:#444;
}

::-webkit-input-placeholder {
   font-size: 12px;
   text-indent:5px;
}

:-moz-placeholder { /* Firefox 18- */
   font-size: 12px;
   text-indent:5px;
}

::-moz-placeholder {  /* Firefox 19+ */
   font-size: 12px;
   text-indent:5px;
}

:-ms-input-placeholder {
	font-size: 12px;
   text-indent:5px;
}

a.return-link {
	color:#444;
	text-decoration:underline;
	font-weight:bold;
	margin:0;
}

.menu-icon {
	width:25px;
}

.login-fields {
	margin: -20px auto 40px auto;
	position: relative;
}

.login-fields table td {
	text-align:center;
	font-weight: bold;
	color: #444;
}

.login-masthead {
	text-align: center;
}


.login-masthead h2{
	font-size:1.875em;
	color:#444;
	margin: 50px 0 10px 0;
}

input {
	-webkit-appearance: none;
	border-radius: 0;
}

input[type="checkbox"] {
	-webkit-appearance: checkbox;
}

input[type="radio"] {
	-webkit-appearance: radio;
}
	
.login-width {
	width: 450px;
	padding: 0 30px;
	margin: 20px auto;
}

/* FONT RESIZER */

ul.font-resizer {
	float:left;
}

ul.font-resizer li {
	float:left;
	font-size:12px;
}

ul.font-resizer a {
	color:#444;
/* 	background:#eee; */
}

ul.font-resizer a:hover {
	background:#888;
	color:#fff;
	text-decoration:none;
	-webkit-animation: glowbutton 1.618s infinite;
	-moz-animation: glowbutton 1.618s infinite;
	-o-animation: glowbutton 1.618s infinite;
	animation: glowbutton 1.618s infinite;
}

a.resetFont {
	background:none !important;
	color:#dddddd !important;
/* 	text-decoration:underline; */
}

a.resetFont:hover, a.resetFont:focus {
	color:#fff !important;
	text-decoration:underline !important;
	-webkit-animation: 0 !important;
	-moz-animation: 0 !important;
	-o-animation: 0 !important;
	animation: 0 !important;
}

/* Left NAV */

/* jQuery compnent commented as not needed

.ui-menu {
	font-size: 12px !important;
}

.ui-state-active, .ui-widget-content .ui-state-active {
	border: 1px solid #ccc !important;
	background: #efefef !important;
}*/

ul#menu, ul#menu ul {
  list-style-type:none;
  margin: 0;
  padding: 0;
}

ul#menu a {
  display: block;
  text-decoration: none;	
}

ul#menu li {
  margin-top: 1px;
}

ul#menu li a {
  background: #777;
  color: #fff;	
  padding: 0.5em;
}

ul#menu li a:hover {
  background: #000;
}

ul#menu li ul li a {
  background: #ccc;
  color: #000;
  padding-left: 20px;
}

ul#menu li ul li a:hover, ul#menu li ul .current a {
  background: #aaa;
  border-left: 5px #000 solid;
  padding-left: 15px;
}

a:focus img {
	opacity:0.8;
	border: 1px solid #6ca079 !important;
}

.bodyinner {
	background-image: none;
}

#tooltip
{
    text-align: justify;
    color: #fff;
    background: #444;
    position: absolute;
    z-index: 100;
    padding:10px 15px;
    font-size:0.75em;
    max-width:230px !important;
}
 
#tooltip:after /* triangle decoration */
{
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #444;
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    margin-left: -10px;
}
 
#tooltip.top:after
{
    border-top-color: transparent;
    border-bottom: 10px solid #444;
    top: -20px;
    bottom: auto;
}

#tooltip.left:after
{
    left: 10px;
    margin: 0;
}

#tooltip.right:after
{
    right: 10px;
    left: auto;
    margin: 0;
}

.backbtn {
	float:right;
	margin-top:-35px;
}

.pright {
	position: fixed;
	display: none;
	bottom: 30px;
	right: 20px;
	padding: 5px;
	z-index: 20;
	background: #D8D8D8;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
}

.pright:hover {
	text-decoration: none;
}

.pright span {
	vertical-align: middle;
	color: #000;
}

.pright img {
	width: 28px;
	float:left;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	-webkit-transition: 1s;
	-moz-transition: 1s;
	transition: 1s;
}

.poundicon {
    background-image: url(/portal/images/cas/pound_icon_grey_wu_4cb05c9bc6b54b87bbb900a20efe1f87.png);
	background-repeat: no-repeat;
	background-position: 2% center;
	background-size: 7%;
	padding-left: 25px !important;
}

/* =============================================================================
   Slider
   ========================================================================== */
.slide-content {
	position:absolute;
	color:#fff;
	width: 100%;
	height: 100%;
	padding: 50px 10% 0 10%;
	z-index:5;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
}

.slide-title {
	color:#fff;
	float:left;
}

.slide-title h1{
	font-size:75px;
	color:#fff;
	line-height:70px;
	letter-spacing:-5px;
	text-shadow: 2px 2px 0px #000;
}

.slide-desc {
	color:#fff;
	width: 100%;
	font-size: 15px;
	text-shadow: 1px 1px 1px #000;
	text-align:center;
}

.slide-desc h1 {
	color:#fff;
	margin:15px auto;
}

.slide-desc p {
	background:rgba(0,0,0,0.75);
	font-size: 16px;
	padding: 20px;
	width:75%;
	margin:25px auto;
	border-radius:4px;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
}

.slide-desc p span{
	font-weight:bold;
	font-size:12px;
}

.slide-desc p span a{
	color:#fff !important;
	text-decoration:underline;
}

.slide-desc p span a:hover{
	color:#444 !important;
}

li.flex-active-slide a img {
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

li.flex-active-slide a:hover img{
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
	filter: gray; /* IE 6-9 */
}

/* =============================================================================
   Container and Slider min-width controller Class
   ========================================================================== */

.home-or {
	margin:0 10px 0 0;
}
/* Added For Multiple Add */

.dynamicGridCss{					
display: table;
border-spacing: 1px;
width: 100%;
text-align: center;
border: 1px solid gray;
}
		

select{
/* margin:10px 0px; */
}

.tableRowDiv{
display:table-row;
}

.tableCellDiv{
display:table-cell;
vertical-align: middle;
}

.headerRowGreen{
background-color: #444;
height: 50px;
}
.headerRowGreen label{
color:#FFFFFF; 
}

.searchicon {
    background-image: url(/portal/images/search_wu_07d00638975f503e9cacd81eae185671.gif);
	background-repeat: no-repeat;
	background-position: 2% center;
	background-size: 7%;
	padding-left: 30px !important;
}

.userPhoto {
	float:right;
	margin-left:30px;
	width:90px;
	height: 100px;
}

[readonly], [disabled] {
	background-color:#EBEBE4;	
}

/*Start by jignesh joshi(895721) for theme*/
.thmhead{
	display: block;
	width: 20%; 
	float: left;
	height: 7px;	
}
.thmhd{
	display: block;
	width: 80%;
	float: left;
	height: 7px;"
}
.thmside{
	display: block;
	width: 20%;
	float: left;
	height: 20px;
	
}
.thmmid{
	display: block;
	width: 80%; float: left; height: 20px;
	background: #f4f5f7;
}
.thmbox{
	float: left; 
	width: 33.33333%;
	padding: 5px;
}
.thmlnk{
	display: block;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);		
}
.thmdrk{
	background: #222d32;
}
.thmlgt{
	background: #f9fafc;
}
.thmblue{
	background: #367fa9;
}

.thmblue{
	background: #367fa9;
}

.thmblue{
	background: #367fa9;
}

.thmblue{
	background: #367fa9;
}

.thmblue{
	background: #367fa9;
}	

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 40%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    margin-left: 350px;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Modal Header */
.modal-header {
    padding: 2px 16px;
    background-color: #55a8d8;
    color: white;
}

/* Modal Body */
.modal-body {padding: 2px 16px;}

/* Modal Footer */
.modal-footer {
    padding: 2px 16px;
    background-color: #55a8d8;
    color: white;
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    animation-name: animatetop;
    animation-duration: 0.4s
}

/* Add Animation */
@keyframes animatetop {
    from {top: -300px; opacity: 0}
    to {top: 0; opacity: 1}
}
/*ended by jignesh joshi(895721) for theme*/
