/* CSS Document */
/* ADD GLOBAL STYLES */
html {
	height:100%;
	overflow:hidden;
	}

body {
	font-family:Arial, Helvetica, sans-serif;
	font-size:0.8em;
	line-height:1.5em;
	height:100%;/*necessary for sticky footer*/
	min-width:1024px;
	overflow:hidden;
	color:#666;
	}
	
h2, h3 {
		font-family:'Oswald', Arial, Helvetica, sans-serif;
	}
	
a   {
	color:#3D68BC;
	padding-bottom:1px;
	border-bottom:1px dashed #3D68BC;
	text-decoration:none;
	}

    /*a[data-goto] {
        color: #fff;
    }*/

.error{
		border: none;
		display: block;
		color: red;
		text-align: right;
		margin-right: 20px;
		font-style: italic;
}
/*validation*/
.hidden {
    display: none;
}

.loader-wrap {
    width: 100%;
    height: 100%;
    text-align: center;
    vertical-align: central;
}

.stdbutton {
   	border:1px solid #2B5456;
	background: #00325a; /* Old browsers */
	background: -moz-linear-gradient(top, #00325a 0%, #315e66 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#00325a), color-stop(100%,#315e66)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #00325a 0%,#315e66 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #00325a 0%,#315e66 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #00325a 0%,#315e66 100%); /* IE10+ */
	background: linear-gradient(to bottom, #00325a 0%,#315e66 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00325a', endColorstr='#315e66',GradientType=0 ); /* IE6-9 */
	padding:8px 15px;
	color:#fff;
	border-radius:3px;
	-moz-box-shadow:1px 1px 0 #43BEB3;
	-webkit-shadow:1px 1px 0 #43BEB3;
	box-shadow:1px 1px 0 #43BEB3;
	cursor:pointer;
    margin: 7px;
}

.stdbuttonSecondary {
   	border:1px solid #2B5456;
	background: #CCC; /* Old browsers */
	background: -moz-linear-gradient(top, #ccc 0%, #999 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ccc), color-stop(100%,#999)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #ccc 0%,#999 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #ccc 0%,#999 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #ccc 0%,#999 100%); /* IE10+ */
	background: linear-gradient(to bottom, #ccc 0%,#999 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ccc', endColorstr='#999',GradientType=0 ); /* IE6-9 */
	padding:8px 15px;
	color:#fff;
	border-radius:3px;
	-moz-box-shadow:1px 1px 0 #ccc;
	-webkit-shadow:1px 1px 0 #ccc;
	box-shadow:1px 1px 0 #ccc;
	cursor:pointer;
    margin: 7px;
}


input[type="submit"], input[type="reset"]{
		border:1px solid #2B5456;
		background: #00325a; /* Old browsers */
		background: -moz-linear-gradient(top, #00325a 0%, #315e66 100%); /* FF3.6+ */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#00325a), color-stop(100%,#315e66)); /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(top, #00325a 0%,#315e66 100%); /* Chrome10+,Safari5.1+ */
		background: -o-linear-gradient(top, #00325a 0%,#315e66 100%); /* Opera 11.10+ */
		background: -ms-linear-gradient(top, #00325a 0%,#315e66 100%); /* IE10+ */
		background: linear-gradient(to bottom, #00325a 0%,#315e66 100%); /* W3C */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00325a', endColorstr='#315e66',GradientType=0 ); /* IE6-9 */
		padding:8px 15px;
		color:#fff;
		border-radius:3px;
		-moz-box-shadow:1px 1px 0 #43BEB3;
		-webkit-shadow:1px 1px 0 #43BEB3;
		box-shadow:1px 1px 0 #43BEB3;
		cursor:pointer;
		margin-right:7px;
}


input[type="submit"].stdButtonDisabled, input[type="reset"].stdButtonDisabled {
    border:1px solid #ccc;
	background: #ccc; /* Old browsers */
	padding:8px 15px;
	color:#fff;
	border-radius:3px;
	-moz-box-shadow:1px 1px 0 #999;
	-webkit-shadow:1px 1px 0 #999;
	box-shadow:1px 1px 0 #999;
	cursor:pointer;
    margin: 7px;
}


/*used on controlPanelMain and should be used throughout*/
/*placeholder attribute styles*/
	::-webkit-input-placeholder {
	   color: #CCC;
	   font-size:12px;
	   font-style:italic;
	}
	
	:-moz-placeholder { /* Firefox 18- */
	   color: #CCC;
	   font-size:12px;
	   font-style:italic;  
	}
	
	::-moz-placeholder {  /* Firefox 19+ */
	   color: #CCC;
	   font-size:12px;
	   font-style:italic;  
	}
	
	:-ms-input-placeholder {  
	   color: #CCC;
	   font-size:12px;
	   font-style:italic; 
}

ul.dialogList {
    max-height: 200px;
    overflow-y: scroll;
    margin-top: 10px;
    padding: 5px;
    background-color: white;
    cursor: pointer;
}

    ul.dialogList li:hover {
        background-color: #00325a;
        color: #fff;
    }

div.contextMenu {
    background-color: #00325a;
    color: #fff;
    line-height: 22px;
	margin-top:2px;
    min-width: 164px;
    z-index: 999;
}
    div.contextMenu ul li {
        padding: 3px 10px;
        cursor: pointer;
    }

    div.contextMenu ul li:hover {
        background-color:#336066;
		display:block;
    }

select.pageSpecificMenu {
    background-color: #00325a;
    color: white;
    min-width: 300px;
    border: 0px;
}

/*user-logged in styles for top bar under main nav*/
	#logged-in-bar #menuUser{
			color: #fff;
			font-size: 11px;
		    font-style: italic;
			text-transform:uppercase;
		    position: absolute;
		    right: 14px;
		    top: 0;
			cursor:pointer;
		}

    #logged-in-bar #menuObject {
			color: #fff;
			font-size: 11px;
		    font-style: italic;
			text-transform:uppercase;
		    position: absolute;
		    right: 260px;
		    top: 1px;
			cursor:pointer;
		}

    #menuObject ul,
	#menuUser ul{
		    background-color: #00325a;
            line-height: 22px;
		    margin-top:2px;
		    display:none;
            box-shadow: 1px 1px 3px white;
            position: relative;
            z-index: 100;
		}
    
    #menuObject ul li a,
	#menuUser ul li a {
			color:#fff;
			text-decoration:none;
			display:block;
			padding: 3px 10px;
			border:none;

            
		}
	
    #menuObject ul li a:hover,
	#menuUser ul li a:hover {
			background-color:#336066;
			display:block;
			padding: 3px 10px;
			text-decoration:none;
               cursor:pointer;
		}
		
	#menuUser ul li a.logout{
			padding-left:24px;
			background:url(../Images/icon-logout.png) 6px center no-repeat;
		}
		
	#menuUser ul li a.logout:hover{
			padding-left:24px;
			background:#336066 url(../Images/icon-logout.png) 6px center no-repeat;
                   cursor:pointer;
		}
		
	#menuUser ul li a.control-panel{
			padding-left:24px;
			background:url(../Images/icon-control-panel.png) 6px center no-repeat;
		}
		
	#menuUser ul li a.control-panel:hover{
			padding-left:24px;
			background:#336066  url(../Images/icon-control-panel.png) 6px center no-repeat;
                   cursor:pointer;
		}

    #menuObject ul li a.new-object{
			padding-left:24px;
			background:url(../Images/new.png) 6px center no-repeat;
		}
		
	#menuObject ul li a.new-object:hover{
			padding-left:24px;
			background:#336066 url(../Images/new.png) 6px center no-repeat;
                   cursor:pointer;
		}

    #menuQuery ul li a.open-object{
			padding-left:24px;
			background:url(../Images/open.png) 6px center no-repeat;
		}
		
	#menuObject ul li a.open-object:hover{
			padding-left:24px;
			background:#336066 url(../Images/open.png) 6px center no-repeat;
                   cursor:pointer;
		}

    #menuObject ul li a.save-object {
			padding-left:24px;
			background:url(../Images/save.png) 6px center no-repeat;
		}
		
	#menuObject ul li a.save-object:hover {
			padding-left:24px;
			background:#336066 url(../Images/save.png) 6px center no-repeat;
                   cursor:pointer;
		}

    #menuObject ul li a.run-object {
			padding-left:24px;
			background: url(../Images/icon-control-panel.png) 6px center no-repeat;
		}
		
	#menuObject ul li a.run-object:hover{
			padding-left:24px;
			background:#336066 url(../Images/icon-control-panel.png) 6px center no-repeat;
                   cursor:pointer;
		}

