/* Table of Content
==================================================
	#Set Styles
	#Page Specific Styles
	#Media Queries
	#Font-Face */
	
/* #Set Styles
================================================== */
/* Start by setting display:none to make this hidden.
   Then we position it in relation to the viewport window
   with position:fixed. Width, height, top and left speak
   for themselves. Background we set to 80% white with
   our animation centered, and no-repeating */
.modal {
    display:    none;
    position:   fixed;
    z-index:    1000;
    top:        0;
    left:       0;
    height:     100%;
    width:      100%;
    background: rgba( 255, 255, 255, .8 ) 
                url('../img/ellipsis.gif') 
                50% 50% 
                no-repeat;
}

/* When the body has the loading class, we turn
   the scrollbar off with overflow:hidden */
body.loading {
    overflow: hidden;   
}

/* Anytime the body has the loading class, our
   modal element will be visible */
body.loading .modal {
    display: block;
}

.blue {
        color:#00a1f2;
}

.full-center {
text-align:center;
margin:0 auto;
}

header {
	width: 100%;
	border-bottom: 1px solid #E6E6E6;
	background-color:#fff;
}

#logo {
	padding:8px 0 0 0;
}

#accInfo {
	position:absolute;
	top:0px;
	right:0px;
	font-size:9pt;
	color:#333;
	padding:2px 10px;
}

#subhead {
	background-image:url(../img/subHead.png);
	background-repeat:repeat-x;
    background-color:#F9F9F9;
    border-bottom: 1px solid #d8d8d8;
	border-top: 1px solid #f4f4f4;
	text-align:right;
	padding:0px;
	margin:0px;
	width: 100%;
}

#subhead p {
	padding:6px 10px;
	margin:0px;
	font-style:italic;
	font-size:16pt;
	color: #534741;
}

nav {
	font-weight: normal;
	padding:2px 20px;
	background-image:url(../img/navHead.png);
	background-repeat:repeat-x;
	text-align:center;
}

nav ul {
  text-align: left;
  display: inline;
  margin: 0;
  padding: 15px 4px 17px 0;
  list-style: none;
}
nav ul li {
        font-size:13px;
  display: inline-block;
  margin:0 -4px 0 0;
  position: relative;
  padding: 4px 20px;
  color: #534741;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

nav ul li:hover {
}

nav ul li ul {
  padding: 2px;
  position: absolute;
  top: 27px;
  left: 0;
	width:auto;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  display: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transiton: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  -transition: opacity 0.2s;
}
nav ul li ul li {
  display: block; 
  color: #534741;
        font-size:13px;
        border-left:1px solid #E6E6E6;
        border-bottom:1px solid #E6E6E6;
        border-right:1px solid #E6E6E6;
}
nav ul li ul li:hover { }
nav ul li:hover ul {
  display: block;
  opacity: 1;
  visibility: visible;
}

nav a:link { 	
	text-decoration: none;
	text-align: left;
	color:#00a1f2;
}/* unvisited link */

nav a:visited {
	color:#00a1f2;
}  /* visited link */
nav a:hover {
	color:#CCC;
}  /* mouse over link */

nav a:active {
	color:#00a1f2;
}  /* selected link */

#menu-icon {
	display: hidden;
	width: 40px;
	height: 40px;
	background: url(../img/menuIcon.png) center;
}

a:hover#menu-icon {
	background-color: #000;
}

section {
	margin:0px;
	padding:0px;
}
img {
	margin:0;
	padding:0;
	display: block;
}

.wrapper {
	width:90%;
	margin:0 auto;
}

.preFoot {
	margin:20px 0px;
	padding:20px 0 0 0;
	border-top: 1px solid #CCC;
}

.span, .text {    
	vertical-align:middle;
	display:table-cell;
	color:#CCC;
}

.spanImg {
width:40px;
height:40px;
margin-right:8px;
}

.spanImgInline {
margin-right:8px;
display:inline;
}

.footer-container {
	background-image:url(../img/subHead.png);
        background-repeat:repeat-x;
	width:100%;
	border-top: 1px solid #E6E6E6;
    border-bottom: 1px solid #E6E6E6;
	background-color:#fdfdfd;
}

