/*
	- Alan Colquhoun 
	- A00390667

	My website uses 6 plugins as listed below:
	
	1) Simple-Menu
	   * https://github.com/ikloster03/jquery-simple-menu/blob/master/LICENSE
	2) ProgressBarWars
	   * http://oscaruhp.github.io/progressBarWars/
	3) Excolo Slider
	   * https://github.com/Excolo/Excolo-Slider
	4) Simple Timer
	   * https://github.com/caike/jQuery-Simple-Timer
	5) Daily Messages
	   * https://github.com/michael-lynch/daily-messages
	6) Accordian
	   * http://accordionjs.zerowp.com/
*/
 
/* 
	- I had to adjust the padding in js/jquery-simple-menu.js >> see line
	  212 in the JS file. I set the left padding to 80px. I also had to
	  add CSS within this file on lines 45-48.
	- For the StarWars progress bars, I made CSS adjustments to lines
	  53, 56, 64, 65, 71, 72, 78 and 79. 
	- For the Excolo sliders, I changed the default behaviour of 
	  SliderA and SliderB as shown on index.html: lines 237-239 and
      lines 242-244 and left SliderC as is (default behaviour).
    - For the Simple Timer, I added CSS definitions on lines 84-94 and
	  adjusted the left margins to -10px on lines 101 and 105. As well,
	  I wanted to make sure the font size was large enough.
    - In the dailyMessages.js file, I had to correct the days array 
	  (lines 49-55), as well as line 57. "days[day-1]" was incorrect. 
	  I also changed the messages found in the HTML file (lines 250-256).
    - For the vertical accordian, I added a yellow background on the headers
      and added a boxheight class (lines 131-133). I also broke up the aside 
	  with white bars (lines 134-140). The aside continues onward.
*/

@import "menu.css";

/* Plugins CSS */

.simple-menu {
	background-color: #1b1a1a;
	padding: 15px 0 15px 0;
}

/* Progress Bar - Star Wars */

.barControl {
	margin: 5px auto;
}
.barContro_space {
	margin: 10px 0 20px 0;
	background: grey;
	border-radius: 5px;
}
.vader{
	width: 0%;
	display: block;
	border-radius: 2px;
	box-shadow:0px 0px 10px 5px #FF0000, 0 0 5px #FF0000, 0 0 5px #FF0000, 0 0 5px #FF0000, 0 0 5px #FF0000, 0 0 5px #FF0000, 0 0 5px #FF0000;
	background-color: lightgray;
}
.yoda{
	width: 0%; 
	display: block;
	border-radius: 2px;
	box-shadow:0px 0px 10px 5px #68B37A, 0 0 5px #68B37A, 0 0 5px #68B37A, 0 0 5px #68B37A, 0 0 5px #68B37A, 0 0 5px #68B37A, 0 0 5px #68B37A;
	background-color: lightgray;
}
.obi{
	width: 0%;
	display: block;
	border-radius: 2px;
	box-shadow:0px 0px 10px 5px #3B8CF8, 0 0 5px #3B8CF8, 0 0 5px #3B8CF8, 0 0 5px #3B8CF8, 0 0 5px #3B8CF8, 0 0 5px #3B8CF8, 0 0 5px #3B8CF8;
	background-color: lightgray;
}

/* Timer CSS */

#timer {
	font-size: 20px;
	letter-spacing: 0.1em;
	text-align: center;
	font-weight: 700
}
#msg {
	margin-left: 20px;
	padding-top: 5px;
	float: left;
}
	
.jst-hours {
  float: left;
}
.jst-minutes {
  float: left;
  margin-left: -10px;
}
.jst-seconds {
  float: left;
  margin-left: -10px;
}
.jst-clearDiv {
  clear: both;
}
.jst-timeout {
  color: red;
}
.bodyTimeoutBackground {
  background: white;
}
.timeout {
  color: red;
  -webkit-animation-name: blinker;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(1.0,0,0,1.0);
  -webkit-animation-duration: 1s;
}
@-webkit-keyframes blinker {
  from { opacity: 1.0; }
  to { opacity: 0.0; }
}

