/* CSS Document */

/* Fonts
"soleto", 300
"soleto", 700

"corporate-a", 300, normal, italic
"corporate-a", 700, normal, italic

*/

html {
    -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape while allowing user zoom */
}

body {
	margin: 0;
	background-color: #fff;
	font-size: 16px;
}




/* ---------- Content Start ---------- */
.logoImage {
	width: 100px;
	height: auto;
	padding-top: 10px;
}

.header-container,
.nav-container {
	margin: 0;
	padding: 0;
}

.header-container {
	background-color: #7f3f98;
	height: 60px;
	padding-left: 20px;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 2;
}

.content-container {
	width: 100%;
	margin: auto;
}

.nav-container {
	width: 250px;
	background-color: #4c265b;
	padding: 20px;
	float: left;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
}

.header,
.nav {
	width: 100%;
	text-align: left;
	margin: 0;
	padding: 0;
	padding: 0;
	float: left;
}

.header {
	position: fixed;
	top: 0;
	left: 20px;
	z-index: 3;
}

.nav {
	padding-top: 60px;
}

.nav ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.nav ul li,
.nav ul li a {
	font-family: "Source Sans Pro", sans-serif;
	font-weight: 300;
	color: #fff;
	font-size: 1em;
	text-decoration: none;
}

.nav ul li a:hover {
	text-decoration: underline;
}

.nav ul li {
	padding: 10px 0;
	border-bottom: 1px solid #3f1f4c;
}

.content {
	margin-left: 250px;
	overflow: hidden;
	padding: 20px 30px;
	margin-top: 60px;
	position: relative;
}

#content {
	position: relative;
	min-height: 200px;
}

.content h1, h2, p {
	font-family: "Source Sans Pro", sans-serif;
	font-weight: 300;
	font-size: 2em;
	color: #555;
	padding: 0;
	margin: 0;
	margin-bottom: 20px;
}

.content h2 {
	font-size: 1.1em;
}

.content p {
	font-size: 1em;
}

.content .strong,
.nav .strong {
	font-weight: 700;
}
	

.content table {
	border-collapse: collapse;
	margin-bottom: 30px;
}

.content table tr td {
	font-family: "Source Sans Pro", sans-serif;
	font-weight: 300;
	font-size: 1em;
	color: #333;
	border-bottom: 1px solid #eee;
	padding: 6px 0;
	padding-right: 40px;
}

.content table tr td a {
	color: #7f3f98;
}

.content table tr td:first-child {
	padding-left: 20px;
}

.content table tr:first-child td {
	border-top: 1px solid #eee;
	font-family: "Source Sans Pro";
	font-size: 0.8em;
	font-weight: 300;
	color: #999;
	background-color: #f6f5f5;
}

/* ---------- Content End ---------- */






/* ---------- Notify Start ---------- */
.notify {
	position: absolute;
	top: 0; left: 0;
	height: 60px;
	font-size: 1.2em;
	line-height: 40px;
	text-align: center;
	width: 100%;
	font-family: "Source Sans Pro";
	font-weight: 700;
	color: #fff;
	padding: 10px;
}

.success {
	background-color: green;
}
/* ---------- Notify End ---------- */





/* ---------- Progress ---------- */
#progress {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0; left: 0;
	background-color: #fff;
	z-index: 1000;
	display: none;
}





/* Full Page settings for Landing Page */

.fullPage {
  display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;      /* TWEENER - IE 10 */
  display: -webkit-flex;     /* NEW - Chrome */
  display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  height: 100%;
}

.fullPage .fullPageRow {
  -webkit-box-flex: 0 1;      /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 0 1;         /* OLD - Firefox 19- */
  -webkit-flex: 0 1;          /* Chrome */
  -ms-flex: 0 1;              /* IE 10 */
  flex: 0 1;
}

.fullPage .fullPageRow.fullPageRowHeader {
  -webkit-box-flex: 0 1 auto;      /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 0 1 auto;         /* OLD - Firefox 19- */
  -webkit-flex: 0 1 auto;          /* Chrome */
  -ms-flex: 0 1 auto;              /* IE 10 */
  flex: 0 1 auto;
}

.fullPage .fullPageRow.fullPageRowContent {
  -webkit-box-flex: 1 1 auto;      /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 1 1 auto;         /* OLD - Firefox 19- */
  -webkit-flex: 1 1 auto;          /* Chrome */
  -ms-flex: 1 1 auto;              /* IE 10 */
  flex: 1 1 auto;
  overflow: hidden;
  background: url('/pics/introImage-1.jpg') no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: relative;
}


/* Tabs */
ul#tabs {
    list-style-type: none;
    padding: 0;
    text-align: left;
	margin: 0;
	overflow: hidden;
	position: relative;
	top: 1px;
	margin-top: 20px;
}
ul#tabs li {
	font-family: "Source Sans Pro";
	font-weight: 700;
	font-size: 1em;
    display: inline-block;
    background-color: #ddd;
    padding: 10px 30px 8px 30px;
    color: #bbb;
    cursor: pointer;
	border: 1px solid #ddd;
}

ul#tabs li:hover {
    background-color: #ddd;
	color: #bbb;
	border: 1px solid #ddd;
	text-decoration: underline;
}
ul#tabs li.active {
    background-color: #fff;
	color: #7f3f98;
	border: 1px solid #ddd;
	text-decoration: underline;
	border-bottom: 1px solid #fff;
}
ul#tab {
    list-style-type: none;
    margin: 0;
    padding: 0;
	border: 1px solid #ddd;
	padding: 10px 30px 20px 30px;
}
ul#tab li {
    display: none;
}
ul#tab li.active {
    display: block;
}


ul#tab li h2,
ul#tab li.active {
	font-size: 1.2em;
	line-height: 1.2em;
}

ul#tab li p,
ul#tab li.active {
	font-size: 1.1em;
	line-height: 1.2em;
}


/* Forms */
.content label {
	font-family: "Source Sans Pro", sans-serif;
	font-weight: 300;
	display: block;
	margin-bottom: 3px;
}

.note {
	color: #aaa;
}
	
.content input[type=text],
.content textarea,
.content select,
.content input[type=submit] {
	padding: 10px 15px;
	font-family: "Source Sans Pro", sans-serif;
	font-size: 1.3em;
	font-weight: 400;
	border: 1px solid #ccc;
	margin-bottom: 20px;
	width: 400px;
	display: block;
	
	-webkit-border-radius: 3px; 
	-moz-border-radius: 3px; 
	border-radius: 3px;
}

.content input[type=submit] {
	background-color: #7f3f98;
	color: #fff;
	border: none;
	margin-top: 40px;
}

.disabled {
	border: 1px solid #ccc;
	background-color: #eee;
	color: #555;
}

.content textarea {
    /*resize: none;*/
	height: 100px;
}

.content select {
	background: transparent;
}

.content input[type=text]:focus,
.content input[type=text]:focus,
.content textarea:focus,
.content select {
	outline: none;
}