/* main_screen */
#header {
	background-color: #303437;
	color: #fff;
	min-width: 600px;
	box-sizing: border-box;
}
#controlPanel {
	background-color: #060;
	color: #fff;
	margin-bottom: 6px;
	padding: 6px 0px 6px 270px;
	font-size: 24px;
	min-width: 1200px;
	box-sizing: border-box;
}
#mainarea {
	display: flex;
	flex-direction: row;
	margin: 6px 0px;
}
section {
	display: block;
}
.col {
	box-sizing: border-box;
}
.col:nth-child(1) {
    width: 270px;
	min-width: 270px;
    background-color: #303437;
    border-right: 1px solid #dee3ea;
	margin-left: 6px;
}
.col:nth-child(2) {
    width: calc(100% - 270px);
	min-width: 900px;
	padding-left: 16px;
}

/* Style the sidebar - fixed full height */
.sidebar {
  height: 100%;
  width: 270px;
  min-width: 270px;
  background-color: #303437; /*dark grey*/
  overflow-x: hidden;
  padding-top: 16px;
}

/* Style sidebar links */
.sidebar a {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 20px;
  color: #7f8589; /* light grey */
  display: block;
  padding-bottom: 12px;
}

/* Style links on mouse-over */
.sidebar a:hover, a.active {
  color: #f1f1f1;
}

.campaignFilter {
     -webkit-appearance: none;
     -moz-appearance: none;
     appearance: none;
     display: inline-block;
     position: relative;
     background-color: #fff;
     color: #fff;
     top: 10px;
     height: 30px;
     width: 30px;
	 border: 1px solid #060 !important;
     border-radius: 50px;
     cursor: pointer;     
     margin-right: 7px;
     outline: none;
}
.campaignFilter:checked::before {
     position: absolute;
     font: 13px/1 'Open Sans', sans-serif;
     left: 11px;
     top: 7px;
     content: '\02143';
     transform: rotate(40deg);
}
.campaignFilter:hover {
     background-color: #0C6;
}
.campaignFilter:checked {
     background-color: #060;
}
form#frmRadio label {
     font: bold 15px/1.7 'Open Sans', sans-serif;
     color: #060;
     cursor: pointer;
} 


/* Campaign Styles */
table#campaignlist { 
    border-collapse: collapse;
    border-radius: 10px;
    border-style: hidden; /* hide standard table (collapsed) border */
    box-shadow: 0 0 0 2px #7f8589; /* this draws the table border  */ 
	background-color: #fff; 
	margin-top: 16px;
	color: *#303437;
	font-family: Verdana, Geneva, sans-serif;
}
table#campaignlist th {
	font-weight: bold;
	text-align: left;
	border-bottom: solid 2px #7f8589;	
	
}
table#campaignlist tr {
	border-bottom: solid 2px #7f8589;
}
table#campaignlist a {
	color: #060; /* green */
	font-family: Verdana, Geneva, sans-serif;
}

#footer {
	margin-top: 24px;
	padding-top: 18px;
	padding-left: 12px;
	background-color: #303437;
	color: #7f8589;
	min-width: 1200px;
	box-sizing: border-box;
}

/* Modal CSS */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.guideUpdate {
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 5% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 3px solid #000;
    width: 600px; /* Could be more or less, depending on screen size */
	font-size: 14px;
	height: 600px;
	overflow: auto; /* Enable scroll if needed */
}

/* The Close Button */
.updateclose {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.updateclose:hover, 
.updateclose:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* login screen */
form.frounded select,form.frounded input {
	font-size: 17px;
	color: #000;
	width: 100%;
	border: 2px solid #000;
	height: 42px;
	border-radius: 30px;
	margin-bottom: 18px;
	padding-left: 5.5%;	
	box-sizing: border-box;
	outline: none; /* so blue focus lines don't show on chrome*/
}

form.frounded .btn {
	font-size: 19px;
	color: #fff;
	width: 100%;
	height: 42px;
	border-radius: 30px;
	border-color: transparent;
	margin-bottom: 18px;
	margin-top: 2px;
	background-color: #060;	
	box-sizing: border-box;
}

/* end of login screen */

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { /* ie only */
  table#campaignlist { 
	  border-collapse: separate !important; /* so you can see table border box, but can't see tr line */
  }
}