/* General Resets */
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	font-family: arial, sans-serif;
	color: #696969;
	margin: 0;
}

strong {
	font-weight: bold;
}

/* Links */

a {
	color: #4cb60e;
}

a:hover {
	text-decoration: none;
}

a:focus {
	outline: 0;
}

a:active,
a:hover {
	outline: 0;
}

/* Headings */

h1 {
	color: #0a4776;
	font-weight: normal;
}

h2 {
	margin-bottom: .33em;
}

/* Menu and Lists */
nav ul,
nav ol {
	list-style: none;
	list-style-image: none;
}

/* ========= Structure and Styles =========== */

.floatLeft {
	display: block;
	float: left;
}

.hide {
	display: block;
}

#wrapper {
	display: block;
	margin: 0 auto;
	width: 100%;
	height: auto;
	min-height: 500px;
}

#banner {
	height: auto;
	display: block;
	min-height: 130px;
	width: 100%;
	background: url(../images/graphic.png) left no-repeat #f2f2f2;
	box-shadow: 0px 4px 3px #4f4f4f;
	z-index: 50;
	position: relative;
}

#logo {
	width: 94%;
	max-width: 534px;
	display: block;
	margin: 0 auto;
	padding: 10px 0;
}

#nav {
	display: block;
	width: 100%;
	background: #0a4776;
	text-align: center;
	margin-top: -0px;
	z-index: 10;
	position: relative;
	box-shadow: 0px 1px 2px #4f4f4f;
}

#nav ul {
	text-transform: uppercase;
	margin: 0;
	padding: 0;
}

#nav ul li {
	list-style: none;
	display: inline-block;
	border-right: solid 1px #fff;
	margin-right:-3px;
	font-size: 0.8em;
}

#nav ul li:hover {
	background-color:#053961;
}

#nav a {
	color: #fff;
	text-decoration: none;
	display:block;
	height:100%;
	width:100%;
	padding: 14px 16px;
}

#banner-btns {
	display: block;
	position: absolute;
	left: 67%;
	bottom: 0px;
	height: 26px;
	width: 224px;
}

#log-in-nav a {
	background: url(../images/log_in_btn.png) no-repeat;
	display: block;
	z-index: 60;
	height: 26px;
	width: 66px;
	float: right;
}

#log-in-nav a:hover, #log-in-nav a:focus, #log-in-nav a:active {
	background: url(../images/log_in_btn_hover.png) no-repeat;
}

#log-out-nav a {
	background: url(../images/log_out_btn.png) no-repeat;
	display: block;
	z-index: 60;
	height: 26px;
	width: 66px;
	float: right;
}

#log-out-nav a:hover, #log-out-nav a:focus, #log-out-nav a:active {
	background: url(../images/log_out_btn_hover.png) no-repeat;
}

#sign-up-nav a {
	background: url(../images/sign_up_btn.png) no-repeat;
	display: block;
	z-index: 60;
	height: 26px;
	width: 96px;
	float: right;
}

#sign-up-nav a:hover, #sign-up-nav a:focus, #sign-up-nav a:active {
	background: url(../images/sign_up_btn_hover.png) no-repeat;
}

#navBorderBottom {
	display: block;
	width: 100%;
	background: #66c81c;
	height: 10px;
	margin-top: -4px;
	z-index: 8;
	position: relative;
}

#content {
	width: 90%;
	max-width: 1000px;
	min-height: 400px;
	display: block;
	margin: 40px auto 60px auto;
	position: relative;
}

#topContent {
	max-width: 800px;
	display: block;
	margin: 0 auto;
}

.contentBox {
	width: 48%;
	max-width: 350px;
	position: relative;
	padding-left: 15px;
	padding-top: 7px;
	vertical-align: middle;
}

.contentBox img {
	margin: 15px;
}

#bottomContent {
	width: 100%;
	min-height: 200px;
	max-width: 1000px;
	background-image: url(../images/line_shadow.jpg);
	background-size: 100% auto;
	background-repeat: no-repeat;
	clear: both;
}

