
body {
	font-family:Open Sans,sans-serif;
	font-size:16px;
	padding:0;
	margin:0;
}
.pad {
	width:100%;
	max-width:1100px;
	margin:0 auto;
}
.header, .content {
	width:100%;
	max-width:1100px;
	margin:0 auto;
	background:#ececec;
	padding:15px;
}
.topBar {
	font-size:12px;
	color:#FFF;
	text-align:right;
	background:#3f7ec2;
	padding:5px;
}
.topBar a {
	color:#FFF;
}

#hdrLogo {
	display:inline-block;
	position:relative;
	top:-5px;
	margin:10px 0;
}
.navBar {
	background:#3f7ec2;
	border-radius:20px;
	padding:10px;
}
.navBar ul, .navBar li {
	list-style:none;
	padding:0;
	margin:0;
}
.navBar li {
	display:inline-block;
	border-left:solid 1px #FFF;
	color:#FFF;
	padding:0 13px;
}
.navBar li:nth-child(1) {
	border-left:0;
}
.navBar li a {
	font-size:15px;
	font-weight:bold;
	color:#FFF;
	text-decoration:none;
	transition:0.2s all;
}
.navBar a:hover {
	color:#ffd05b;
	transition:0.2s all;
}

/* CONTENT */
.content {
	border-radius:0 0 15px 15px;
	padding-bottom:40px;
	min-height:500px;
}
#announcementText {
	width:800px;
	height:200px;
	font-family:Geneva, Arial, Helvetica, sans-serif;
	font-size:16px;
	padding:5px;
}


/* PHP FILE TREE OVERRIDES */
li.pft-file {
	padding:3px 3px 3px 5px;
}
.pft-file:hover {
	background:#FFF;
}
.php-file-tree a.fileDetailsBtn {
	color:#3f7ec2;
}
.fileDetailsBtn {
	display:inline-block;
	float:right;
	font-size:13px;
}
i.details {
	display: inline-block;
	color:#3f7ec2;
	border: solid #3f7ec2;
	border-width: 0 2px 2px 0;
	padding: 3px;
}
i.details.right {
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}
i.details.left {
	transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
}
i.details.down {
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}
/* DOC REVIEWS FORM */
.fileDetails {
	position:relative;
	float:right;
	text-align:right;
	font-size:11px;
	padding:4px 4px 0 3px;
}

/* The switch - the box around the slider */
.switch {
	position: relative;
	display: inline-block;
	width:40px;
	height:20px;
} 
/* Hide default HTML checkbox */
.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}
/* The slider */
.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
}
.slider:before {
	position: absolute;
	content: "";
	height:16px;
	width:16px;
	left:2px;
	bottom:2px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}
input:checked + .slider {
	background-color: #2196F3;
}
input:focus + .slider {
	box-shadow: 0 0 1px #2196F3;
}
input:checked + .slider:before {
	-webkit-transform: translateX(20px);
	-ms-transform: translateX(20px);
	transform: translateX(20px);
}
/* Rounded sliders */
.slider.round {
	border-radius:20px;
}
.slider.round:before {
	border-radius: 50%;
}

.spinner,
.spinner img {
	display:inline-block;
	width:20px;
	height:20px;
}
.spinner {
	position:absolute;
	top:4px;
	left:70px;
	display:none;
}
.reviewedDate {
	display:inline-block;
	width:60px;
}
.reviewerName {
	display:inline-block;
	width:80px;
	text-align:left;
}


.adminSubmitBtn {
	font-size:14px;
	color:#FFF;
	background:#324a5e;
	border-radius:15px;
	border:none;
	padding:7px 20px;
	transition:0.2s all;
	cursor:pointer;
}
.adminSubmitBtn:hover {
	text-shadow:1px 1px 1px rgba(0,0,0, 0.8);
	background:#3f7ec2;
	transition:0.2s all;
}


/* USERS MANAGEMENT */
/* new user form*/
#addNewUser {
	float:right;
}
.newUserForm {
	display:none;
	padding:8px 15px 25px 25px;
	background:#f9f9f9;
	border:solid 1px #CCC;
	border-radius:15px;
}
.newUserForm #closeBtn {
	display:block;
	float:right;
	font-size:12px;
	font-weight:bold;
	color:#FFF;
	text-decoration:none;
	background:#324a5e;
	border-radius:20px;
	padding:3px 7px;
}
.newUserForm input[type=text],
.newUserForm select,
.updateUserForm input[type=text],
.newPasswordForm input[type=text] {
	padding:10px;
	width:200px;
	margin-right:15px;
	background:#FFF;
	border:solid 1px #CCC;
	border-radius:5px;
}
.newUserForm .note,
.note {
	font-size:13px;
	font-weight:500;
	color:#3f7ec2;
	font-style:italic;
	margin:20px 0 0 0;
}
/* list all users */
table.listUsers td {
	font-size:15px;
	padding:4px 15px 4px 4px;
	width:250px;
}
table.listUsers tr:hover {
	background:#FFF;
	transtion:0.2s all;
}
table.listUsers tr.hdrRow td {
    font-weight: bold;
    border-bottom: solid 1px #3f7ec2;
}
.editBtn {
    display: none;
    font-size: 13px;
    border: solid 1px #3f7ec2;
    border-radius: 10px;
    padding: 0 10px;
	color:#000;
    line-height: 1.5em;
	text-decoration:none;
    cursor: pointer;
	background:#FFF;
}
table.listUsers tr:hover .editBtn {
	display:inline-block;
}
.editUserForm,
.deleteUserForm {
	display:inline;
}

/* USER DETAIL PAGE */
h3 span.userName {
	color:#3f7ec2;
	padding-left:5px;
}
/* folder permissions */
#availableFolders .php-file-tree .pft-directory {
	list-style:none;
}
#availableFolders .php-file-tree .pft-directory:hover {
}
#availableFolders .php-file-tree .pft-directory a {
	background:url('phpFileTree/styles/default/images/directory.png') left top no-repeat;
	padding-left:25px;
}
#availableFolders .pft-file { /* only show folders, hide files */
	display:none;
}
/* child folders? */
.allChildFolders {
	display:none;
	padding-left:25px;
	font-size:12px;
}
.allChildFolders .switch {
	height:15px;
	width:35px;
}
.allChildFolders .slider:before {
	height:11px;
	width:11px;
}


.small {
	font-size:0.6em;
}
.hidden {
	display:none;
}
:focus {
	outline:none;
}

/* SUCCESS AND ERROR MESSAGING */
.error li, .success li {
	margin:2px 20px;
	list-style-type:disc;
}
.error, .success {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:14px;
	background:green;
	color:#FFF;
	text-shadow:1px 1px 1px #000;
	font-weight:bold;
	padding:3px
}
.error {
	background:red;
}

#Footer {
	position:relative;
}
#Footer a {
	color:#3f7ec2;
	text-decoration:none;
	transition:0.2s all;
}
#Footer a:hover {
	color:#000;
	transition:0.2s all;
}