#menuUser p {
			padding-left:24px;
			background:url(../Images/icon-logged-in.png) 6px center no-repeat;
			line-height: 20px;
    width: 240px;
		}

#menuObject p {
    padding-left:24px;
	background: url(../Images/icon-control-panel.png) 6px center no-repeat;
	line-height: 20px;
    width: 210px;
}

div.alertcontainer {
    width: 100%;
    position: absolute;
    z-index: 999;
}

/******************
TABLE DATA STYLES
*******************/
.table-header {
    text-align:left;
	padding:5px;
	height:20px;
	line-height:20px;	
	color: #333;
	font-weight:700;
    background-color: #3f68a8;
}

table th{
	text-align:left;
	padding:5px;
	height:20px;
	line-height:20px;	
    color: #FFF;
	font-weight:700;
    background-color: #3f68a8;
}

td{
	padding:10px;
}
	
table.striped tr {
    background: #f2f2f2;
}

    table.striped tr:nth-child(2n+1) {
        background: #CCC;
    }

table.striped tr:hover, table.highlightrow tr:hover{
	background-color:#3f68a8 !important;
    color: #fff;
}

    table.striped tr:hover a , table.highlightrow tr:hover a {
        color: #fff;
    }

.row-color{
	background-color:#E2E2E2;
}
/******************
HEADER AND NAV AREA
*******************/	
#main-page-header {
		width:100%;
		height:53px;
		background-color:#3f68a8;
		position:relative;
	}
	
#logo img{
		margin:1em;
		float:left;
		margin-right:1em;	
	}
	
#main-nav ul{
		padding:1.2em 1.2em;
		float:right;
	}
	
#main-nav ul li{
		display:inline;
		color:#fff;		
		text-align:center;		
	} 

#main-nav ul li a{
		display:inline;
		height:25px;
		line-height:23px;
		color:#fff;
		text-decoration:none;
		text-transform:uppercase;
		padding:0.4em 1em;
		-moz-text-shadow:-1px -1px 0 #009D93;
		-webkit-text-shadow:-1px -1px 0 #009D93;
		text-shadow:-1px -1px 0 #009D93;		
		border:1px solid #37757F;
		background: #3f68a8; /* Old browsers */
		background: -moz-linear-gradient(top, #3f68a8 0%, #00325a 100%); /* FF3.6+ */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#3f68a8), color-stop(100%,#00325a)); /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(top, #3f68a8 0%,#00325a 100%); /* Chrome10+,Safari5.1+ */
		background: -ms-linear-gradient(top, #3f68a8 0%,#00325a 100%); /* IE10+ */
		background: linear-gradient(to bottom, #3f68a8 0%,#00325a 100%); /* W3C */
		/*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3f68a8', endColorstr='#6495ed',GradientType=0 );*/ /* IE6-9 */
		/*box-shadow: 1px 1px 0 rgba(102, 203, 197, 0.61);*/
	}
	
#main-nav ul li a.selected-button{
		/*color:#4D4D4D;*/
		background: #6495ed; /* Old browsers */
		background: -moz-linear-gradient(top, #6495ed 0%, #3f68a8 88%); /* FF3.6+ */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#6495ed), color-stop(88%,#3f68a8)); /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(top, #6495ed 0%,#3f68a8 88%); /* Chrome10+,Safari5.1+ */
		background: -o-linear-gradient(top, #6495ed 0%,#3f68a8 88%); /* Opera 11.10+ */
		background: -ms-linear-gradient(top, #6495ed 0%,#3f68a8 88%); /* IE10+ */
		background: linear-gradient(to bottom, #6495ed 0%,#3f68a8 88%); /* W3C */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6495ed', endColorstr='#3f68a8',GradientType=0 ); /* IE6-9 */
	}

ul#reports{
	display: none;
    position: absolute;
    right: 90px;
    top: 80px;
    width: 412px;
	background:#3f68a8;
	padding:5px 0px 0px 0px;
	z-index:1000;
}
	
ul#reports li{
	display: block;
    margin-bottom: 4px;
    text-align: left;
	border:none;
	}

ul#reports li:hover{
	background:#00325a;
    cursor:pointer;
	}

ul#reports li a{
	border:none;
	box-shadow:none;
	background:none;
	text-shadow:none;
	background:url(../Images/arra-reports.png) left center no-repeat;
	padding-left:18px;
	margin-left:15px;
	display:block;
}

ul#reports li a span.credits{
		color:#FF5;
		font-style:italic;
		font-family:Arial Narrow, Arial, Helvetica, sans-serif;
		letter-spacing:0.5px;	
		text-transform:none;	
	}


