
/* Jen's original styles */
h1 {	font-family: Arial;
	font-size: 6px;
	color: #ffffff;
}

.style3 {
	font-size: 30px;
	font-family: "Times New Roman", Times, serif;
	font-weight: bold;
}
.style4 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 24px;
}
.style5 {
	font-size: 18px;
	font-family: Arial, Helvetica, sans-serif;
}
.style6 {
	color: #008851;
	font-weight: bold;
	font-size: 36px;
}
a:link {
	color: #008851;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #008851;
}
a:hover {
	text-decoration: underline;
	color: #008851;
}
a:active {
	text-decoration: none;
	color: #008851;
}

/* Peter's styles are below */

body{
    min-height: 100%;
    margin: 0;
    padding: 0;
    margin: 0;
    padding: 0;
}
html{
   height: 100%;
}

/* This is for the overall wrapper <div> */
/* (We could use a newer method called "display flexing" here
    but it's only supported on the latest browser versions. */
#wrapper {
	margin-right: auto;
	margin-left: auto;
	padding: 0px;
	background: #FFFFFF;
    height:100%;
    display:flex;
    display: -webkit-flex;
    flex-direction: row;
    -webkit-flex-direction: row;
    -webkit-align-content: stretch;
    align-content: stretch;
}

ul {
    list-style-type: none;
}

/* These are for the sidebar <div> */

div#sidebar{
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    background: #ccc;
    float: left;
}

#sidebarList{
    margin: 60px 0px 0px 10px;
    padding: 0px;
    font-family: Arial;
	font-weight: bold;
	font-size: 20px;
	color: red;
}

a.sidebar:link {
	color: #green;
	text-decoration: none;
}

a.sidebar:hover, a.sidebar:active {
    color: red;
}

/* These are for the main <div> */

div#main {
    margin-left: 150px;
    height: 100%;
    text-align: center;
    padding: 0 50px 0 50px;
}


#wdtnLogo{
    width: 100%;
}

/* Error Box if you try to Login Incorrectly*/

.errorBox {
    position: absolute;
	left: 640px;
    top: -90px;
    z-index: 90;
	padding: 10px;
	width: 250px;
	border: 2px solid #444;
	color: #000;
	background-color: #f80;
	border-radius: 15px;
	-moz-border-radius: 15px;
	-moz-box-shadow: 5px 5px 5px #111;
	-webkit-box-shadow: 5px 5px 5px #111;
	box-shadow: 5px 5px 5px #111;
}

.formLabel {
   color: #000000;
}

.formLabelError {
   color: #ff2200;
}

/* For the Recordings Page */

#recordings {
    margin: auto;
	width: 620px;
	min-height: 200px;
    font-size: 18px;
	font-family: Arial;
}

#weeklyList {
    float:left;
    width: 315px;

}

#monthlyList {
    float:right;
    width: 295px;
}

/* For the Audio Player Page */

.active{
    color: #0ff;
}

.doneInMonthly {
    text-decoration:line-through solid red;
    text-decoration-thickness: 2px;
    text-decoration-line: line-through;
    -webkit-text-decoration-line: line-through; /* Safari */
    -webkit-text-decoration-color: #ff0000; /* Safari */ 
}

#playlist{
    background:#f8f8f8;
	width:450px;
	padding: 0 0 10px 0;
}

#playlist li {
    margin: 0 0 4px 0;
}

.listenerlogin {
    position: relative;
    margin: auto;
    width: 700px;
    height: auto;
    padding-top: 20px;
    border: 2px solid #800;
    border-radius: 25px;
    -moz-border-radius: 25px;
}


/* For Admin Users Only */

.adminMenu {
    position: relative;
    left: 15px;
    top: 10px;
	width: 1100px;
	height: auto;
	margin: 10px 0px 0px 0px;
	padding: 10px;
	margin-bottom: 20px  
}

.button {
  font: bold 13px Arial;
  text-decoration: none;
  background-color: #EEEEEE;
  margin: 10px 1px 10px 2px;
  padding: 3px 5px 3px 5px;
  border-top: 1px solid #CCCCCC;
  border-right: 1px solid #333333;
  border-bottom: 1px solid #333333;
  border-left: 1px solid #CCCCCC;
  border-radius: 5px;
  -moz-border-radius: 5px;
}


.login {
    position: absolute;
    left: 100px;
    top: 100px;
	width: auto;
	height: auto;
	padding: 10px;
	border: 2px solid #444;
	border-radius: 15px;
	-moz-border-radius: 15px;
}

.userList {
    position: relative;
    left: 30px;
    top: 10px;
	width: 1010px;
	height: auto;
	margin: 20px 0px 0px 0px;
	padding: 10px;
	border: 2px solid #444;
	border-radius: 15px;
	-moz-border-radius: 15px;
	margin-bottom: 20px
}

.loginList {
    position: relative;
    left: 50px;
    top: 10px;
	width: 300px;
	height: auto;
	padding: 10px;
	border: 2px solid #444;
	border-radius: 15px;
	-moz-border-radius: 15px;
}


#loading {
   width: 100%;
   height: 100%;
   top: 0;
   left: 0;
   position: fixed;
   display: block;
   opacity: 0.7;
   background-color: #fff;
   z-index: 99;
   text-align: center;
}

#spinner {
  position: absolute;
  top: 100px;
  width: 100%;
  height: 100%;
  z-index: 100;
  display: none;
}