#try-now a {
	height: 97px;
	width: 320px;
	display: block;
	margin: 20px auto;
	position: relative;
	top: 50px;
	background: url(../images/try_btn.png) no-repeat;
}

#try-now a:hover, #try-now a:focus, #try-now a:active {
	background: url(../images/try_btn_hover.png) no-repeat;
}

#footer {
	background: #0a4776;
	bottom: 0px;
	display: block;
	text-align: center;
	width: 100%;
	font-size: 0.8em;
	border-top: 4px solid #66c81c;
	color: #fff;
	clear: both;
}

#footer ul {
	margin: 0;
	padding: 12px;
}

#footer ul li {
	display: inline-block;
	padding: 3px 7px;
}

#footer a {
	color: #fff;
}

#copyright {
	display: inline-block;
	margin-bottom: 15px;
	font-size: 0.8em;
}

@media only screen and (min-width: 740px) and (max-width: 999px) {
	
	#banner {
		min-height: 115px;
	}

}
/* End Tablet Media Query */

/* ==========================================================================
/* -- Mobile Devices (Layout, Modifications, etc)
	 ========================================================================== */
@media only screen and (max-width: 739px) {
	
	#banner {
		background: #f2f2f2;
		min-height: 90px;
	}
	
	#banner-btns {
		position: absolute;
		top: 2px;
		left: 2px;
	}
	
	#logo {
		padding-top: 35px;
		transition: padding-top .5s ease;
	}
	
	#nav ul li {
		padding: 12px 9px;
		transition: padding .5s ease;
	}
	
	#content {
		min-height: 460px;
	}
	
	.contentBox {
		clear: both;
	}
	
	.contentBox img {
		margin: 10px auto;
		display: block;
	}
	
	.hide {
		display: none;
	}
	
	.contentBox {
		width: 99%;
		max-width: 735px;
	}
	
	#footer {
		position: relative;
	}
}

/* CUSTOM STYLES */

.label {
	font-weight: bold;
	text-align: right;
}

.button-image {
	vertical-align: middle;		
}

.custom-button {
	display: inline-block;
	border: 1px solid #000000;
	background-color: #CCCCCC;
	padding: 1px 5px 1px 1px;
	font-size: 1em;
	cursor: pointer;
}

.delete-icon {
	vertical-align: middle;
	cursor: pointer;
}

.error-field {
	background-color: #FF8888;
}

.error-message {
	color: #FF0000;
}

.job-headers {
	font-weight: bold;
}

.angled-text {
	width: 20px;
	white-space: nowrap;
	padding-left: 3px;
	padding-right: 3px;

	-webkit-transform: rotate(-45deg);	/* Chrome, Safari 3.1+ */
	-ms-transform: rotate(-45deg);		/* IE 9 */
	-moz-transform: rotate(-45deg);		/* Firefox 3.5/3.6 */
	-o-transform: rotate(-45deg);		/* Opera 10.5 */
	transform: rotate(-45deg);			/* generic - newer browsers incl IE 10+ */
}

.truncated-text {
	width: 50px;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
}

.checkbox-cell {
	text-align: center;
	vertical-align: middle;
}

.hidden {
	display: none;
}

#ui-datepicker-div {
	font-size: 0.7em;
}

.ui-datepicker-trigger {
	vertical-align: top;
}

.ui-accordion .ui-accordion-header {
	padding-top: 0px;
	padding-bottom: 0px;
}

.ui-accordion-content {  
    font-size: 10pt;  
}  

.ui-button-text-only .ui-button-text {
	padding: 2px 4px 2px 4px;
}

.ui-dialog .ui-dialog-titlebar {
	padding: 0px 4px 0px 4px;
}

.ui-dialog .ui-dialog-title {
    font-size: 12pt;  
}

.ui-dialog-content {  
    font-size: 10pt;
}  

/* major image buttons */

#sign-up a{
	background: url(../images/sign_up_btn_blue_new.png) no-repeat;
	display: inline-block;
	height: 32px;
	width: 88px;
	z-index: 60;
	vertical-align: middle;
}