ul#pages{
	display: none;
    position: absolute;
    right: 90px;
    top: 80px;
    width: 412px;
	background:#3f68a8;
	padding:5px 0px 0px 0px;
	z-index:1000;
}
	
ul#pages li{
	display: block;
    margin-bottom: 4px;
    text-align: left;
	border:none;
	}

ul#pages li:hover{
	background:#00325a;
               cursor:pointer;
	}

ul#pages li a{
	border:none;
	box-shadow:none;
	background:none;
	text-shadow:none;
	background:url(../Images/arra-reports.png) left center no-repeat;
	padding-left:18px;
	margin-left:15px;
	display:block;
}






#logged-in-bar{
		width:100%;
		height:21px;
		background-color:#00325a;
		/*border-top:1px solid #44BBB0;*/
		position:relative;
	}
/*****************
PAGE CONTENT AREA
******************/
div#content{
		padding:30px;
    height: 450px;
    min-height: 10%;
		overflow:auto;	
	}
	
#pnlClientLogo{
		text-align:center;
		margin-top:20px auto;
	}

#welcome{
		width:95%;
		margin:15px auto;
		border-top:1px dashed #CCC;
		border-bottom:1px dashed #CCC;
		padding:15px;
		text-align:center;
		font-size:1.1em;
	}
/*these will be used for the three panels 
Basic Details/Password Expire/Change/Manage Site
They'll work in tandem with each of the panels internal styles
i.e. box... and form in the box... have different styling - Couldn't think of a more efficient way*/
/*********************************
NAME: BASIC DETAILS Form Elements styles
**********************************/

div#basicDetails{
		padding:0em;
	}
	
div#basicDetails div{
		margin:8px 16px;
		height: 12px;	
	}
	
	div#basicDetails div.btn-container{
		margin:22px 0px 0px 0px;	
	}

	div#basicDetails div.validation-span{
		margin:22px 0px 0px 0px;	
	}
	
div#basicDetails label{
		float:left;
		margin:5px;
		margin-top:5px;
		clear:left;
    }
			
div#basicDetails input[type="text"],
div#basicDetails input[type="email"],
    div#basicDetails input[type="tel"] {
		border:none;
		padding:0.5em;
		width:195px;
		display:block;
		float:right;
	}
	
div#basicDetails small{
		border:none;
		display:block;
		color:red;
		margin-left:84px;
        height: 25px;		
    }
    /*validation*/
div#basicDetails .authorityLevel{
		display:block;
		color:rgb(0, 112, 255);
		margin:10px 8px 55px 8px;
		clear:both;
	}
	
	div#basicDetails .authorityLevel h4{
		font-weight:bold;
		margin-left:5px;
	}
	
	div#basicDetails .authorityLevel p{
		font-weight:normal;
		margin-left:5px;
	}
	
div#basicDetails input#mobile span{
margin-bottom: 21px;
}

#centre612px {
    left:-50%;
    position:absolute;
}

#box-wrapper{
	width:1024px;
	height:380px;
    position:absolute;
	}

.box-style{
    width: 29%;
    height: 380px;
	margin:1% 1% 0 0.8%;
	background-color:#f2f2f2;
	border-top:8px solid #333;
	position:relative;
	float:left;
    max-width:320px;
    min-width:310px;
	}
	
.box-style > div {
		padding:0em;
    }
		
.box-style form {
		margin:0 auto;
	}

.box-style h3{
		font-family:Oswald, Arial, Helvetica, sans-serif;
		font-size:1.2em;
		color:#4d4d4d;
		text-align:center;
		margin-bottom:12px;
	}
	
.box-style .btn-container{
		padding:9px 0px 10px 0px;
		clear:both;
		text-align:center;
		background-color:#cccccc;
		position:absolute;
		bottom:0px;
		width:100%;
	}

.box-style #basic-icon{
		background:url(../Images/basic-icon.png) no-repeat;
		background-position:center;
		width:16px;
		height:18px;
		margin:1em auto;
	}
/************
LOGIN STYLES
*************/	
 #login{
		width:300px;
		margin:50px auto;
		padding:20px;
		background-color:#f2f2f2;
		border-top:8px solid #333;
		position:relative;
	}

#login h3{
		margin-bottom:17px;
		font-size:1.5em;
		color:#333;
		/*padding-left:25px;
		background:url(../Images/basic-icon.png) no-repeat;*/
    }
    /*title of the dialogues*/
#login input[type="text"], input[type="password"] {
		display:block;
		width:290px;
		margin:0 auto;
		padding:3px;
		font-size:16px;
		box-shadow: 1px 1px 0 rgba(255, 255, 255, 0.61);
	}

#login #btnLogin{
		margin: 20px 0;
    	width: 80px;
		font-size:1.2em;
		padding:4px;
	}

#login label{
		display: block;
    	font-size: 1.2em;
    	margin: 10px auto 4px;
		text-transform:capitalize;
    }

