/*== 
File:  /acquisitionacademy/styles/site-styles.css
Description:  Styles for the Academy INTERnet web site.
== */

.acenter { text-align: center; }
.aleft { text-align: left; }
.aright { text-align: right; }

/*==  A-Z List Styles  ==*/
#abcNav {
	margin: 0 0 10px;
	}

#abcNav ul {
	margin: 0;
	padding: 0; 
	border-left: 1px solid silver;
	overflow: hidden;
	}

#abcNav ul li {
	list-style-type: none;
	float: left;
	}

#abcNav ul a {
	font-size: 0.9em; 
	display: block;
	padding: 2px 6px; 
	border: 1px solid silver; 
	border-left: none; 
	text-decoration: none;
	}

#abcNav ul a:hover {
	background-color: #eaeaea;
	}

#abcNav ul li.active {
	background-color: #eaeaea;
	}

#abcNav ul li.disabled { 
	color: #ccc;
	font-size: 0.9em; 
	float: left; 
	padding: 2px 6px; 
	border: 1px solid silver; 
	border-left: none;
	}

/*==  Button and Button Dropdown  ==*/
.button {
  background-color: #2C6330; /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 10px;
  font-size: 16px;
}

.button1 {
    background-color: #003f72;
    border: none;
    color: white;
    padding: 6px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1em;
	margin: 0px;
    cursor: pointer;
	border-radius: 4px;
	}

.button1:hover {
    background-color: #0083be;
	color: white;
	text-decoration: none;
	}
	
.dropbtn {
    background-color: #003f72;
    color: white;
    padding: 6px;
    font-size: 1em;
    border: none;
	margin: 0px;
    cursor: pointer;
	border-radius: 4px;
	}

.dropdown {
    position: relative;
    display: inline-block;
	}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	}

.dropdown-content a {
    color: black;
    padding: 8px 6px;
    text-decoration: none;
    display: block;
	}

.dropdown-content a:hover {
	background-color: #f1f1f1;
	}

.dropdown:hover .dropdown-content {
    display: block;
	}

.dropdown:hover .dropbtn {
    background-color: #0083be;
	}

.button1, .dropbtn a:visited, a:active {
	color: white !important;
	}

.dropdown-content a:visited, a:active {
	color: black !important;
	}
	
	
/*==  Accordion  ==*/
.pleat {
	background: #003F72; /*linear-gradient(#111, #333)*/;
	color: #fff;
	/*padding-top: 5px;*/
	border-top: solid 1px #444;
	box-shadow: 0 1px 2px #000;
	line-height: 25px;
	}

.pleatRadio {
	opacity: 0;
	position: absolute;
	}

.pleatRadio, .pleatRadioLabel {
	display: inline-block;
	vertical-align: middle;
	margin: 5px;
	cursor: pointer;
	}

.pleatRadioLabel { position: relative;
 }

.pleatRadio + .pleatRadioLabel:before {
	content: "\25BA";
	font-family:'Arial';
	font-size: 10pt;
	/*border-radius: 50%*/
	/*border: 2px solid transparent;*/
	display: inline-block;
	vertical-align: top;
	/*width: 10px;*/
	/*height: 10px;*/
	/*padding: 2px;*/
	margin: 0px 10px 0px 0px;
	text-align: center;
	}

.pleatRadio:checked + .pleatRadioLabel:before {
	content: "\25BC";
	color: #bbb;
	}

.pleatRadio:checked + .pleatRadioLabel:before ~ .pleatInfo {
	}

.pleat input[type='radio'] {
	margin: 0px;
	cursor: pointer;
	}

.pleat input[type='radio']:checked ~ .pleatInfo {
	height: 200px;
	transition: .1s linear;
	}

.pleat label {
	/*width: 470px;*/
	margin-left: 10px;
	cursor: pointer;
	}

.pleatInfo {
	background: #f5f5f5;
	color: #222;
	width: 100%;
	height: 0;
	overflow:auto;
	padding-left: 15px;
	display: block;
	box-sizing: border-box;
	border-right: 1px solid #e5e5e5;
	transition: .1s linear;
	} 

.pleat h4 {
	color: #111;
	text-align: right;
	text-shadow: 1px 1px 2px #fff;
	position: absolute;
	bottom: 20px;
	right: 15px;
	}

.pleat h4 a {
	color: #111;
	text-decoration: none;
	}

::selection {
	background: #222; color: #f5f5f5;
	}