.footer-container footer {
    color: #02243C;
    padding: 6px 0;
    font-size:12px;
	width:90%;
	margin:0 auto;
}

/* Pattern styles */
.two-col {
  display: inline-block;
  vertical-align: top;
  width: 50%;
}

.left-half {
}

.right-half {
}

/* #Page Specific Styles
================================================== */


/* #Home
================================================== */

span {
	color:#60c0f2;
}

#black {
	background:#000;
	color:#FFF;
}

/* #Accordion
================================================== */
.accordion, .accordion * {
    -webkit-box-sizing:border-box; 
    -moz-box-sizing:border-box; 
    box-sizing:border-box;
}
 
.accordion {
    overflow:hidden;
        background-color:#F9F9F9;
        border:1px solid #d8d8d8;
}
 
/*----- Section Titles -----*/
.accordion-section-title {
    width:100%;
    padding:15px;
    display:inline-block;
        background-color:#F9F9F9;
    transition:all linear 0.15s;
    text-decoration:none;
}
 
.accordion-section-title.active, .accordion-section-title:hover {
        background-color:#00a0f2;
    /* Type */
    text-decoration:none;
color:#fff;
}
 
.accordion-section {
border-bottom:1px solid #d8d8d8;
}
.accordion-section:last-child {
    border-bottom:none !important;
}

.accordion li {
font-size:11px;
}
 
/*----- Section Content -----*/
.accordion-section-content {
    padding:15px;
    display:none;
}

.accordion-section-content img {
display:inline;
}

.example {
display: block;
    overflow: auto;
    padding: .1em;
    padding-left: 2%;
    border: 1px solid #f9cf2e;
    background-color: #f9f0cb;
    word-wrap: break-word;
    white-space: pre-wrap;
    font-size: 11px;
    font-family: Arial, sans-serif;
    margin: 0;
    color: #333;
}
/* #Accordion END
================================================== */
/* #Tabs
================================================== */
ul.tab-navbar {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
border-top:1px solid #d8d8d8;
border-left:1px solid #d8d8d8;
border-right:1px solid #d8d8d8;
}

.tab-cont {
border:1px solid #d8d8d8;
padding:20px 30px;
}

.tab-cont p {
font-size:14px;
margin:0 0 16px 0;
}

.tab-cont .d-p {
line-height: 130%;
}

.straight {
display:inline-block;
}

.pad-inline {
padding:10px 16px;
}

.badge {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 150%;
  color: #00a0f2;
  line-height: 60px;
  text-align: center;
  border:3px solid #00a0f2;
}

/* Float the list items side by side */
ul.tab-navbar li {
float: left;
margin:0px;
}

/* Style the links inside the list items */
ul.tab-navbar li a {
    display: inline-block;
    color:#00a0f2;
    text-align: center;
    padding: 8px 20px;
    text-decoration: none;
    transition:all linear 0.15s;
    font-size: 13px;
    border-right:1px solid #d8d8d8;
        background-color:#F9F9F9;
}

/* Change background color of links on hover */
ul.tab-navbar li a:hover, ul.tab-navbar li a:focus {
        background-color:#00a0f2;
	color:#FFF;
}

.tabActive {
        background-color:#00a0f2 !important;
        color:#FFF !important;
}

.tabAdd {
}


/* #Tabs END
================================================== */


/* #List
================================================== */
a:focus {
outline: none;
}
a.trigger{
	position: absolute;
	background:#00a1f2 url(../img/plus.png) 6% 55% no-repeat;
	text-decoration: none;
	font-size: 14px;
	letter-spacing:-1px;
	font-family: verdana, helvetica, arial, sans-serif;
	color:#fff;
	padding:4px 12px 6px 28px;
	font-weight: bold;
	z-index:2;

}

a.trigger.right {
	right: 0;
	top:145px !important;
	border-bottom-left-radius: 5px;
	border-top-left-radius: 5px;
	-moz-border-radius-bottomleft: 5px;
	-moz-border-radius-topleft: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-webkit-border-top-left-radius: 5px;
}
a.trigger:hover {
	background-color:#CCC;
}
a.active.trigger {
	background:#00a1f2 url(../img/minus.png) 6% 55% no-repeat;
}
.panel {
	color:#CCC;
	position: absolute;
	display: none;
	background: #000000;
	width: 300px;
	height: auto;
	z-index:1;
}

