/* Colors
Tan: #f1eee1
Dark Navy Blue: #0d2247
Royal Blue: #133d85
Yellow: #fdbf57

*/

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1.5;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/* --------------- General ---------------*/

body {
	font-family: 'Open Sans', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 0.938em;
	color: #050505;
	background:url(../images/bg-chalk-board.jpg) fixed no-repeat top center;
	background-size:cover;
	width:100%;
}

.container {
	width: 985px;
	margin-bottom: 30px;
	margin-left:auto;
	margin-right:auto;
	border-radius:5px;
}
.container:before,
.container:after,
.row:before,
.row:after {
  display: table;
  content: " ";
}
.container:after,
.row:after {
  clear: both;
}
td {
    vertical-align:top;
}
p {
	margin-bottom:1.0em;
}
a {
   color:#0d2959;
   text-decoration:none;
}
a:hover {
	text-decoration:underline;
}
em, i {
	font-style:italic;
}
strong, b {
	font-weight:700;	
}
sup {
  font-size: .714em;
	vertical-align:top;
}
input, textarea, .TextField {
	font-family: 'Open Sans', sans-serif;
	font-style: normal;
	font-weight:400;
	font-size:14px;
	border-radius:5px;
	padding:3px;
}
.ErrorMessage,
.EditingFormErrorLabel {
    color:red;
		font-weight:700;
}
.ErrorLabel {
  color:red;
	font-weight: 700;
}
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
	position: static;
	width: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	clip: auto;
}

.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
	}