::-moz-selection { /* Code for Firefox */
	background: #222; color: #f5f5f5;
	}

	
/*==  Alignment Styles  == */
.acenter {
	text-align: center;
	}

.aleft {
	text-align: left;
	}

.aright {
	text-align: right; 
	}

.divBorderLeft {
	border-left: solid thin #cccccc;
	}
	
.divBorderReft {
	border-Right: solid thin #cccccc;
	}


/*==  Header Styles  == */
h3.bgLtgrey {
	background-color: #f5f5f5;
	padding: 8px;
  border-radius: 8px;
	}

	
/*==  Highlight Box with grey background  == */
.grey_box {
	clear: both;
	margin: 0 0 25px 0;
	border: 1px solid #c1c1c1;
	background: #f8f8f8;
	padding: 20px;
	-webkit-box-shadow: inset 0px 0px 25px 0px rgba(0, 0, 0, .1);
	-moz-box-shadow: inset 0px 0px 25px 0px rgba(0, 0, 0, .1);
	box-shadow: inset 0px 0px 25px 0px rgba(0, 0, 0, .1); }

.grey_box h2 {
	margin: -5px 0 3px 0;
	font-size: 1.8em;
	padding: 0;
	text-align: left;
	}
 
.grey_box h3 {
	margin: 0 0 5px 0;
	padding: 0;
	font-size: 1.6em;
	}

.grey_box h4 {
	margin: 0;
	padding: 0;
	font-size: 1.2em;
	text-align: left;
	}

.grey_box ul {
	margin-top: 8px;
	padding-top: 0;
	padding-bottom: 0;
	margin-left: 35px;
	}

.grey_box ul li {
	margin-top: 3px;
	list-style: circle outside;
	padding-left: 5px;
	}


/*==  Column Styles  == */
/*==  columns are sized by %, numbers indicate what percent  ==*/
/*==  "l" is for left-floating columns, "r" for right  ==*/
.c20l, .c23l, .c25l, .c29l, .c30l, .c33l, .c35l, .c38l, .c40l, .c45l, .c48l, .c50l, .c55l, .c60l, .c62l, .c65l, .c66l, .c70l, .c75l, .c77l, .c80l {
	float: left;
	}

.c20r, .c23r, .c25r, .c29r, .c30r, .c33r, .c35r, .c38r, .c40r, .c45r, .c48r, .c50r, .c55r, .c60r, .c62r, .c65r, .c66r, .c70r, .c75r, .c77r, .c80r {
	float: right; margin-left: -5px;
	}

.c20l, .c20r {
	width: 20%;
	}

.c23l, .c23r {
	width: 23%;
	}
	
.c25l, .c25r {
	width: 25%;
	}
	
.c29l, .c29r {
	width: 29%;
	}
	
.c30l, .c30r {
	width: 30%;
	}
	
.c33l, .c33r {
	width: 33.333%;
	}
	
.c35l, .c35r {
	width: 35%;
	}
	
.c38l, .c38r {
	width: 38%;
	}
	
.c40l, .c40r {
	width: 40%;
	}
	
.c45l, .c45r {
	width: 45%;
	}
	
.c48l, .c48r {
	width: 48%;
	}
	
.c50l, .c50r {
	width: 50%;
	}
	
.c55l, .c55r {
	width: 55%;
	}
	
.c60l, .c60r {
	width: 62%;
	}
	
.c62l, .c62r {
	width: 62%;
	}
	
.c65l, .c65r {
	width: 65%;
	}
	
.c66l, .c66r {
	width: 66.666%;
	}
	
.c70l, .c70r {
	width: 70%;
	}
	
.c75l, .c75r {
	width: 75%;
	}
	
.c77l, .c77r {
	width: 77%;
	}
	
.c80l, .c80r {
	width: 80%;
	}
	
/*==  use this inside of ALL columns to create padding, otherwise columns will stretch in certain browsers  ==*/
.inner {
	padding: 5px; overflow: hidden;
	}

	
/*==  Course Navigation Styles  ==*/
#courseNav {
	margin-top:15px;
	}

#courseNav ul {
	list-style:none;
	position:relative;
	float:left;
	margin:0;
	padding:0 0 0 10;
	}

#courseNav ul a {
	display:block;
	color:#333;
	text-decoration:none;
	font-weight:700;
	font-size:12px;
	line-height:32px;
	padding:0 15px;
	font-family:"HelveticaNeue","Helvetica Neue",Helvetica,Arial,sans-serif;
	}

