<style type="text/css">

/*clear background shadow */
.wrapper {}

/*color background shadow dark blue */
.wrapper {
    box-shadow: 10px 7px 14px 4px #01336e, -10px 7px 14px 4px #01336e;
    -webkit-box-shadow: 10px 7px 14px 4px #01336e, -10px 7px 14px 4px #01336e;
}

/*color side backgrounds lighter blue*/
body {
    background-color: #00498e;
}

/*make background of edit areas white*/
.dnnEditState {
	background-color: white;
}

/*colors demo text of dev page to verify css function*/
.demoText{
	color:red;
	background-color:blue;
}

/*takes blue lines away from buttons on home page*/
.blockEach {
	background-color:white !Important;
}

/*hides lines in footer until screen reduces*/
.footerText hr {
	display:none;
}

/*aligns right footer to the right until screen reduces*/
.footerText.Right {
	text-align: right;
	margin: 15px 0px 0px 0px ;
}

/*formats CIGIE and Oversight.gov buttons container*/
.orgLinks {
    display: table;
	margin:auto;
    text-align:center;
}

/*formats CIGIE and Oversight.gov buttons*/
.orgImg {
    display: inline-block;
	width: 40% !Important;
	position: relative;
	margin: 2px 20px 2px 20px ;
	text-align:center;
}

.adetail .dateline {
    display: none;
}

/************************* Brochure page *********************************************/

/*puts border on brochure images*/
.bro_Img{
    border: 1px solid #00498e;
}

/*increases brochure image size when screen reduces*/
@media screen and (max-width: 900px) {
.bro_Img{
	width:50% !Important;
}
}

/*increases brochure image size when screen reduces*/
@media screen and (max-width: 700px) {
.bro_Img{
	width:70% !Important;
}
}

/*increases brochure image size when screen reduces*/
@media screen and (max-width: 500px) {
.bro_Img{
	width:90% !Important;
}
}

/*modifies content based on screen swapping to phone layout*/
@media screen and (max-width: 991px){
	
/*align all footers to center*/
.footerText {
	text-align: center !Important;
}

/*formats CIGIE and Oversight.gov buttons*/
.orgImg {
	width: 100% !Important;
    margin: 0px 0px 0px 0px ;
}

/*puts white space between CIGIE and Oversight.gov buttons*/
.orgImg:first-child {
	margin: 0px 0px 20px 0px ;
}

/*removes margin from stamp in footer*/
.footerText.Right {
	margin: 0px 0px 0px 0px ;
}

/*displays hidden lines in footer*/
.footerText hr {
	display:block;
}

/*removes enigma pic from history page*/
.removePic {
	display:none;
}

}

/************* buttons *****************/
.button {
  background-color: darkBlue;
  border: none;
  color: white !Important;
  padding: 10px;
  text-align: center;
  text-decoration: none !Important;
  display: inline-block;
  font-size: 16px;
  border-radius: 10px;
  font-weight: bold;
  margin: 1px;
}

.button:hover {
  background-color: lightBlue;
  color: black !Important;
}

/*************** End Buttons ***************/

/*************** Hotline Form ***************/
.df_Default .field {
    width: 100%;
}

.df_Default .field textarea {
	width: 100%;
}

.df_Default .focus {
    background-color: lightblue !Important;
}

/*************** End Hotline Form ***************/

</style>