#sign-up a:hover, #sign-up a:focus, #sign-up a:active{
	background: url(../images/sign_up_btn_blue_new_hover.png) no-repeat;
}

#log-in a {
	background: url(../images/log_in_btn_blue_new.png) no-repeat;
	display: inline-block;
	height: 32px;
	width: 76px;
	z-index: 60;
}

#log-in a:hover, #log-in a:focus, #log-in a:active {
	background: url(../images/log_in_btn_blue_new_hover.png) no-repeat;
}

#send-password a{
	background: url(../images/send_pw_blue.png) no-repeat;
	display: inline-block;
	height: 32px;
	width: 156px;
	z-index: 60;
	vertical-align: middle;
}

#send-password a:hover, #send-password a:focus, #send-password a:active{
	background: url(../images/send_pw_blue_hover.png) no-repeat;
}

#save-changes a{
	background: url(../images/save_btn.png) no-repeat;
	display: inline-block;
	height: 32px;
	width: 116px;
	z-index: 60;
	vertical-align: middle;
}

#save-changes a:hover, #save-changes a:focus, #save-changes a:active{
	background: url(../images/save_btn_hover.png) no-repeat;
}

#change-password a{
	background: url(../images/change_pw_blue.png) no-repeat;
	display: inline-block;
	height: 32px;
	width: 156px;
	z-index: 60;
}

#change-password a:hover, #change-password a:focus, #change-password a:active{
	background: url(../images/change_pw_blue_hover.png) no-repeat;
}

/* minor image buttons */

#add-skill a{
	background: url(../images/skill_btn.png) no-repeat;
	display: inline-block;
	height: 32px;
	width: 156px;
	z-index: 60;
}

#add-skill a:hover, #add-skill a:focus, #add-skill a:active{
	background: url(../images/skill_btn_hover.png) no-repeat;
}

#add-job a{
	background: url(../images/job_btn.png) no-repeat;
	display: inline-block;
	height: 32px;
	width: 156px;
	z-index: 60;
}

#add-job a:hover, #add-job a:focus, #add-job a:active{
	background: url(../images/job_btn_hover.png) no-repeat;
}

.download-image a{
	background: url(../images/download_btn.png) no-repeat;
	display: inline-block;
	height: 32px;
	width: 156px;
	z-index: 60;
	vertical-align: middle;
}

.download-image a:hover, .download-image a:focus, .download-image a:active{
	background: url(../images/download_btn_hover.png) no-repeat;
}

/* image preloads */

#sign-up-nav-preload {
	background: url(../images/sign_up_btn_hover.png) no-repeat -9999px -9999px;
}

#log-in-nav-preload {
	background: url(../images/log_in_btn_hover.png) no-repeat -9999px -9999px;
}

#log-out-nav-preload {
	background: url(../images/log_out_btn_hover.png) no-repeat -9999px -9999px;
}

#sign-up-preload {
	background: url(../images/sign_up_btn_blue_new_hover.png) no-repeat -9999px -9999px;
}

#log-in-preload {
	background: url(../images/log_in_btn_blue_new_hover.png) no-repeat -9999px -9999px;
}

#send-password-preload {
	background: url(../images/send_pw_blue_hover.png) no-repeat -9999px -9999px;
}

#try-now-preload {
	background: url(../images/try_btn_hover.png) no-repeat -9999px -9999px;
}

#add-skill-preload {
	background: url(../images/skill_btn_hover.png) no-repeat -9999px -9999px;
}

#add-job-preload {
	background: url(../images/job_btn_hover.png) no-repeat -9999px -9999px;
}

#save-changes-preload {
	background: url(../images/save_btn_hover.png) no-repeat -9999px -9999px;
}

#download-image-preload {
	background: url(../images/download_btn_hover.png) no-repeat -9999px -9999px;
}

#change-password-preload {
	background: url(../images/change_pw_blue_hover.png) no-repeat -9999px -9999px;
}