#changePassword {
    width: 300px;
    margin: 50px auto;
    padding: 20px;
    background-color: #f2f2f2;
    border-top: 8px solid #333;
    position: relative;
}

        #changePassword h4 {
        margin-bottom: 17px;
        font-size: 1.5em;
        color: #333;
        padding-left: 25px;
        background: url(../Images/basic-icon.png) no-repeat;
    }

    #changePassword input[type="text"], input[type="password"] {
        display: block;
        width: 290px;
        margin: 0 auto;
        padding: 3px;
        font-size: 16px;
        box-shadow: 1px 1px 0 rgba(255, 255, 255, 0.61);
    }

    #changePassword #btnLogin {
        margin: 20px 0;
        width: 80px;
        font-size: 1.2em;
        padding: 4px;
    }

    #changePassword label {
        display: block;
        font-size: 1.2em;
        margin: 10px auto 4px;
        text-transform: capitalize;
    }

    #passwordChanged {
    width: 300px;
    margin: 50px auto;
    padding: 20px;
    background-color: #f2f2f2;
    border-top: 8px solid #333;
    position: relative;
}

        #passwordChanged h4 {
        margin-bottom: 17px;
        font-size: 1.5em;
        color: #333;
        padding-left: 25px;
        background: url(../Images/basic-icon.png) no-repeat;
    }

    #passwordChanged #btnContinue {
        margin: 20px 0;
        width: 80px;
        font-size: 1.2em;
        padding: 4px;
    }

    #passwordChanged label {
        display: block;
        font-size: 1.2em;
        margin: 10px auto 4px;
        text-transform: capitalize;
    }

#pnlLoginFailed {
    background-color: #FFF;
    color: #F00;
  	padding: 10px;
    border: solid 2px #F00;
	}

#pnlLoginFailed h4 {
		font-weight:bold;
		margin-bottom:1px;
	}

.changePasswordError {
    background-color: #FFF;
    color: #F00;
    padding: 10px;
    border: solid 2px #F00;
}
/*********************
DATA WRAPPER STYLES
this wraps the table data
as in configured reports etc.
**********************/
.campaignManager-table {
    width: 100%;
    overflow-y: scroll;
}

#collapsediv {
    /*height: 300px;*/
    width: 100%;
}

.smalltextarea560px textarea {
    max-width: 560px;
}

.data-wrapper-width-960 {
    width: 960px;
    margin: 0 auto;
}

.data-wrapper-width-291 {
    width: 291px;
    float: left;
    margin-right: 20px;
}

.data-wrapper-width-narrow {
    width: 400px;
    float: left;
}


.data-wrapper-width-650 {
    width: 650px;
    float: left;
}

    .data-wrapper-width-650 .fullWidth {
        width: 630px;
        height: 100px;
        resize: vertical;
        border: none;
    }

.data-wrapper {
    background: #f2f2f2;
    /*margin: 1em auto;*/
    margin: 1em 3px;
    position: relative;
    border: 1px solid #CCC;
    overflow: auto;
    overflow-y: hidden;
}

    .data-wrapper h3 {
        background-color: #3f68a8;
        padding: 0.7em;
        font-size: 1.2em;
        color: #fff;
        height: 10px;
    }

    .data-wrapper div.title3 {
        background-color: #3f68a8;
        padding: 0.7em;
        font-size: 1.2em;
        color: #fff;
        height: 10px;
    }

    .data-wrapper h4 {
        background-color: #3f68a8;
        padding: 0.7em;
        font-size: 1.2em;
        color: #fff;
        height: 10px;
        width: 978px;
    }

.campaigngd-d-w textarea {
    max-width: 99%;
    max-height: 32px;
    }

.campaigngd-d-w textarea {
    max-width: 99%;
    max-height: 32px;
}

.campaign-manager-d-w {
    height: 430px;
}

.campaign-md-d-w {
    overflow-y: scroll;
}

.maildetail-d-w {
    border: none;
    }

    .maildetail-d-w textarea {
        min-width: 300px;
        max-width: 99%;
    }

    .maildetail-d-w li {
        margin: 6px;
    }

.bottom-padding-20px {
    margin-bottom: 20px;
    }

.data-wrapper-scroll{
		width:100%;
    height: 250px;
    overflow-y: scroll;
}

.data-wrapper-scroll-large{
	width:100%;
    height: 500px;
    overflow-y: scroll;
}

.clientadmin-d-w-s {
    width: 100%;
    height: 200px;
    overflow-y: scroll;
    overflow-x:hidden;
}

.fixed-header {
    position: absolute;
    top: 33px;
    left: 0;
    float: left;
    background-color: #3f68a8;
    color: #fff;
    width: inherit;
}

.add-user-f-h {
    top: 0;
    width:1000px;
	}
	
.campaign-details-f-h {
    top: 225px;
    width: 960px;
}

.campaign-manager-f-h {
    top: 85px;
}

.manager-md-f-h {
    top: 78px;
}
/*for accordian - open/close classes*/	

/****Ant 04/04/2017 - I don't think the open and close classes are still being used
.close {
		width:17px;
		height:16px;
		background:url(../Images/close-btn.png) no-repeat;
		position:absolute;
		top:11px;
		right:10px;
		text-decoration:none;
	}

a.close  {
		border:none;
	}
	
.open {
		width:17px;
		height:16px;
		background:url(../Images/open-btn.png) no-repeat;
		position:absolute;
		top:11px;
		right:10px;
		text-decoration:none;
	}

a.open  {
		border:none;
	}


    ****/

/*Create User form - styles*/
#menuUser label{
		width:50px;	
	}
/*********************
ADD NEW USER
**********************/
#add-user input[type="text"]{
		width:250px;
		margin:0 auto;
		padding:3px;
		border:none;
		font-size:16px;
		box-shadow: 1px 1px 0 rgba(255, 255, 255, 0.61);
	}
	
#add-user input[type="submit"]{
		clear:both;
	}

#add-user div{
	margin-top:7px;
	}
	
#add-user div#errorLogin{
	margin-bottom:0px;
	margin-top:10px;
	}
	
#add-user div:first-child{
	margin-top:18px;
	} 
	
#add-user label{
	width:130px;
	float:left;
	text-transform:capitalize;
	}
	
div#create-user{
	padding:0px 0px 1px 15px;
	}

#add-user{
width: 285px;
float: left;
margin-right: 12px;
}

div#dvManageGroups {
    margin: 15px 15px 1px 15px;
}
/*********************
MODAL STYLES
**********************/
/*Dialogue Box - general Dialogue styling for modals*/
.dialogue{
		width:400px;
		height:360px;
		background:#f2f2f2;
		margin:8em auto ;
		box-shadow:0px 0px 15px rgba(0,0,0,0.8);
		position:relative;
	}
	