#courseNav ul li {
	position:relative;
	float:left;
	border: thin solid #ccc;
	background:#f8f8f8;
	}

#courseNav ul li.current-menu-item {
	background:#ccccff;
	}

#courseNav ul li:hover {
	background:#99ccff;
	}

#courseNav ul ul {
	display:none;
	position:absolute;
	top:100%;
	left:0;
	background:#fff;
	padding:0;
	}

#courseNav ul ul li {
 	float:none;
	float:left;
	width:200px;
	}

#courseNav ul ul a {
 	line-height:120%;
	padding:10px 15px;
	}

#courseNav ul ul ul {
	top:0;
	left:100%;
	}

#courseNav ul li:hover > ul {
	display:block;
	}		

#courseNav ul li.courseNavBullet, ul ul li.courseNavBullet {
	list-style: none !important;
	margin:0px 0px 0px -5px !important;
	padding-right: 25px !important;
	}
	

/*==  Font Styles==  */
.fontBold { font-weight: bold; }
.fontItalic { font-style: italic; }
.fontSmallCaps { font-variant: small-caps; }

.fontXlarge {
	font-size: 130%;
	}
	
.fontLarge {
	font-size: 115%;
	}
	
.fontSmall {
	font-size: 90%;
	}
	
.fontXsmall {
	font-size: 80%;
	}

.fontDarkRed {
	color: #772432;
	}
	
.fontPrimaryBlue, .fontNavy {
	color: #003F72;
	}
	
.fontPrimaryRed {
	color: #c4262e;
	}
	
.fontVibrant01 {
	color: #5261ac;
	}
	
.fontVibrant02 {
	color: #ffcf01;
	}
	
.fontVibrant03 {
	color: #fbb161;
	}
	
.fontVibrant04 {
	color: #0194d3;
	}
	
.fontVibrant05 {
	color: #a1a1a4;
	}
	
.fontVibrant06 {
	color: #c0ae00;
	}
	
.fontVibrant07 {
	color: #7ac143;
	}
	
.fontVibrant08 {
	color: #f78f1e;
	}
	
.fontVibrant09 {
	color: #00afdb;
	}
	
.fontVibrant10 {
	color: #fdb913;
	}
	
.fontVibrant11 {
	color: #e2e477;
	}
	
.fontVibrant12 {
	color: #e31b23;
	}
	
.fontWhite {
	color:#ffffff;
	}

.fontBlack {
	color:#000000;
	}

/*==  Form Styles  ==*/
form.vaaa-form {
	width: 100%;
	}

form.vaaa-form fieldset {
	border: 1px solid #ececec;
	padding: 5px 8px;
	}

form.vaaa-form legend {
	color: #003f9e;
	font: bold 1.25em/1.5em Georgia,"Times New Roman",Times,serif;
	}

	
/*==  Site Home Navigation  ==*/
#navMainIcon { 
	width: 100%;
	max-height: 100%;
	padding: 10px;
	}

#navMainIcon ul {
	clear: both;
	margin: 0px;
	padding: 0px;
	}

#navMainIcon ul li {
	list-style-type: none;
	max-width: 480px;
	height: 110px;
	background-color: #ffffff;
	float: left;
	display: block;
	padding: 0 15px 0 112px;
	font-size: .9em;
	color: #333333;
	text-align: left;
	}

#navMainIcon li h2 {
	margin: 0;
	font-weight: normal;
	font-family: Georgia, "Times New Roman", Times, serif;
	line-height: normal;
	padding: 10px 0 0 0;
	border-bottom: 1px dotted #999999;
	}

#navMainIcon ul li a, a:visited {
	text-decoration: none;
	color: #004d70;
	}

#navMainIcon ul li a:hover {
	text-decoration: underline;
	}

#navMainIcon li.vaaa { 
	background: url("/acquisitionacademy/images/iconMainVaaa.png") no-repeat scroll left center #ffffff; color:#333333; background-color:#f5f5f5;
	}

#navMainIcon li.ais { 
	background: url("/acquisitionacademy/images/iconMainAis.png") no-repeat scroll left center #ffffff; color:#333333;
	}

#navMainIcon li.cps { 
	background: url("/acquisitionacademy/images/iconMainCps.png") no-repeat scroll left center #ffffff; color:#333333; background-color:#f5f5f5;
	}

