﻿/* Main containers */

#admin_header, 
#admin_body, 
#admin_footer {
	margin: 0;
	padding: 0;
	overflow: hidden;
}

/* Main containers */

.panel {
	margin: 0;
	padding: 0;
	background: rgb(255,255,255);
}
.footer {
	margin: 10px 0;
	padding: 0;
}
.footer p {
    margin: 0;
    color: rgb(255,255,255);
    font-size: 80%
}

.content {
	margin: 0;
	padding: 0;
	overflow: auto;
}

.bordered {
    border-top: solid 1px rgb(204,204,204);
    border-bottom: solid 1px rgb(204,204,204);
}
.padded {
    padding: 0 20px !important;
}

/* FORM STYLES */

.narrow {
    width: 150px !important;
}
.ultra_narrow {
    width: 75px !important;
}

.popup_container {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: fixed;
	background: url('../images/screen_lock_bg.png');
    z-index:10000;
}

.vcentre {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	display: table;
}

.hcentre {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	display: table-cell;
	vertical-align: middle;
}

.message {
	width: 500px;
	padding: 20px;
	margin: auto;
	background: #ffffff;
	box-shadow: rgba(0,0,0,0.5) 0 5px 10px;
	-webkit-border-radius: 3px; /* Safari 3-4, iOS 1-3.2, Android 1.6- */
	-moz-border-radius: 3px;    /* Firefox 1-3.6 */
	border-radius: 3px;         /* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
}

.message h2 {
	margin-top: 0
}

.form_error {
	padding: 10px;
	color: rgb(255,255,255);
	background: rgb(204,0,0);
	-webkit-border-radius: 3px; /* Safari 3-4, iOS 1-3.2, Android 1.6- */
	-moz-border-radius: 3px;    /* Firefox 1-3.6 */
	border-radius: 3px;         /* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
	font-weight: 700;
}

.validation_list ul {
    margin: 0;
    margin-left: 20px;
    padding: 0
}
.validation_list ul li {
    padding-bottom: 10px;
    list-style-type: none;
    font-style: italic
}
.validation_list ul li:last-child {
    padding-bottom: 0
}

/* FORM STYLES */

a.text_link {
	color: rgb(84,88,90); /* PANTONE 425 C */
	font-weight: 700;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s; /* IE10 is actually unprefixed */
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

a.text_link:hover, 
a.text_link:active {
	color: rgb(217,217,214); /* PANTONE Cool Gray 1 C */
	-webkit-transition: none;
	-moz-transition: none;
	-ms-transition: none; /* IE10 is actually unprefixed */
	-o-transition: none;
	transition: none;
}

.prompt {
    margin: 0 0 0 310px;
    padding-top: 10px;
    font-style: italic;
}

.fade{

    animation: fadeout 2s 1;
    -webkit-animation: fadeout 2s 1;
    animation-fill-mode: forwards;

    animation-delay: 2s;
    -webkit-animation-delay: 3s; /* Safari and Chrome */
    -webkit-animation-fill-mode: forwards;

} 

@keyframes fadeout {
    from {opacity :1;}
    to {opacity :0;}
}

@-webkit-keyframes fadeout {
    from {opacity :1;}
    to {opacity :0;}
}


div.spinner {
	display: block;
	width: 200px;
	height: 200px;
	margin: auto;
	-webkit-animation: spin 3s linear infinite; /* Safari 4+ */
	-moz-animation: spin 3s linear infinite; /* Fx 5+ */
	-o-animation: spin 3s linear infinite; /* Opera 12+ */
	animation: spin 3s linear infinite; /* IE 10+, Fx 29+ */
}
@-webkit-keyframes spin {
	from {-webkit-transform: rotate(0deg);}
	to {-webkit-transform: rotate(360deg);}
}
@-moz-keyframes spin {
	from {-moz-transform: rotate(0deg);}
	to {-moz-transform: rotate(360deg);}
}
@-o-keyframes spin {
	from {-o-transform: rotate(0deg);}
	to {-o-transform: rotate(360deg);}
}
@keyframes spin {
	from {transform:rotate(0deg);}
	to {transform: rotate(360deg);}
}



/* not sure if these are used ? */

.feedback {
	font-style: italic
}

.username {
	font-weight: 600;
}

.float_right {
	float: right
}

/* not sure if these are used ? */


.panel_navigation {
	background: -moz-linear-gradient(-45deg, rgba(218,217,215,0.25) 0%, rgba(218,217,215,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(-45deg, rgba(218,217,215,0.25) 0%,rgba(218,217,215,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(135deg, rgba(218,217,215,0.25) 0%,rgba(218,217,215,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#40dad9d7', endColorstr='#dad9d7',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

.panel_navigation ul {
	padding: 0;
	margin: 0 auto;
	overflow: hidden;
	margin-bottom: 1px
}
.panel_navigation li {
	display: block;
	float: left;
	margin: 0;
	margin-right: 1px
}
.panel_navigation li a {
	display: block;
	margin-left: 1px;
	white-space: nowrap;
	background: rgba(255,255,255,0.5);
	font-size:  18px;
	height: 35px;
	line-height: 35px;
    padding: 0 5px;
	font-weight: 100;
	border: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.panel_navigation li a:hover {
	background: rgba(255,255,255,1);
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
}
.panel_navigation li a:disabled {
	background: rgb(255,255,255);
}

.panel_navigation li.active a {
	background: rgba(255,255,255,1);
}


/* audit */

table {
    border: none;
    width: 100%;
}

tr {
}

th {
    font-size: 80%;
}
th, 
td {
    border: none;
    padding: 0;
    text-align: left;
    vertical-align: top;
    background: none
}
td th, 
td td {
    padding: 5px;
}
tr:nth-child(even) {
    background: rgba(217,217,214,0.25);
}
tr tr {
    background: none
}

/* audit */




table.display_grid {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    table-layout: fixed;
}
table.display_grid tr {
    transition: background 0.35s
}
table.display_grid tr:hover {
	background: rgb(217,217,214); /* PANTONE Cool Gray 1 C */
    transition: none;
}
table.display_grid tr td {
    height: 40px;
    padding: 0 5px;
    text-align: center;
    vertical-align: middle;
}

table.display_grid tr td:first-child {
    white-space: nowrap;
    overflow: visible;
    width: 200px !important;
    text-align: left;
}

table.display_grid tr:first-child td {
    white-space:nowrap;
    overflow: visible;
    text-align: left;
    height: 150px;
    -webkit-transform: rotate(-90deg);
    /* Chrome, Safari, Opera */
    transform:rotate(-90deg);
}

table.display_grid tr td:last-child,
table.display_grid tr:last-child td {
    font-weight: 700
}