* html .clearfix             { zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */

/*--------------------Layout--------------------*/
main {
	margin:45px auto 0;
	z-index: 99;
}

h1 {
	font-family: 'Lato', sans-serif;
	color: #ffffff;
	font-size: 36px;
	font-weight: 700;
}

h2 {
	font-family: 'Lato', sans-serif;
	color:#133d85;
	font-size:1.73em; /*26px*/
	font-weight:700;
	margin-bottom:0.5em;
}

h3 {
	color:#24599b;
	font-size:1.15em;
	font-weight:600;
}

.mid-wrapper {
	padding-top: 30px;
	min-width: 935px;
	min-height: 400px;
	background:#fff;
}

.announcements-promos {
	width: 395px;
	float: left;
	padding: 0 10px 0 10px;
}

li {
  list-style: none;
}

.new-products, .other-info, .promotions, .home-facebook {
	margin-top: 40px;	
}

/*--------------------Resources--------------------*/

img {
	vertical-align: top;
}

.bg {
	background-color: #0d2247;
	background-image: -webkit-linear-gradient(top, #0079c2, #0d2247);
    background-image: -moz-linear-gradient(top, #0079c2, #0d2247);
    background-image: -ms-linear-gradient(top, #0079c2, #0d2247);
    background-image: -o-linear-gradient(top, #0079c2, #0d2247);
    background-image: linear-gradient(top bottom, #0079c2, #0d2247);
	background-repeat:no-repeat;
}

/*--------------------Buttons--------------------*/

/* Button Style - General */
.button,
input.FormButton {
	outline:0 none;
	border-radius: 5px;
	cursor: pointer;
	display: inline-block;
	font-weight: 700;
	line-height: 1.2;
	padding: 8px 16px;
	text-decoration: none;
	vertical-align:middle;
	text-transform:uppercase;
	margin-top:7px;
}
.button:hover,
input.FormButton:hover {
	text-decoration: none;
}

/* Blue Button */

a.button-2,
input.button.button-2,
input.FormButton {
	background-color:#133d85;
	color: #fff;
	border:1px solid #0d2247;
	margin-top:-20px;
}
a.button-2:hover,
input.button.button-2:hover,
input.FormButton:hover {
	background-color:#0d2247;
}
input.button.button-2 {
	margin-top:5px
}

/* Yellow Button */
a.button-1,
.btn-ob-login,
input.button-1 {
	background-color:#fdbf57;
	color: #0d2247;
	border:1px solid #ffa200;
}
a.button-1:hover,
.btn-ob-login:hover,
input.button-1:hover {
	background-color:#ffd48b; 
}
.btn-ob-login {
	margin-top:0;
}
a.button-2.button-block {
	padding:8px 0 9px;
}
.home-rates a.button.button-1.button-block {
	width:85%;
}
.home-rates a.button.button-1.button-block:hover {
	text-decoration: none;
}
.button-block {
	width:100%;
	text-align:center;
}


/*--------------------Top--------------------*/
header {
	background-color:#0d2247;
	color: #fff;
	box-shadow: 0 3px 4px rgba(0,0,0,0.2);
	position: relative;
	z-index: 999;
}
header .container {
	width:985px;
	margin:0 auto 30px;
	position:relative;
	z-index:1000;
	min-height: 146px;
}
.site-logo {
	width:254px;
	float:left;
	margin:0;
	position: absolute;
	z-index: 100;
}
.header-top {
	width: 1004px;
	margin-top: 10px;
	border-bottom: 1px #ffffff solid;
}

.header-top-left {
	width: 374px;
	float: left;
	margin-top:10px;
}

/* --------------- Top Nav ---------------*/

#top-nav {
	padding: 0px 0;
	padding-left:20px;
	padding-top:30px;
	padding-bottom:10px;
	position:absolute;
	border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
	top:0;
	right:0;
}
#top-nav li {
	display: inline;
	float: left;
}
#top-nav a {
	color: #fff;
	font-size: 0.875em; /*14px*/
	font-weight: 700;
	text-decoration:none;
	padding: 0 10px 0 7px;
	white-space:nowrap;
	border-right:1px solid #ddd;
}
#top-nav li:last-child a {
	border-right:0 none;
	padding-right:0;
}
#top-nav a:hover {
	text-decoration:underline;
}


/* ----- Social Media Icons ----- */

.social-icons {
	list-style-type:none;
	margin:0px 5px 5px 0;
	padding:0;
	width: 38px;
	height: 38px;
	float:right;
}
.social-icons li {
	float: left;
	width: 38px;
	height: 38px;
	margin-left: 3px;
}
.social-icons a {
	background: url("../images/social-icons-sprite.png") no-repeat scroll 0 0 transparent;
	width: 38px;
	height: 38px;
	display: block;
	float: left;
	text-decoration: none;
	text-indent:-99999px;
}
.social-icons .item-1 a {
	background-position: left top;
}
.social-icons .item-1 a:hover {
	background-position: left -38px;
}

/* --------------- Header Alert ---------------*/

.header-alert-wrapper {
	display: block;
	width:100%;
	background-color: #fdbf57;
	padding-bottom:1px;
	border-bottom:1px solid #fff;
}
.header-alert {
	width:875px;
	margin:0 auto;
	padding:15px 30px 15px 55px;
	background:url(../images/icon-alert.png) no-repeat 0 20px;
	min-height:40px;
}
.header-alert p {
	margin-bottom:0;
	padding-top:7px;
}
.header-alert a,
.header-alert strong {
	color:#0d2247;
}

/* --------------- Home Styles ----------------*/
.home-wrapper h2 {
	color:#fff;
	font-size:19px;
	padding:10px 0;
	background-color:#0d2247;
	text-align: center;
	border-bottom:4px solid #fdbf57;
	border-top-left-radius:4px;
	border-top-right-radius:4px;
	text-transform: uppercase;
}

.col {
	width: 215px;
	border-radius: 5px;
	background-color: rgba(255,255,255,0.9);
	box-shadow: 0 0 8px rgba(0,0,0,0.3);
	min-height: 405px;
}
.col-container {
	padding:10px 15px;
}



/*--------------------Home Slider & Online Banking--------------------*/

.home-slider {
	width: 700px;
	height: 245px;
	float: right;
	background-color:#fff;
	border-radius:5px;
	border: 5px solid #fff;
	/*box-shadow: 4px 4px 3px rgba(0,0,0,0.3);*/
	box-shadow:0 0 8px rgba(0,0,0,0.3);
}
.slider-imgs img,
.slider-imgs a {
	border-radius:5px;
	width:700px !important;
	height:245px !important;
	display:block;
}
/* Slider Nav */
.slider-nav {
	position:relative;
	top:-20px;
	bottom:9px;
	right:0px;
	left:20px;
	width:674px;
	height:19px;
	text-align:right;
	overflow:hidden;
	z-index:50;
}
.slider-nav a {
	display:inline-block;
	width:19px;
	height:19px;
	margin-left:1px;
	background:url(../images/slider_nav_sprite.png) no-repeat left top;
}
.slider-nav a.activeSlide {
	background-position:left -19px;	
}
.slider-nav a span {
	position:absolute;
	left:-99999px;
	top:-99999px;
	display:block;
	width:1px;
	height:1px;	
}
.slider-nav a.togglePausePlay {
	display:inline-block;
	width:66px;
	height:19px;
	margin-left:1px;
	background:url(../images/slider_nav_sprite.png) no-repeat -19px top;
}
.slider-nav a.play {
	background-position: -19px -19px;	
}
.banking-login {
	width:245px;
	height:255px;
	padding:0;
	float:left;
	border-radius:5px;
	background-color: rgba(255,255,255,0.9);
	box-shadow:0 0 8px rgba(0,0,0,0.3);
}
.banking-login h2 {
	background:url(../images/icon-mouse.png) no-repeat left #0d2247;
	background-position:10px;
	padding:10px 0px 10px 5px;
}
.banking-login .login-row {
	  overflow: hidden;
    margin: 10px;
    position: absolute;
    margin-top: -110px;
    padding-top: 20px;
    width: 220px;
}
.banking-login label {
	font-weight:500;
	float:left;
	width:64px;
	vertical-align:middle;
	padding-top:4px;
}
.banking-login input {
	float:left;
	width:200px;
	padding:6px 8px 6px 8px;
	border:1px solid #ccc;
	border-radius:5px;
	box-shadow:inset 1px 1px 2px #eee;
	vertical-align:middle;
	margin-bottom:10px;
	margin-top:5px;
}
.banking-login .password {
	font-size:14px;
	color:#133d85;
	padding:4px 5px 0 5px;
}
.banking-login .login-btn {
	float:right;
	text-align:right;	
}
.banking-login .apply-btn {
	text-align:center;
	margin-top:10px;
}
.banking-login .login-links a {
	text-decoration:none;
	font-size:14px;
}
.banking-login .login-links a:hover {
	text-decoration:underline;
}


/*--------------------Home News--------------------*/

.news {
	width:420px;
	float:left;
	margin-right:30px;
}
.news h3 a {
	color: #121212;
	font-style: normal;
	font-weight: bold;
}
.news h3 a:link, .news a:visited, .NewsPTitle {
	color: #0359a1;
	text-decoration: none;
	font-weight:bold;
}	
.news h3 a:hover {
	color: #0d2247;
	text-decoration: underline;
	font-weight:bold;
}
.news-summary {
	margin:3px 0 10px 0;
}
.title-bug {
	font-style:normal;
	font-weight:700;
	font-size:.875em; /* 14px */
	color:#0079c2;
	line-height: 1.5;
	text-transform:uppercase;
	margin-bottom:1em;
}
.title-bug a {
	color:#133d85;
	text-decoration:none;
}
.title-bug a:hover {
	text-decoration:underline;
}

/*-------------------- Quick Links--------------------*/

.quick-links {
	width:245px;
	margin-right:30px;
	float:left;
}
.quick-links a {
	color:#404549;
	display:block;
	padding:5px 0;
	text-align:center;
}
.quick-links a:hover {
	text-decoration:none;
	background-color:#dbd9da; /* Fallback */
	background-color:rgba(0,0,0,0.1);	
}

/*--------------------Rates--------------------*/

.home-rates {
	width:260px;
	float: right;
	font-size:14px;
}
.home-rates a {
	text-decoration:none;
}
.home-rates a:hover {
	text-decoration:underline;
}
.header-rate-detail {
	text-align: right;
	padding:2px;
}
.rate-header {
	text-align:left;
	padding:2px 0;
}
.home-rate-table .rate-number {
	text-align: right;
}
.home-rate-table th {
	font-size:15px;
	font-weight:700;
	color:#0d2247;
	text-transform:uppercase;
	border-bottom:1px solid #0d2247;
	margin-bottom:10px;
}
.home-rate-table th a {
	color:#fff49c;
}
.home-rate-table td {
	padding:5px 0;
}
.home-rates .text-footnote {
	color:#767676;
	line-height:1.5em;
	padding:0 10px;
}



/*--------------------Child Nav --------------------*/
.sidebar {
		width:245px;
		margin-right:30px;
		float:left;
    border-radius:5px;
    background-color: rgba(255,255,255,0.8);
    box-shadow: 0 0 8px rgba(0,0,0,0.3);
}
.child-nav {
	float: left;
	width: 245px;
	min-height: 200px;
	padding-bottom:15px;
}
.child-nav h2 {
	color: #fff;
	font-size: 19px;
	padding: 10px 0;
	background-color: #0d2247;
	text-align: center;
	border-bottom: 4px solid #fdbf57;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	text-transform: uppercase;
}
.child-nav a {
	color: #050505;
	display:block;
	padding: 5px 5px 5px 25px;
	margin-left: 20px;
	margin-right: 10px;
	background: url(../images/child-nav-sprite.png) no-repeat left 7px;
}
.child-nav a:hover, .child-nav a.CMSListMenuLinkHighlighted {
	background-position:-396px 7px;
	text-decoration:none;
	font-weight:400;
}

/* --------------- Child Content ---------------*/

.child-content-full-width {
	width:100%;
	float:none;
	margin-left:0;
	min-height: 583px;
	padding: 0;
	border-radius:5px;
	background-color: #fff;
	box-shadow: 0 0 8px rgba(0,0,0,0.3);
}

.child-content {
	vertical-align: top;
	width: 700px;
	min-height: 583px;
	padding: 0;
	float: right;
	border-radius:5px;
	background-color: rgba(255,255,255,0.9);
	box-shadow: 0 0 8px rgba(0,0,0,0.3);
}
.content {
	padding:15px;
}
.page-title {
	background:#f1eee1;
	padding: 15px 30px 12px 15px;
	border-top-left-radius:5px;
	border-top-right-radius:5px;
	border-bottom: 4px solid #0d2247;
}
.page-title h1 {
	font-family: 'Lato', sans-serif;
	font-size:1.86em;/*30px*/
	font-weight:bold;
	color:#0d2247;
}
.child-content h2 {
	font-family: 'Lato', sans-serif;
	color:#133d85;
	font-size:1.500em;
	line-height:1.2;
	padding-bottom:3px;
	margin-bottom:0.3em;
}
.child-content h3 {
	color:#0d2247;
	font-size:1.15em;
	font-weight:600;
	margin-bottom:0.3em;
}
.child-content p {
	padding-right: 10px;
}
.text-bold-1 {
	font-weight:700;
	color:#0d2247; /* Darker Blue */
}
.text-bold-2 {
	font-weight:700;
	color:#133d85; /* Lighter Blue */
}
.text-footnote {
	font-size:.786em;
}

/* --------------- Content Tables ---------------*/

tr.sub-heading {
	background-color: #0d2247;
	color: #ffffff;
	font-weight: bold;
}

.content-table-rates {
	width:100%;
}

.content-table-rates td {
  padding: 4px 4px;
	border-bottom: 1px solid #e4ebf0;
}

.content-table {
	border-bottom: 1px solid #e4ebf0;
	width:100%;
	margin-bottom:1.5em;
	font-size:14px;
}

.content-table caption {
	font-size:16px;
	background:#0d2247;
	color:#fff;
	font-weight: 700;
	padding:4px 12px;
	text-align: left;
	border-top-left-radius:4px;
	border-top-right-radius:4px;
}

.content-table th {
  font-weight:bold;
	text-align:left;
	vertical-align:bottom;
	background-color:#f1eee1;
	padding:4px 12px;
	color:#0d2247;
}

.content-table td {
  padding: 4px 12px;
	border-top: 1px solid #d3d3d3;
}

.content-table-no-borders caption {
	font-size:1.286em;
	background:#4b1672;
	color:#fff;
	padding:4px 12px;
	text-align: left;
}

.content-table-no-borders th {
    font-weight:bold;
	font-size:.929em;
	text-align:left;
	vertical-align:bottom;
	background-color: #cccccc;
	padding:4px 12px;
	color:#ffffff;
}

.content-table-no-borders td {
	padding:4px 12px;
}

.child-content .content-table .content-table-no-borders table {
	margin-bottom:0;
}

.content-table .content-table-no-borders table td {
	padding:0;
	border-bottom:0;	
}

.last-row td {
	border-bottom: none;
}

/* ----- List Styles ----- */

.child-content ul,
.child-content ol {
    margin:0.4em 0 1.0em 0;
}

.child-content ul ul,
.child-content ul ol,
.child-content ol ol,
.child-content ol ul {
    margin-top:0;
	margin-bottom:0;
}

.child-content ul li {
    list-style-type: none;
    margin: 0px 0px 0.3em 1em;
    padding-left: 18px;
    background: url(../images/bullet-content.png) no-repeat left 8px;
}

.child-content ul ul li {
	list-style-type: circle;
	margin:0 0 0 16px;
	background:none;
	padding:0;
}

.child-content ul ol li {
	list-style-type:decimal;
	margin:0 0 0 20px;
	background:none;
	padding:0;
}

.child-content ol li {
    list-style-type:decimal;
	margin: 0 0 .5em 40px;
}

.child-content ol ol li {
    list-style-type:lower-alpha;
	margin:0 0 0 20px;
}
.child-content ol.numbered-list ol li {
	list-style-type:decimal;	
}

.child-content ol ul li {
    list-style-type:disc;
	margin:0 0 0 16px;
	background:none;
	padding:0;
}

.child-content ul ul ul li {
	list-style-type:circle;
	margin:0 0 0 16px;
	background:none;
	padding:0;
}

/* ----------------Forms --------------------*/
.form-table {
  margin-bottom:1.6em;
	line-height:1.2;
	font-size:14px;
}
.form-table caption {
	font-size:1.286em;
	background:#0d2247;
	color:#fff;
	font-weight: 700;
	padding:8px 12px;
	text-align: left;
	border-top-left-radius:4px;
	border-top-right-radius:4px;
}
.form-table th {
  font-weight:bold;
	text-align:left;
	vertical-align:bottom;
	background-color:#f1eee1;
	padding:6px;
	color:#0d2247;
}
.form-table td {
  padding:6px;
}

.form-table .TextBoxField,
.ssn-input input,
.date-input input,
.phone-input input,
.zip-input input,
.captcha-input input,
.TextAreaField {
    border:1px solid #d7cfb8;
}

.form-table .TextBoxField:focus,
.ssn-input input:focus,
.date-input input:focus,
.phone-input input:focus,
.zip-input input:focus,
.captcha-input input:focus {
    border:1px solid #6b675c;
	background: #fffeee;
}

.form-table .TextBoxField,
.ssn-input input,
.date-input input {
    width:95px;
}

.zip-input input {
    width:50px;
}

.FormPanel {
    margin-bottom:1.6em;
}

.EditingFormControlNestedControl {
    float:left;
	margin-right:10px;
}

.EditingFormLabel,
.dollar-sign-label {
    float:left;
	margin-right: 5px;
}

.date-example {
    float:left;
	font-size: .833em;
}

.RadioButtonList td {
    padding-top:0;
	padding-bottom:0;
}


/* --------------- Top Footer --------------- */

.top-footer {
	background-color:#0d2959;
	color:#fff;
	padding:20px 0;
}
.top-footer .container {
	width:985px;
	margin:0 auto;
}
.top-footer .col {
	width:225px;
	float:left;
	margin-right:25px;
	padding:10px 10px 10px 0;
	background:none;
	min-height:inherit;
	box-shadow: none;
}
.top-footer .last {
	margin-right:0;
	width:170px;
}
.top-footer h2 {
	font-family: 'Open Sans', sans-serif;
	font-size:1.125em; /* 18px */
	font-weight: 700;
	color:#fdbf57;
	line-height: 1.333;
	text-decoration:underline;
}
.top-footer table {
	width:100%;
}
.top-footer table td {
	border-bottom:1px solid #7586a3;
	padding:3px 0;
}
.top-footer table tr:last-child td {
	border-bottom: 0 none;
}


/*--------------------Footer--------------------*/
footer {
	color:#fff;	
}
footer a {
	color:#fff;	
	text-decoration:none;
}
footer a:hover {
	text-decoration:underline;
}
.footer-wrapper {
	width:100%;
	padding:25px 0;
	background:#0d2247;
	min-height:75px;
}
.footer {
	width:985px;
	margin:0 auto;	
}
.footer-text {
	width:760px;
	float:left;	
}
.footer-logos {
	width:200px;
	float:right;
	text-align:right;
}
.logo-ncua {
	margin-right:24px;
	margin-top:17px;	
}

/* --------------- External Links ---------------*/

/*
* jQuery UI CSS Framework
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
* Dual licensed under the MIT (MIT-LICENSE.txt) and GPL (GPL-LICENSE.txt) licenses.
*/

/* Layout helpers
----------------------------------*/
.ui-helper-hidden { display: none; }
.ui-helper-hidden-accessible { position: absolute; left: -99999999px; }
.ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
.ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.ui-helper-clearfix { display: inline-block; }
/* required comment for clearfix to work in Opera \*/
* html .ui-helper-clearfix { height:1%; }
.ui-helper-clearfix { display:block; }
/* end clearfix */
.ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }

/* states and images */
.ui-icon { width: 16px; height: 16px; display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }
.ui-icon-close { background-position: -80px -128px; }
.ui-icon-closethick { background-position: -96px -128px; }

/* Misc visuals
----------------------------------*/

/* Overlays */
.ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* Component 3b6a9fs
----------------------------------*/
.ui-widget { font-size: 1em; font-weight: normal; }
.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-size: 100%; }
.ui-widget-content { border: 1px solid #ccc; background: #fff; text-align: justify; margin-top: 10px; }
.ui-widget-content a { color: #3e90b6; }
.ui-widget-header { border: 1px solid #ffff; background: #0d2247; color: #fff; font-weight: bold; font-size: 1.4em; }

/* Interaction states
----------------------------------*/
.ui-state-default, .ui-widget-content .ui-state-default { border: 1px solid #ffff; background: #0d2247; font-weight: bold; color: #fff; outline: none; }
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus { border: 1px solid #ffff; background: #ffd48b; font-weight: bold; color: #0d2247; outline: none; }

/* states and images */
.ui-widget-content .ui-icon {background-image: url(../images/ext-links-icons.png); }

/* positioning */
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }

/* Misc visuals
----------------------------------*/

/* Corner radius */
.ui-corner-tl { border-top-left-radius:3px; }
.ui-corner-tr { border-top-right-radius:3px; }
.ui-corner-bl { border-bottom-left-radius:3px; }
.ui-corner-br { border-bottom-right-radius:3px; }
.ui-corner-top { border-top-left-radius:3px; border-top-right-radius:3px; }
.ui-corner-bottom { border-bottom-left-radius:3px; border-bottom-right-radius:3px; }
.ui-corner-right { border-top-right-radius:3px; border-bottom-right-radius:3px; }
.ui-corner-left { border-top-left-radius:3px; border-bottom-left-radius:3px; }
.ui-corner-all { border-radius:3px; }

/* Overlays */
.ui-widget-overlay { background: #000; opacity: .60;filter:Alpha(Opacity=60); }

/* Resizable----------------------------------*/
.ui-resizable { position: relative;}
.ui-resizable-handle { position: absolute;font-size: 0.1px;z-index: 99999; display: block;}
.ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; }
.ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0px; }
.ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0px; }
.ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0px; height: 100%; }
.ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0px; height: 100%; }
.ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; }
.ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; }
.ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; }
.ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;}