#navMainIcon li.ppms { 
	background: url("/acquisitionacademy/images/iconMainPpms.png") no-repeat scroll left center #ffffff; color:#333333;
	}

#navMainIcon li.scms { 
	background: url("/acquisitionacademy/images/iconMainScms.png") no-repeat scroll left center #ffffff; color:#333333; background-color:#f5f5f5;
	}

#navMainIcon li.creg { 
	background: url("/acquisitionacademy/images/iconMainCreg.png") no-repeat scroll left center #ffffff; color:#333333;
	}

/*#navMainIcon li.fms { 
	background: url("/acquisitionacademy/images/iconMainFms.png") no-repeat scroll left center #ffffff; color:#333333;
	}*/


/*==  Image Styles  ==*/
img.imgrt {
	float: right;
	border: none !important; 
	padding: 0px 0px 8px 8px;
	}

img.imglt {
	float: left; 
	border: none !important; 
	padding: 0px 8px 8px 0px;
	}

img.responsive {
	max-width: 100%;
	}

	
/*==  List Styles  ==*/
.listCheckmark {
	margin-left: 22px;
	padding: 5px 0px 5px 0px;
	line-height: 140%;
	list-style-image: url('/acquisitionacademy/images/bulletCheckmark.png');
	}

ol.decimalLeadingZero {
	list-style-type: decimal-leading-zero;
	}

ol.lowerAlpha {
	list-style-type: lower-alpha;
	}

ol.lowerRoman {
	list-style-type: lower-roman;
	}

ol.upperAlpha {
	list-style-type: upper-alpha;
	}

ol.upperRoman {
	list-style-type: upper-roman;
	}

.olist {
	list-style-position: outside;
	padding-left: 40px;
	}

ol.spacedList li, ul.spacedList li {
	margin-bottom: 1.25em;
	}

ul.outside {
	list-style-position: outside;
	}

ul.borderList li {
	list-style-type: none;
	border-top: 1px dotted #ccc;
	display: block;
	/*padding: .5em 0 0;*/
	padding: 0.25em 0;
	overflow: hidden; }

ul.circle {
	list-style-type: circle;
	}

ul.disc {
	list-style-type: disc;
	}

ul.noBullet li {
	list-style-type: none;
	display: block;
	/*padding: .5em 0 0;*/
	padding: 0.15em 0;
	overflow: hidden;
	}

ul.square {
	list-style-type: square;
	}


/*==  Modal Window  ==*/
.lightbox {
	/**==  Hide the lightbox  ==*/
	display: none;
	/**==  Apply basic lightbox styling  ==*/
	position: fixed;
	z-index: 9999;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	color:#333333;
	}

.lightbox:target {
    /**==  Show lightbox when it is target  ==*/
    display: block;
    outline: none;
	}

.lightbox .box {
  	width: -webkit-min-content;
  	width: -moz-min-content;
  	width: min-content;
	min-width:300px;
 	margin: 2% auto;
	padding:20px;
	background-color:#fff;
	box-shadow: 0px 1px 26px -3px #777777;
	}

.lightbox .title {
	margin:0;
	padding:0 0 10px 0px;
	border-bottom:1px #ccc solid;
	font-size:22px;
	}

.lightbox .content {
	display:block;
	padding:10px 0 0 0px;
	font-size:18px;
	line-height:22px;
	}

.lightbox .close {
	float:right;
	display:block;
	text-decoration:none;
	font-family:Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size:22px;
	color:#858585;
	}

	
/*==  Max Widths  ==*/
.mw300 {
	max-width: 300px;
	}
 
 
/*==  Paragraph Styles  ==*/
p.more a {
	border-top: none;
	display: block;
	background: transparent url(/acquisitionacademy/images/iconMore.png) right center no-repeat;
	text-align:right;
	font-weight: bold;
	padding-right: 10px;
	}

p.moreLeft a {
	border-top: none;
	background: transparent url(/acquisitionacademy/images/iconMore.png) right center no-repeat;
	text-align:left;
	font-weight: bold;
	padding-right: 10px; }

	
/*==  Site Top Navigation  ==*/
#barStandard { 
	max-width: 500px;
	max-height: 100%;
	padding: 10px;
	}

#barStandard ul {
	clear: both;
	margin: 0px;
	padding: 0px;
	}

#barStandard ul li {
	list-style-type: none;
	width: 25%;
	background-color: #003F72;
	float: left;
	font-size: .80em;
	color: #ffffff;
	text-align: left;
	}

