/*
	File            : styles/site-styles.css
	Description     : Styles available for use across ORPM web sites.
*/
/* CSS Document */

/* Text Styles */
.acenter { text-align: center; }
.aleft { text-align: left; }
.aright { text-align: right; }

.fontXlarge { font-size: 130%; }
.fontLarge { font-size: 115% }
.fontSmall { font-size: 90%; }
.fontXsmall { font-size: 80%; }

.fontBold { font-weight: bold; }
.fontItalic { font-style: italic; }
.fontSmallCaps { font-variant: small-caps; }
.fontUnderline { text-decoration: underline; }

.fontBlack { color: #000000; }
.fontDarkRed { color: #772432; }
.fontLightBlue {color: #0083be; }
.fontNavy { color: #003F72; }
.fontPrimaryRed { color: #c4262e; }
.fontSecondaryBlueGray { color:#839097; }
.fontSecondaryGreen { color:#598527; }
.fontSecondaryGold { color:#ffd457; }
.fontSecondaryLightGray { color:#dcddde; }
.fontSecondaryOlive { color:#b0b579; }
.fontSecondaryOrange { color:#f7955b; }
.fontSecondarySand { color:#dac792; }
.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; }

/* 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; }


/**  List Styles  **/
ul.outside {
	list-style-position: outside;
	}

ol.spacedList li, ul.spacedList li {
	margin-bottom: 1.25em;
	}

ol.decimal {
	list-style-type: decimal;
	}

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;
	}

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;
	}

.indentPara {
  text-indent: 15px; }

.indenta {
  text-indent: 15px; }

.indent1 {
  padding-left: 30px;
  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;
}

.button0 {
  background-color: #ffffff ; 
  color: #1a4480; 
  border: 2px solid #337ab7;
  border-radius: 8px;
  font-size: 1.25em;
  width: 50%;
  height: 40px;
}

.button1 {
  background-color: #1a4480 ; 
  color: #ffffff; 
  border: 2px solid #0e2640;
  border-radius: 8px;
  font-size: 1.25em;
  width: 50%;
  height: 40px;
}

.button1:hover {
  background-color: #ffffff;
  color: #0e2640;
}

.button2 {
  background-color: #1a4480 ; 
  color: #ffffff !important; 
  border: 2px solid #0e2640;
  border-radius: 8px;
  font-size: 1.25em;
  width: 50%;
  height: 35px;
}

.button2:hover {
  background-color: #ffffff;
  color: #0e2640;
}


.button3 {
  background-color: #ffffff ; 
  color: #1a4480; 
  border: 2px solid #337ab7;
  border-radius: 8px;
  font-size: 1.25em;
  width: 100%;
  height: 40px;
}

.nowrap {
	white-space: nowrap;
	}