.userForm {
    position: absolute;
    left: 100px;
    top: 100px;
	width: 900px;
	height: auto;
	padding: 10px 10px 40px 10px ;
	border: 2px solid #444;
	border-radius: 15px;
	-moz-border-radius: 15px;
}

#userFormLeft  {
  float:left;
  width: 740px;
  height: 200px;
  margin: 2px 2px 20px 2px;
  padding: 5px;
  border: 1px solid red;
  overflow: hidden;
}

#userFormRight {
  float:right;
  width: 130px;
  height: auto;
  margin-top: 0px;
  margin-right: 2px;
  border: 1px solid blue;
  overflow: hidden;
  font-size: 15px;
}

.userTableTitle {
    font-size: 2em;
    padding-top: 20px;
    text-align: center;
}

#userTable {
    font-size: 0.75em;
	border: 1px solid #269;
	border-spacing: 0;
	table-layout: fixed;
	border-collapse:collapse;
}

td.userTd {
	border: 0px;
	padding: 0px;
}

td#listener {
	max-width: 200px;
	min-width: 200px;
}
td#address {
	max-width: 300px;
	min-width: 300px;
}
td#email {
	max-width: 170px;
	min-width: 170px;
}
td#home {
	max-width: 80px;
	min-width: 80px;
}
td#mobile {
	max-width: 80px;
	min-width: 80px;
}
td#dob {
	max-width: 60px;
	min-width: 60px;
}
td#uname {
	max-width: 55px;
	min-width: 55px;
}
td#utype {
	max-width: 50px;
	min-width: 50px;
}
td#active {
	max-width: 50px;
	min-width: 50px;
}
td#last {
	max-width: 120px;
	min-width: 120px;
}
tr.grey {
        background-color:#f0f0f0;
}
span.userID {
	border: 1px solid #269;
	padding: 2px;
        margin-left: 30px;
	font-size: 1.0em;
	font-family: verdana;
	font-weight: bold;
}


/* Booking Form   */

.bookingTable {
  border: 1px solid #269;
  border-spacing: 0px 10px;
  margin-left: 5px;
}

.bTableText {
  width: 1060px;
  margin: 10px 10px 0px 10px;
  font-size: 18px;
}

.bookingTable th {
        background: #ffffff;
}

.bookingTable td {
	width: 180px;
	min-height: 100px;
	font-family: Arial;
	font-size: 17px;
	border-bottom: 1px solid #000000;
	border-top: 1px solid #000000;
	background: #eeffff;
	padding-top: 5px;
	padding-bottom: 5px;
}

.greyed {
  color: #888888;
}

span.me {
  padding: 2px 4px 2px 4px;
  background: #ff8888;
  border: 1px solid #000000;
  border-radius: 7px;
  -moz-border-radius: 7px;
}
span.bookMe {
  padding: 2px 4px 2px 4px;
  background: #00ff00;
  border: 1px solid #000000;
  border-radius: 7px;
  -moz-border-radius: 7px;
}
/* Just pad the first cell */
.bookingTable tr td:nth-child(1) {
    padding-left: 5px;
    width: 150px;
}

.note {
  margin: 0px 0px 0px 10px;
  font-size: 16px;
}

/* Hide the selectors when page loads */
.selector {
  display: none
}

/* Copier Page  */

#copierWrapper{
      width: 800px;
      margin-left: 40px;
}
.weeklyBox {
    position: absolute;
    left: 50px;
    top: 300px;
	width: 350px;
	height: 200px;
	padding: 10px;
	border: 2px solid #444;
	border-radius: 15px;
	-moz-border-radius: 15px;
	-moz-box-shadow: 5px 5px 5px #111;
	-webkit-box-shadow: 5px 5px 5px #111;
	box-shadow: 5px 5px 5px #111;
}

.monthlyBox {
    position: absolute;
    left: 450px;
    top: 300px;
	width: 350px;
	height: 200px;
	padding: 10px;
	border: 2px solid #444;
	border-radius: 15px;
	-moz-border-radius: 15px;
	-moz-box-shadow: 5px 5px 5px #111;
	-webkit-box-shadow: 5px 5px 5px #111;
	box-shadow: 5px 5px 5px #111;
}

.downloadBoxLabel{
  text-align: center;
  font: bold 28px Arial;
}

.downloadButton {
  width:200px;
  position: relative;
  top: 20px;
  margin: auto;
  text-align: center;
  text-decoration: none;
  font: 22px Arial;
  text-decoration: none;
  background-color: #EEEEEE;
  padding: 3px 8px 3px 8px;
  border-top: 1px solid #CCCCCC;
  border-right: 1px solid #333333;
  border-bottom: 1px solid #333333;
  border-left: 1px solid #CCCCCC;
  border-radius: 5px;
  -moz-border-radius: 5px;
}

.downloadButton a:hover {
  background-color: #ffffff;
  text-decoration: none;
}

.uploadWarning {
  position: absolute;
  left: 20px;
  width:250px;
  z-index: 100;
  padding: 2px 4px 2px 4px;
  background: #ffff00;
  border: 1px solid #000000;
  border-radius: 5px;
  -moz-border-radius: 5px;
}

#bwbfButtons {
  position: absolute;
  left: 50px;
  top: 550px;
}

#tutDownload {
  position: absolute;
  left: 100px;
  top: 650px;
}

.hidden {
  visibility: hidden;
  opacity: 0;
}

.visible {
  visibility: visible;
  opacity: 1;  
}