.bgd {
	background-color: yellow;
}	
.boxheight {
	height: 1490px;
}
.white {
	border: 10px solid white;
	border-radius: 5px;
	margin-left: -20px;
	margin-right: -20px;
	margin-bottom: 10px
}
.txtsize {
	padding: 10px 10px 0 10px;
	font-size: 18px;
}	
.padp {
	padding-top: 5px;
}	
.padtp {
	padding-top: 15px;
}	

html {
	width: 100%;
}
body {
	font: 12px/19px  Arial, Helvetica, sans-serif;
	color: #6d6d6d;
	position: relative;
	min-width: 960px;
	background: #1b1a1a;
}
h1, h2 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: normal;
	color: #fff;
}
h1 {
	margin-left: 100px;
}	
h2 {
    font-size: 2.5em;
    color : #FF8500;
}
p {
	margin-bottom: 15px;
}
img {
	max-width: 100%;
}
address {
	font-style: normal;
}
ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

/* links */

a {
	text-decoration: none;
	color: inherit;
	outline: none;
	transition: 0.5s ease;
	-o-transition: 0.5s ease;
	-webkit-transition: 0.5s ease;
}

a:hover {
	color: #a92c11;
}

/* clear */

.clear {
	float: none !important;
	clear: both;
}

/* header */

header {
	display: block;
	padding-top: 70px;
	position: relative;
	z-index: 999;
	padding-bottom: 52px;
	border-bottom: 1px solid #000;
}
header h1 {
	float: none;
	position: relative;
	z-index: 999;

}
header h1 a {
	display: block;
	overflow: hidden;
	margin: 0 auto;
	width: 355px;
	float: left;
	height: 108px;
	text-indent: -999px;
	transition: 0s ease;
	-o-transition: 0s ease;
	-webkit-transition: 0s ease;
}
header h1 a img {
	display: block;	
}

/*Content*/

.content {
	background: #fff;
	padding: 75px 0 70px 100px;
}

#intro {
	font-size: 2em;
	line-height: 1.2;
	width: 725px;
	padding-bottom: 25px
}
	
/* Aside */

aside {
    float: right;
    width: 340px;
    margin-right: 100px;
    background-color: #D0D0D0;
    padding: 10px;
    border: 1px solid #A8A8A8
}
aside .black {
	color: black
}		
aside a {
	font-size: 18px
}	
aside a:visited {
 	color: purple
}
aside a:active {
	color: silver
}
aside a:hover {
	color: red
}	
aside h1 {
    font-size: 1.5em;
	color: black;
    margin: 5px 0 10px 40px;
}	
aside h2 {
    font-size : 1.9em;
	margin-left: 10px
}
aside div {
    padding : 5px;
    background-color : #F0F0F0;
    margin-bottom : 15px;
}
aside ul {
    line-height: 1.8em;
    color: black;
}

.square {
	margin-left: 27px;
	list-style-type: square
}

#linksec {
	height: 325px;
}
#innerbox {
	height: 420px;
	margin-left: 10px;
	margin-right: 10px;
	border: 2px solid black;
}
#innerbox p {
	padding: 0 15px 0 15px
}
#numbers {
	margin-top: -10px	
}
#timer {
	margin-top: 5px;
	height: 25px
}	
#tr {
	padding-top: 12px;
}
	
section {
	width: 725px;
}	
section p {
	font-size: 16px;
	line-height: 1.2
}
figure {
	margin-left: 0px;
	padding-top: 20px;
	padding-bottom: 25px
}
		
/* Footer */

footer {
	display: block;
	padding: 23px 0 23px 100px;
	font-size: 20px;
	color: #c7c8cb;
	line-height: 1.2
}
footer p {
	padding-bottom: 5px;
}
	
#dm {
	margin-top: 5px;
	padding-bottom: 20px;
	color: orange
}

/* Anchor Adjustment */

.anchor1 {
    display:block;
    padding-top:70px;
    margin-top:-70px;
}
.anchor2 {
    display:block;
    padding-top:100px;
    margin-top:-100px;
}