#barStandard ul li a {
	text-decoration: none;
	color: #000;
	display: block;
	padding: 10px 5px 10px 40px;
	width: 30px;
	}

#barStandard ul li a:hover {
	text-decoration: underline;
	}

#barStandard a.findCourse { 
	background: url("/acquisitionacademy/images/iconFindCourses.png") no-repeat scroll left center #003f72; color:#ffffff;
	}

#barStandard a.schedule { 
	background: url("/acquisitionacademy/images/iconSchedule.png") no-repeat scroll left center #003f72; color:#ffffff;
	}

#barStandard a.downloadCatalog { 
	background: url("/acquisitionacademy/images/iconDownloadCatalog.png") no-repeat scroll left center #003f72; color:#ffffff;
	}

#barStandard a.connect { 
	background: url("/acquisitionacademy/images/iconConnect.png") no-repeat scroll left center #003f72; color:#ffffff;
	}

#barStandard a.csod { 
	background: url("/acquisitionacademy/images/iconCsod.png") no-repeat scroll left center #003f72; color:#ffffff;
	}


/*==  Table Styles  ==*/
.nowrap {
	white-space: nowrap;
	}

table.tblFaccNav {
	margin: 0px;
	padding: 2px 6px; 
	border: 1px ridge silver;
	}

table.tblFaccNav caption {
	margin: 0;
	padding: 8px 20px;
	font-size: 14px;
	text-align: center;
	border: 1px ridge silver;
	}

table.tblFaccNav td {
	text-align: center;
	}

table.tblFaccNav td.border {
	border-right: 1px ridge silver;
	}

table.tblNoBorder {
	border: none;
	}

table.tblNoBorder caption {
	margin: 0;
	padding: 8px 20px;
	font-size: 16px;
  color: #333333;
	text-align:left;
	}

table.tblNoBorder td {
	margin:0;
	padding: 1px 5px;
	}

table.tblNoBorder thead, table.tblStandard thead {
	margin: 0;
	padding: 8px 6px;
	font-weight: bold;
	}

table.tblNoBorder th {
	color: #000000;
	background: none;
	text-align: center;
	}

table.tblStandard {
	border: 1px solid #000;
	}

table.tblStandard caption {
	margin: 0;
	padding: 8px 20px;
	font-size: 16px;
	text-align:left;
	border: 1px solid #cccccc;
	}

table.tblStandard td {
	margin:0;
	padding: 5px 5px;
	border-bottom: 1px solid #cccccc;
	border-right: 1px solid #cccccc;
	}

table.tblStandard th {
	color: #000000;
	border-bottom: 1px solid #cccccc;
	border-right: 1px solid #cccccc;
	background: none;
	background-color: #f5f5f5;
	text-align: center;
	}

table.tblStandard tr.ltblue, table.tblNoBorder tr.ltblue {
	background: #e1ecf8;
	}

table.tblStandard tr.ltgrey, table.tblNoBorder tr.ltgrey {
	background: #f5f5f5;
	}

table td.vertTop {
	vertical-align: top;
	}

table td.vertMid {
	vertical-align: middle;
	}

table td.vertBtm {
	vertical-align: bottom;
	}


/*==  Text Indents  ==*/
.indent, .indenta {
	text-indent: 15px;
	}

.indent1 {
	padding-left: 30px;
	text-indent: 15px;
	}

.indenti {
	padding-left: 45px;
	text-indent: 15px;
	}

/* ==== BUTTONS ==== */
.button {
  background-color: #4CAF50; /* Green */
  border: none;
  color: white;
  padding: 8px 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  margin: 4px 2px;
  -webkit-transition-duration: 0.4s; /* Safari */
  transition-duration: 0.4s;
  cursor: pointer;
}

.button01 {
  background-color: #1a4480 ; 
  color: #ffffff !important; 
  border: 2px solid #0e2640;
  border-radius: 8px;
  font-size: 1.25em;
  width: 100% !important;
  height: 80px;
}

.button01:hover {
  background-color: #ffffff;
  color: #0e2640 !important;
}

#siteBreadCrumbs {
font-size: .9em;
color: #2e2e2e;
font-weight: 600;/*was normal 12/22/16*/
margin-top: 5px;
margin-bottom: 15px;
font-family: Arial, Helvetica, sans-serif;
}
#siteBreadCrumbs a{ color:#2e2e2e}
#siteBreadCrumbs a:hover, #siteBreadCrumbs a:focus{color:#2e2e2e}