.panel.right {
	right: 0;
	top:145px !important;
	padding: 40px 10px 20px 10px;
	border-bottom-left-radius: 15px;
	border-top-left-radius: 15px;
	-moz-border-radius-bottomleft: 15px;
	-moz-border-radius-topleft: 15px;
	-webkit-border-bottom-left-radius: 15px;
	-webkit-border-top-left-radius: 15px;
}
.panel p {
	font-size:11px;
	padding:2px !important;
	margin:0px !important;
}

table.viewTable {
	border-collapse: collapse !important;
	padding:0px !important;
	margin:0px !important;
	border-width:1px;
	border-color:#fff !important;
   	font-size: 11px;
	background:#fff;
	color:#000;
    	width: 100%;
}

table.viewTable th {
	background: #eaebec;
	border: 1px solid #ccc;
	color: #000;
	padding:3px;
	text-align: left;
	font-weight:bold;
}

table.viewTable td {
	border: 1px solid #ccc;
	padding:2px;
	text-align: left;
	max-width:100px;
	text-overflow: ellipsis;
	overflow:hidden;
}

table.viewTable tr {
}

#save {
	padding:4px;
	margin-bottom:8px;
}

.sup {
color:#000;
font-size:50%;
vertical-align: super;
}


/* #Profile
================================================== */
.tabs {
      position: relative;   
      min-height: 300px; /* This part sucks */
      clear: both;
      margin: 25px 0;
    }
    .tab {
      float: left;
    }
    .tab label {
      background: #eee; 
      padding: 10px; 
      border: 1px solid #ccc; 
      margin-left: -1px; 
      position: relative;
      left: 1px; 
    }
    .tab [type=radio] {
      display: none;   
    }
    [type=radio]:checked ~ label {
      background: white;
      border-bottom: 1px solid white;
      z-index: 2;
    }
    [type=radio]:checked ~ label ~ .content {
      z-index: 1;
    }




/* #Groups
================================================== */
.showHide {
	float:right;
	font-size:11px;
	padding:4px 0px;
}

.barDiv {
	background:#f9f9f9;
	border-bottom:1px solid #ececec;
	height:12px;
}

/* #Contact Page
================================================== */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

audio,
canvas,
img,
video {
    vertical-align: middle;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
width:100%;
}

.spacer {
clear:both; height:1px;
}

.tut-video {
border: 1px solid #ddd;
border: 1px solid rgba(0,0,0,0.15);
padding:1px;
}
.video-holder {
border: 1px solid #ddd;
border: 1px solid rgba(0,0,0,0.15);
padding: 2%;
background-color: #fff;
border-radius: 2px;
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* ==========================================================================
   Form
   ========================================================================== */
.formage {
	margin:10px 0;
    	width: 100%;
}


.formage label, .formLabel {
  color:#00a0f2;
  text-transform: uppercase;
  font-size: 12px;
  padding:9px 0px;
  display: block;
}

.formage .small {
	color: #666666;
	text-align:justify;
	font-weight:normal;
	font-size:90%;
}

.formage input {
  box-sizing: border-box;
  width: 50%;
  padding: 12px;
  display: block;
  box-shadow: none;
  font-weight: 600;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #dddddd;
  line-height: 20px;
  background: #fcfcfc;
  margin-bottom: 12px;
  background: linear-gradient(to right, white 50%, #fcfcfc 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  transition: all 300ms ease-in-out;
white-space: pre;
  word-break: break-word;
}

.formage textarea {
	font-size:12px;
	padding:3px;
	border:solid 1px #CCC;
	width:200px;
}

#plView button {
	margin:14px 2px 0px 2px;
	display:block;
	width:125px;
	height:31px;
	background:#119bfd;
	text-align:center;
	line-height:31px;
	color:#FFFFFF;
	font-size:14px;
	font-weight:bold;
}

.blueTr, .blueTr a {
	background:#00a1f2 !important;
	color:#ffffff !important;
}

.formage .tit {
	color:#119bfd;
	font-size:12px;
}

.formage .medium {
	color: #666666;
	font-weight:normal;
	font-size:12px;
	padding:0 0 0 2px;
	text-align:right;	
}

.errors {
	display:block;
	font-weight:bold;
	color: #bd0000;
	font-size:12px;

}

.success {
        display:block;
        color: #444;
        font-size:12px;
        font-family:Geneva;
}

.upload {
-webkit-box-shadow: 0 8px 6px -6px black;
-moz-box-shadow: 0 8px 6px -6px black;
box-shadow: 0 8px 6px -6px black;
border: 1px solid #E6E6E6;
  margin: 40px 0px;  
  padding: 10px;
}
.upload h4 {

}

.message {
	display:block;
	font-weight:bold;
	color: #ff0000;
	font-size:14px;
	font-style:italic;
	font-family:Georgia;
}

.systemMsg {
font-size:11px;
padding:8px;
}

.strong {
font-weight:bold;
color:#000;
font-size:90%;
}

#form {
height:auto;
}