/* Dialog----------------------------------*/
.ui-dialog { position: relative; padding: .5em; width: 300px; }
.ui-dialog .ui-dialog-titlebar { padding: .3em .3em .3em 1em; position: relative;  }
.ui-dialog .ui-dialog-content { border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; }
.ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; }
.ui-dialog .ui-dialog-buttonpane button { float: right; margin: .5em .4em .5em 0; cursor: pointer; padding: .2em .6em .3em .6em; line-height: 1.4em; width:auto; overflow:visible; border-radius:5px; }
.ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; }
.ui-draggable .ui-dialog-titlebar { cursor: move; }
.ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 0; height: 18px; }
.ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; }
.ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; }

/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
.ui-datepicker-cover {
    display: none; /*sorry for IE5*/
    display/**/: block; /*sorry for IE5*/
    position: absolute; /*must have*/
    z-index: -1; /*must have*/
    filter: mask(); /*must have*/
    top: -4px; /*must have*/
    left: -4px; /*must have*/
    width: 200px; /*must have*/
    height: 200px; /*must have*/
}

/* --------------- Prevent problems in Design view in CMS --------------- */

#form1 .WebPartHeader table,
#form1 .WebPartZoneHeader table {
	margin:0;
}
.PagePlaceholder .home-slider {
	height:auto;
}
.PagePlaceholder .nav .WebPartContent ul.CMSListMenuUL {
	display:none;	
}
.PagePlaceholder .site-logo {
	z-index:-1;	
}