.dialogue h3{
		background-color:#3f68a8;
		padding:0.7em;
		margin-bottom:1em;
		font-size:1.2em;
		color:#fff;
    }
	
.dialogue p.close-button{
		position:absolute;
		top:12px;
		right:12px;	
	}

.dialogue p.close-button a{
		background:url(../Images/close-dialogue-btn.png) no-repeat;
		width:17px;
		height:16px;
		border:none;
	}

.dialogue-btn{ /* submit btn */
	background: #38C1B7 !important;
	border:none;
	text-align: right;
    margin-right: 2em;
    position: absolute;
    bottom: 18px;
    right: 10px;
    display: inline;
    border: none !important;
	}
/*****************
NAME: EDIT REPORT - this is a modal when you click the Reports nav btn
still working on this.
******************/	
.dialogForm input {
		display:block;
		width:350px;
		margin:0 auto;
		font-size:1.2em;
		border:none;
	}

.dialogForm textarea {
    display:block;
	width:350px;
	margin:0 auto;
	font-size:1.2em;
	border:none;
    height: 75px;
}
	
.dialogForm label{
	display: block;
	width: 350px;
	margin: 0 auto;
	font-size: 1.2em;
	margin-top: 1em;
	margin-bottom: 0.3em;
}

.dialogForm select {
		width:25%;
		margin-left:1.4em;
	}
 	
	.dialogForm input#authorityView{
			box-shadow: 1px 1px 0 rgba(255, 255, 255, 0.61);
		}

	.dialogForm input#enabled{
			width:25%;
			margin-left:1.4em;
		}
/*********************************
NAME: EDIT USER
**********************************/
.dialogForm{
		padding:1em;
	}

#cphMain_modalDialog .dialogue h3 {
		margin-bottom:0px;
	}

#cphMain_modalDialog .dialogue{
	height:auto;
}	

#frmEditAccountDetails div {
		margin:8px;
	}

#frmEditAccountDetails div label {
    display: inline-block;
    margin-right: 10px;
    width: 114px;
    margin: 0;
    font-size: 13px;
}

#frmEditAccountDetails input[type="text"],
#frmEditAccountDetails input[type="email"] {
	width: 220px;
    display: inline;
}

#frmEditAccountDetails input[type="submit"] {    
    width: auto;
    display: inline-block;
}

#cphMain_btnDialogClose {
	margin: 10px 20px 20px;
    position: absolute;
    bottom: 0px;
}

.dialogForm a {
	text-decoration: underline;
	line-height: 21px;
	border: none;
	display: inline-block;
	width: 146px;
}
		
#frmEditAccountDetails div:nth-child(7) {
margin: 20px 8px 8px;
}
/*********************************
NAME: CHANGE PASSWORD 
**********************************/
#pw-change{
		padding:20px 20px;
		text-align:center;
		padding: 20px 28px;
		text-align: center;
		font-size: 14px;
		line-height: 21px;
	}

#pw-change p{
		margin-bottom:15px;
	}

#pw-icon {
    background: url(../Images/pw-icon.png) no-repeat;
		background-position:center;
		width:72px;
		height:18px;
    margin: 1em auto;
}
/*********************************
NAME: PENDING FIRST LOGIN
**********************************/
.wrapper-1024{
    width: 1024px;
		margin:0 auto;
    min-width:50%;
	}

    .wrapper-1024 h3 {
        background-color: #3f68a8;
        padding: 0.7em;
        width: 938px;
        font-size: 1.2em;
        color: #fff;
        left: 50px;
    }
/*title of the dialogues*/
#pending{
    height: 250px;
    /*overflow-y:auto;*/
	}
	
#pendingFirstLogin {
		margin:10px;
	}

#pendingFirstLogin select{
		border:none;
		width:200px;
		height:30px;
		padding:3px;	
	}
/*********************************
NAME: MANAGE-SITE
**********************************/
#manage-site{
		text-align:center;
		padding: 6px 18px 28px 18px;
		text-align: center;
		font-size: 14px;
    line-height: 21px;
}
		
#manage-site ul{
		text-align:left;
		margin-top:10px;
	}
	
#manage-site ul li{
		padding-left:18px;
		background:url(../Images/bullet.png) 1px 6px no-repeat;
		margin-top:10px;
	}
	
#manage-icon {
    background: url(../Images/manage-icon.png) no-repeat;
		background-position:center;
		width:72px;
		height:20px;
    margin: 1em auto;
}

/*********************
REPORTS PAGE styles
**********************/
#available-reports h2{
		font-family:"Quicksand", Arial, Helvetica, sans-serif;
		font-size:1.4em;
		font-weight:700;
		color:#00325a;
		text-transform:capitalize;
		margin-bottom:0.8em;
	}
	
#available-reports{
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border-radius:5px;
	width: 25%;
	float:left;
	font-family:"Quicksand", Arial, Helvetica, sans-serif;
	font-size:1.1em;
	}	

#available-reports ul{
	border-top:4px solid #00325a;
	border-bottom:4px solid #00325a;
	}	
	
#available-reports ul li{
		background-color: #3f68a8;
		padding: 5px 10px 5px 10px;
		border-bottom: 1px solid #329E91;
		border-top: 1px solid #62CCC2;
		text-transform:capitalize;
	}

#available-reports ul li:first-child{
		border-top:none;
	}
	
#available-reports ul li:last-child{
		border-bottom:none;
	}
	
#available-reports ul li:hover{
		background-color:#28A391;
                   cursor:pointer;
	}
	
#available-reports ul li a{
		color:#fff;	
		border:none;
		display:block;
		background:url(../Images/arra-reports.png) left center no-repeat;
		padding-left:15px;
	}

#available-reports ul li a span.credits{
		color:#FF5;
		font-style:italic;
		font-family:Arial Narrow, Arial, Helvetica, sans-serif;
		letter-spacing:0.5px;	
	}

#reports-viewer {
    border: 1px solid #E2E2E2;
    width: 29cm;
    height: 24cm;
    margin-left: 400px;
}
/*********************************
NAME: FILE UPLOADER styles
**********************************/	
#lead-paragraph h2{
		font-family:"Quicksand", Arial, Helvetica, sans-serif;
		font-size:1.5em;
		font-weight:bold;
		margin-bottom:10px;
		color:#00325a;
	}		