/* #Pagination
================================================== */
.searchDiv {
	color:#00a1f2;
	font-size:12px;
        font-weight:bold;
        font-style:italic;
	margin-bottom:10px;
}

#search {
	display:inline;
}

.pagination {
margin-top:10px;
}

.pagination {
  text-align: center; }
  .pagination ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center; }
  .pagination li {
    display: inline; 
margin-right:4px;
}
  .pagination a {
    border-radius: 3px;
    box-shadow: rgba(0, 0, 0, 0.2) 0 0 0 1px;
    margin: 1px 2px;
    padding: 5px 10px;
    display: inline-block;
    border-top: 1px solid #fff;
    text-decoration: none;
    color: #717171;
    font-size: smaller;
    font-weight:bold;
    text-shadow: white 0 1px 0;
    background-color: #f5f5f5;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#eaeaea));
    background-image: -webkit-linear-gradient(top, #f9f9f9, #eaeaea);
    background-image: -moz-linear-gradient(top, #f9f9f9, #eaeaea);
    background-image: -ms-linear-gradient(top, #f9f9f9, #eaeaea);
    background-image: -o-linear-gradient(top, #f9f9f9, #eaeaea);
    background-image: linear-gradient(top, #f9f9f9, #eaeaea);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f9f9f9', EndColorStr='#eaeaea'); }
    .pagination a:first-child, .pagination a.first {
      margin-left: 0; }
    .pagination a:last-child, .pagination a.last {
      margin-right: 0; }
    .pagination a:hover, .pagination a:focus {
      border-color: #fff;
      background-color: #fdfdfd;
      background-image: -webkit-gradient(linear, left top, left bottom, from(#fefefe), to(#fafafa));
      background-image: -webkit-linear-gradient(top, #fefefe, #fafafa);
      background-image: -moz-linear-gradient(top, #fefefe, #fafafa);
      background-image: -ms-linear-gradient(top, #fefefe, #fafafa);
      background-image: -o-linear-gradient(top, #fefefe, #fafafa);
      background-image: linear-gradient(top, #fefefe, #fafafa);
      filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#fefefe', EndColorStr='#fafafa'); }
    .pagination a.more {
      box-shadow: 0 0 0 0 transparent;
      border: 0 none;
      background: transparent;
      margin-left: 0;
      margin-right: 0; }
    .pagination .active a {
      box-shadow: rgba(0, 0, 0, 0.75) 0 0 0 0 inset;
      border-color:#CCC;
      color:#FFF;
      text-shadow: black 0 1px 0;
      background-color:#00a1f2;
      background-image: -webkit-gradient(linear, left top, left bottom, from(#00a1f2), to(#23b3fc));
      background-image: -webkit-linear-gradient(top, #00a1f2, #23b3fc);
      background-image: -moz-linear-gradient(top, #00a1f2, #23b3fc);
      background-image: -ms-linear-gradient(top, #00a1f2, #23b3fc);
      background-image: -o-linear-gradient(top, #00a1f2, #23b3fc);
      background-image: linear-gradient(top, #00a1f2, #23b3fc);
      filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#00a1f2', EndColorStr='#23b3fc'); }

.disabled {
border:none !important;
pointer-events: none;
cursor: default;
}

/* #Media Queries
================================================== */
	
	/* iPad Portrait/Browser */
	@media only screen and (min-width: 768px) and (max-width: 991px) {}
	
	/* Mobile/Browser */
        @media only screen and (max-width: 767px) {
		
		h2 { font-size: 21px; line-height: 22px; margin-bottom: 16px; }
		h3 { font-size: 18px; line-height: 20px; margin-bottom: 8px; }
		h4 { font-size: 16px; line-height: 18px; margin-bottom: 4px; }
		h5 { font-size: 14px; line-height: 16px; }
		
		.container {
			padding:15px 0;
			margin-top:40px;
		}

		header {
			position: fixed;
			height:60px;
			top:0px;
			z-index:100;
		}

		#accInfo {
			position: fixed;
			top: 0px;
			left:auto;
			right:3%;
			padding:2px 0px;
		}

		#subhead {
			display:none;
		}

		#logo {
			position: absolute;
			right:50%;
			left:auto;
			top:10px;
			padding:0;
			margin-right:-101px;
		}
	
		nav {
			float:left;
			background-image:none;
		}

		#menu-icon {
			display:inline-block;
			padding:10px 0 0 0;
		}

		nav ul, nav:active ul { 
			display:none;
			position: absolute;
			padding: 2px;
			background: #fff;
			left: 0px;
			top: 0px;
			width: 100%;
		}

		nav:hover ul {
			display:block;
                        border-bottom:1px solid #E6E6E6;
		}

		nav ul li {
			text-align: left;
			width: 100%;
			padding: 12px 0px 12px 10px;
			margin: 0;
                        font-size:12px;
		}

		nav ul li ul {
			border:none !important;
			position: absolute;
			top: 13px !important;
			left: 70px !important;
			width:auto;
			padding:0px !important;
			margin:0px !important; 
		}
		
		nav ul li ul li {
                        display:inline !important;
			font-size:12px;
                        text-align: left;
			border:none;
                        border-left:1px solid #E6E6E6;
                        padding:0px 10px !important;
                        margin:0px !important;
		}

		#preFoot {
			margin:20px 0px;
		}

		.footer-container {
			padding:0px;
			margin:0px;
		}

		.footer-container footer {
			padding:4px 0px;
    			font-size:10px;
			text-align:center;
			width:100%;
		}

		.panel {
			width:85% !important;
		}

		.panel.right {
			right: 0;
			top:115px !important;
		}
		a.trigger.right {
			top:115px !important;
		}

    		.viewTable thead {
       			display: table-header-group !important;
    		}
    		.viewTable tbody {
       			display: table-row-group !important;
    		}
    		.viewTable th {
       			display: table-cell;
    		}
    		.viewTable td {
       			display: table-cell !important;
    		}
    		.viewTable tr {
       			display: table-row !important;
    		}

		.two-col {
			display:block;
			width:100%;
		}

		.showHide {
        		float:none;
        		font-size:11px;
        		padding:0px;
		}
	}
	
	/* Mobile Landscape/Browser */
	@media only screen and (min-width: 480px) and (max-width: 767px) {}
	
	/* Anything smaller than standard 960 */
	@media only screen and (max-width: 959px) {		
	}
	
	/* iPad Portrait Only */
	@media only screen and (min-width: 768px) and (max-width: 991px) and (max-device-width: 1000px) {}
	
	/* Mobile Only */
	@media only screen and (max-width: 767px) and (max-device-width: 1000px) {}
	
	/* Mobile Landscape Only */
	@media only screen and (min-width: 480px) and (max-width: 767px) and (max-device-width: 1000px) {}
	

/* #Font-Face
================================================== */
/* 	This is the proper syntax for an @font-face file 
		Just create a "fonts" folder at the root, 
		copy your FontName into code below and remove
		comment brackets */
		
/*	@font-face {
	    font-family: 'FontName';
	    src: url('../fonts/FontName.eot');
	    src: url('../fonts/FontName.eot?iefix') format('eot'),
	         url('../fonts/FontName.woff') format('woff'),
	         url('../fonts/FontName.ttf') format('truetype'),
	         url('../fonts/FontName.svg#webfontZam02nTh') format('svg');
	    font-weight: normal;
	    font-style: normal; }
*/