#lead-paragraph p{
		font-family:"Quicksand" Arial, Helvetica, sans-serif;
		font-size:1.2em;
		font-weight:normal;
		margin-bottom:0.5em;
		line-height:1.5em;
	}

#lead-paragraph p:last-child{
		margin-bottom:1.5em;
	}		
	
#uploader-wrap{
		width:95%;
		margin:0 auto;
	}
	
#select-file{
		width:400px;
		height:400px;
		float:left;
		margin-right:30px;
		position:relative;
}

#select-file input[type="button"] {
		position:absolute;
		top:23px;
		right:15px;
	}
	
#select-file #browse{
		height:50px;
		background-color:#3f68a8;
		padding:15px;
		margin-bottom:20px;
		position:relative;
    }
		
#select-file #browse span{
		color:#FF5;
	}
	
#select-file #browse p#step1{
		background:url(../Images/step1.png) no-repeat;
		width:34px;
		height:34px;
		position:absolute;
		top:-16px;
		left:-16px;
	}
	
#select-file #browse h2{
		font-family:"Quicksand" Arial, Helvetica, sans-serif;
		margin-bottom:7px;
		font-size:1.2em;
		color:#fff;
	}
 
	#progress-bar{
		height:85px;
		background-color:#3f68a8;
		padding:17px;
		margin-bottom:20px;
		margin-top:30px;
		position:relative;
}
    /*container for progress element*/
	#progress-bar p#step2{
		background:url(../Images/step2.png) no-repeat;
		width:34px;
		height:34px;
		position:absolute;
		top:-16px;
		left:-16px;
	}
		
	#progress-bar button{
		position:absolute;
		top:70px;
		right:15px;
		}
		
	#progress-bar h2{
		font-family:"Quicksand" Arial, Helvetica, sans-serif;
		color:#fff;
		font-size:1.2em;
		margin-bottom:6px;
		}
		
    progress {  
        background-color: #FBFBFB;
		width:367px;  
        border: 1px solid #666;  
        height: 18px;  
    }  
	
	.successful-upload{
			color:#fff;
			margin-top:8px;
			padding-left:18px;
			background:url(../Images/tick.png) no-repeat;
		}

	.unsuccessful-upload{
			color:#ff5;
			margin-top:8px;
			padding-left:18px;
			background:url(../Images/cross.png) no-repeat;
		}
/******snail mail methods - styles*****/
	#snail-methods {
		width:430px;
		height:500px;
		float:left;
}
/*right side wrap*/
	#snail-methods{
		background-color:#fff;
		padding:0px;
		}
	
	#snail-methods h2{
		font-family:"Quicksand" Arial, Helvetica, sans-serif;
		font-size: 1.4em;
		font-weight:bold;
		color:#3f68a8;	
		}
		
	#snail-methods p{
		font-family:"Quicksand" Arial, Helvetica, sans-serif;
		font-size: 1.2em;
		font-weight:normal;
		line-height:1.5em;	
		margin:10px 0px 15px 0px;	
		}
		
.modal{
		background-color:rgba(0,0,0,0.7); 
		width:100%;
		height:100%;
		position:absolute;
		color:#4d4d4d;
		z-index:1000;
        top: 0px;
        left: 0px;
	}	

.close-modal{
		float:right;
	}
/*********************************
NAME: CHARTS + WITH WARNINGS
**********************************/	
.chart-box{
		background-color:#fff;
		position:relative;
		display:inline-block;
		margin:0px 5px;
	}
	
.large{
		width:900px;
	}
		
.userItem-box h3{
		background-color:#3f68a8;
		height:35px;
		line-height:35px;
		color:#fff;	
		font-family:Arial, Helvetica, sans-serif;
		padding-left:15px;
}
			
.userItem-data{
		border:1px solid #CCC;
		border-top:1px solid #00325a;
		background-color:#fff;
	}
		
 .enlarge{
	position:absolute;
	background:url(../img/icon-enlarge-chart.png) no-repeat;
	width:35px;
	height:35px;
	top:8px;
	right:-3px;
	border:none;	
}

 .minimise{
	position:absolute;
	background:url(../img/icon-minimise-chart.png) no-repeat;
	width:35px;
	height:35px;
	top:8px;
	right:-3px;
	border:none;	
}

.warning{
	position:absolute;
	background:url(../img/icon-warning.png) no-repeat;
	width:35px;
	height:35px;
	top:8px;
	right:34px;
	border:none;
}		
/************
FOOTER STYLES
*************/	
#main-footer {
		height:50px;
		background-color:#3f68a8;
		color:#fff;
		font-style:italic;
		line-height:50px;
		padding-left:1em;
		position:relative;
		border-top:5px solid #00325a;
		clear:both;	
	}
	
#main-footer img {
		position:absolute;
		top:17px;
		right:18px;
    }
/*****************
FOR STICKY FOOTER
******************/
#page-wrap {
	min-height: 100%;
	height: auto !important;
	height: 100%;
	margin: 0 auto -55px; /* the bottom margin is the negative value of the footer's height */
    min-width:500px;
}

#main-footer footer, .push {
	height: 55px;
	clear:both;
	 /* .push must be the same height as .footer */
}

.alpha {
    margin-left: 0px;
}

.omega {
    margin-right: 0px;
}
/***************
    Query page
****************/


div.items {
    /*border: solid 1px #ccc;*/
    height: 85%;
    float: left;
    overflow: scroll;
    overflow-x:hidden;
}

div#dvTabs {
    width: 71%;
    float: left;
}

div#dvAdminTabs {
    width: 100%;
    height: 95%;
    float: left;
}

div.selectedItems {
    width: 100%;
}

#dvPreview, #dvAction {
    width: 100%;
}

#dvIncludedItems {
    height: 100%;
}

#dvAvailableItems {
    height: 85%;
    width: 28%;
    overflow-x:hidden;
}

div.items-header {
    background: #00325a;
    color: #fff;
    /*padding: 5px;*/
    width:99%;
    min-height: 60px;
}

#dvToolbar {
    clear: both;
    text-align: center;
}

#openObject {
    position: absolute;
    max-height: 150px;
    overflow-y: scroll;
    width: 190px;
    background-color: #00325a;
    display:none;
}

#txtName {
    width: 210px;
    margin-right: 10px;
}

.header-selected {
    padding:20px;
    left:30%; 
    width: 99%;
}

.header-items {
    padding:6px;
    width:28%;
    float:left;
}

div.itemshalfwidth {
    width: 35.5%;
}


/***************
    Campaign Management
****************/

.CostsTable {
}

    .CostsTable th[fieldtype="remove"] {
        width: 30px;
    }


/***************
    Form Builder
****************/
.form-builder-section {
    border: 2px solid green;
    display: inline-block;
    width: 99%;
    min-height: 50px;
    padding-right: 5px;
}

    .form-builder-section .jsSectionDrop {
        border: 2px dashed lightgray;
        display: inline-block;
        width: 100%;
        min-height: 50px;
        padding-bottom: 25px;
    }

.form-builder-question {
}

    .form-builder-question .jsOptionsToggle {
        cursor: pointer;
    }

/***************
    jsClasses
****************/

.jsCriterionItem {
    height: 25px;
    line-height: 23px;
    color: #fff;
    text-decoration: none;
    padding: 0.4em 1em;
    -moz-text-shadow: -1px -1px 0 #009D93;
    -webkit-text-shadow: -1px -1px 0 #009D93;
    text-shadow: -1px -1px 0 #00325a;
    border: 1px solid #37757F;
    background: #3f68a8;
    background: -moz-linear-gradient(top, #3f68a8 0%, #00325a 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#3f68a8), color-stop(100%,#00325a));
    background: -webkit-linear-gradient(top, #3f68a8 0%,#00325a 100%);
    background: -ms-linear-gradient(top, #3f68a8 0%,#00325a 100%);
    background: linear-gradient(to bottom, #3f68a8 0%,#00325a 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3f68a8', endColorstr='#6495ed',GradientType=0 );
    box-shadow: 1px 1px 0 rgba(102, 203, 197, 0.61);
    overflow: hidden;
    white-space: nowrap;
}

.jsName {
    display: inline-block;
    width: 350px;
}

.jsRemove {
    display: inline-block;
    float: right;
    cursor: pointer;
}

    .jsRemove:hover {
        font-weight: bold;
        cursor:pointer;
    }

.jsDraggable li {
    cursor: move;
}

.jsResultCount span {
    float: right;
    line-height: 2em;
    padding-right: 20px;
}
/***********
    Generic
************/

.clickable {
    cursor: pointer;
}

.ui-autocomplete {
    max-height: 150px;
    overflow-y: scroll;
    z-index: 999 !important;
}

.mediumListHeight {
    height: 511px;
}

    .mediumListHeight tr {
        cursor: pointer;
    }

.text-align-centre {
    text-align:center;
}

.glass {
    position: absolute;
    width: 100%;
    color: #fff;
    opacity: 0.5;
    z-index: 80;
}

.textarea_large {
    min-width: 97%;
    min-height: 300px;
    white-space: nowrap;
    overflow: auto;
}

.textarea_dialog {
    min-width: 97%;
    height: 100px;
}

.textarea_medium {
    width:350px;
    max-width: 350px;
    min-height: 150px;
    white-space: nowrap;
    overflow: auto;
}

div.mapLegend {
    position: absolute;
    right: 0;
    top: 100px;
    z-index: 700;
}

div.mapLegendSquare {
    float: left;
    width: 16px;
    height: 16px;
    margin-right: 3px;
}

ul.mapLegend li {
    width: 120px;
}

span.mapLegendTitle {
    font-weight: bold;
}

.menu {
    background: #3f68a8;
    padding: 5px 0px 0px 0px;
    z-index: 1000;
    color: #fff;
}

    .menu li {
        display: block /*!important*/;
        padding: 7px 0px 7px 25px;
        background: url(../Images/arra-reports.png) left center no-repeat;
        background-position-x: 10px;
    }

    .menu li:hover {
        background-color:#336066;
               cursor:pointer;
    }

.ui-draggable-dragging {
    background: #336066 !important;
    padding: 5px 25px 5px 25px !important;
    z-index: 1000;
    color: #fff;
}

.filter {
    background: url(../Images/search24x24.png) left center no-repeat;
    padding-left: 30px;
    background-color: #fff;
    width: 180px !important;
}

.info {
    border: 1px solid #3f68a8;
    padding: 10px;
    margin: 10px;
    position: relative;
    top: 30px;
    border-radius: 5px 5px;
    display: inline-block;
}

ul.tabSelector {
    border-bottom: 1px solid #00325a;
}

    ul.tabSelector > li {
        display: inline-block;
        padding: 5px;
        cursor: pointer;
        background-color: #00325a;
        color: white;
    }

        ul.tabSelector > li.selected {
            background-color: #3f68a8;
        }


ul.one-line-form {
    left: 600px;
    height: 40px;
    margin: 6px;
}

ul.one-line-form>li {
    display: inline;
}

    ul.one-line-form li img {
        position: inherit;
        top: 3px;
        opacity: 0.85;
        -webkit-transition: opacity 0.3s ease;
        -moz-transition: opacity 0.3s ease;
        -o-transition: opacity 0.3s ease;
        -ms-transition: opacity 0.3s ease;
        transition: opacity 0.3s ease;
    }

        ul.one-line-form li img:hover {
            opacity: 1;
            cursor:pointer;
        }

.left-margin-wide {
    margin-left: 1%;
}

.jsResumeIntro {
    position: absolute;
    top: 100px;
    right: 100px;
    border: 2px solid;
    padding: 10px;
}

.genericTip {
    position: absolute;
    width: auto;
    height: auto;
    padding: 5px;
    background: #fff;
    border: #000 solid 1px;
    color: #000;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

    .genericTip:after {
        content: "";
        position: absolute;
        top: -6px;
        left: 15px;
        border-style: solid;
        border-width: 0 6px 6px;
        border-color: #fff transparent;
        display: block;
        width: 0;
        z-index: 1;
    }

    .genericTip:before {
        content: "";
        position: absolute;
        top: -7px;
        left: 14px;
        border-style: solid;
        border-width: 0 7px 7px;
        border-color: #000 transparent;
        display: block;
        width: 0;
        z-index: 0;
    }

.genericBalloonStrong {
    position: absolute;
    width: auto;
    height: auto;
    padding: 7px;
    background: #00325a;
    color: #fff;
    font-size: 120%;
    border: #00325a solid 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    opacity: 0.9;
    z-index: 999;
    text-align: left;
    padding-right: 25px;
}

    .genericBalloonStrong a.jsDemoNext {
        float: right;
        font-weight: bold;
        color: #fff;
    }

    .genericBalloonStrong .jsDemoClose {
        position: absolute;
        right: 10px;
        top: 0px;
        cursor: pointer;
    }

    .genericBalloonStrong:before {
        content: "";
        position: absolute;
        top: -10px;
        left: 11px;
        border-style: solid;
        border-width: 0 10px 10px;
        border-color: #00325a transparent;
        display: block;
        width: 0;
        z-index: 0;
    }

.inputValidationError {
    border: 1px solid red !important;
}

.inputValidationWarning {
    border: 1px solid yellow !important;
}

.jsOptions {
    position: absolute;
    display: block;
    z-index: 1;
    background: #fff;
    padding: 5px;
    color: rgb(102, 102, 102);
    border: 1px solid #000;
}

    .jsOptions li {
        cursor: pointer;
    }

        .jsOptions li:hover {
            color: #000;
               cursor:pointer;
        }

div.centredDialog {
    z-index: 999;
    background: #fff;
    margin: 100px auto;
}
    div.centredDialog .jsDialogHeader {
        background-color: #3f68a8;
        color: #fff;
        padding: 5px;
    }

        div.centredDialog .jsDialogHeader span.jsClose {
            cursor: pointer;
        }

    div.centredDialog .jsDialogContent {
        padding: 10px 5px 10px 5px;
    }

    div.centredDialog .jsDialogFooter {
        padding: 0px;
        text-align: right;
    }

.formLeftColumn {
    width: 60%;
    min-width: 600px;
    float: left;
}

.formRightColumn {
    margin-left: 20px;
    width: 35%;
    min-width: 400px;
    float: left;
}

    .formRightColumn textarea {
        max-width: 99%;
    }

.formColour {
    background-color: rgb(242,242,242);
}

.formLayout {
    padding: 7px;
}
    .formLayout .fixed-label-over-select {
        display: inline-block;
        width:250px;
    }

    .formLayout table {
        border: 1px solid rgb(204, 204, 204);
        min-height: 50px;
    }

        .formLayout table tr td {
            vertical-align: top;
        }
    
    .formLayout input[type="text"] {
        width:250px;
	    margin:0 auto;
	    padding:3px;
	    border:none;
	    font-size:16px;
	    box-shadow: 1px 1px 0 rgba(255, 255, 255, 0.61);
    }

    .formLayout select {
        width:250px;
	    margin:0 auto;
	    padding:2px;
	    border:none;
	    font-size:16px;
	    box-shadow: 1px 1px 0 rgba(255, 255, 255, 0.61);
    }

    .formLayout .largeFreeText {
        width: 99.2%;
        resize: vertical;
        min-height: 75px;
        margin:0 auto;
	    padding:2px;
	    border:none;
	    font-size:16px;
	    box-shadow: 1px 1px 0 rgba(255, 255, 255, 0.61);
    }

    .formLayout .container {
        padding: 30px 0 30px 0;
    }

.formHeader h3 {
    background-color: #3f68a8;
    padding: 0.7em;
    /*margin-bottom:1em;*/
    font-size: 1.2em;
    color: #fff;
    height: 10px;
    /*width: 1200px;*/
}

#dvModal {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    background-color: #000;
    display: none;
}

#dvLoadSaveDialog {
    position: absolute;
    z-index: 3;
    top: 100px;
    display: none;
}

#dvDialog {
    position: absolute;
    min-height: 150px;
    z-index: 3;
    top: 100px;
    display: none;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.8);
}

    #dvDialog .dialogInner {
        padding: 20px 20px 12px 20px;
    }

.appWarning {
    text-align: center;
    width: 100%;
    color: white;
    background-color: #c00;
    padding: 5px;
    display: none;
}

    .appWarning a {
        color: white;
        font-weight: bold;
    }

.fixed-label {
    display: inline-block !important;
    width: 90px;
}

.fixed-label-x2 {
    display: inline-block !important;
    width: 180px;
}

.rightJustify {
    text-align: right;
}

/***********
    About Page
************/

.centreAbout {
    width: 1024px;
    text-align: left;
    line-height: normal;
}

    .centreAbout h4 {
        width: 1002px;
        height: 8px;
    }

    .centreAbout p {
        padding: 0.7em;
    }


/*Generic colours*/
.white {
    color: white;
}

/*GENERIC COMPLEX ITEMS*/
div.UIControlContainerMedium {
    width: 400px;
    height: 300px;
    overflow: scroll;
}

/*File Upload*/
label.fileInputButton input[type="file"] {
    position: fixed;
    top: -1000px;
}


.fileInputButton {
    display: inline-block;
    line-height: 1.25;
}


/*KPICard*/
.KPICardContainer {
            position: relative;
            width: 300px;
            height: 80px;
        }

            .KPICardContainer .KPICardMain {
                position: absolute;
                top: 10px;
                left: 10px;
                font-size: 20pt;
            }

                .KPICardContainer .good {
                    color: green;
                }

                .KPICardContainer .bad {
                    color: #ffbf00;
                }

            .KPICardContainer .KPICardImage {
                position: absolute;
                right: 10px;
                top: 10px;
            }

            .KPICardContainer .KPICardImageLabel {
                position: absolute;
                right: 10px;
                top: 30px;
            }

            .KPICardContainer .KPICardNote {
                position: absolute;
                left: 10px;
                bottom: 3px;
            }

            .KPICardContainer .KPICardSecondary {
                position: absolute;
                right: 30px;
                bottom: 3px;
            }




/*Classes to override everything because Bootstrap and our stuff clash, so for now, extra classes are the way to go.*/

div.dropdown-menu {
}

    div.dropdown-menu a.dropdown-item {
        display: block;
        border: none;
    }

        div.dropdown-menu a.dropdown-item:hover {
            background-color: #3f68a8;
            color: #fff;
        }

div.modal-content {
    margin: 0 auto;
    margin-top: 40px;
}