/*
  Kanetics Page
      Author: James Kane
      Date:   03/02/2014

      Filename:         Kanetics.css
      Supporting files:  Kanetics.css, 

*/

/* Sets items as block elements */

article, aside, figure, figcaption, footer, hgroup, header, section, nav {
	display: block;
	}
/* sets up the default font size and padding */
      * {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 100%;
	padding: 0px;
	margin: 0px;
	}
/* removed the underline from hyperlinks */
nav a	{
	text-decoration: none;
	}
/*  sets the body positioning and size limits*/
body	{
	position: relative;
	width: 98%;
	min-width: 1000px;
	max-width: 1400px;
	
	}
body	img {
	position: absolute;
	top: 25px;
	height: 150px;
	width: 550px;
	
	
	}

/* sets the header position, background and padding */
header {
	position: absolute;
	top: 200px;
	left: 5px;
	background-color: white;
	width: 15%;
	margin-top: 120px
	padding-bottom: 2500px;
	
	}
/* sets the image width in the header */
header img {
	width: 100%;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	}

/* setst the vertical nav list type and font size */

header .vertical li {
	
	font-size: 120%;
	list-style: none;
	
	}

/*  sets the color, display and indent on hyperlinks in the vertical nav */

 header .vertical li a {
	color: Black;
	display: block;
	width: 80%;
	margin-left: 5px;
	text-indent: 10px;
	padding-top: 3px;
	padding-bottom: 3px;
	}
/* sets the hover characteristings in the vertical nav */

header .vertical li a:hover {
	color: gray;
	background-color: orange;
	
	border-radius: 10px;
	}
/* sets the width of the horizontal nav */
.horizontal {
	position: absolute 0 0;
	width: 85%;
	margin-left: 5px;
	}
/* sets the list items within the horizontal nav */
.horizontal li {
	display: block;
	float: left;
	width: 20%;
	background-color: white;
	font-size: 100%;
	text-align: center;
	padding: 5px 10px 5px 10px;
	text-indent: 10px;
	text-transform: uppercase;
	}
/* sets the hyperlink font color in the horizontal nav */
.horizontal a {
	color: black; 
	}
/* sets the hover color for the horizontal nav */
.horizontal li a:hover {
	color: gray;
	background-color: red;
	;
	border-radius: 10px;
	}
/* sets the float, width, and margins of the section */
section {
	clear: left;
	float: left;
	margin-left: 16%;
	margin-top: 20px;
	width: 58%;
	}
/* sets the color, font size, font weight and letter spacing of the h1 */
section h1 {
	font-family: 'comic sans MS', Geneva, sans-serif;
	color: black;
	font-size: 200%;
	font-weight: normal;
	letter-spacing: 5px;
	}
/* sets the margin of paragraphs in the section */
section p {
	margin: 15px;
	}
/* sets the list type and margin of the ul in the section */
section ul {
	list-type: disc;
	margin: 25px;
	}
/* sets the bottom margin of the li in the ul of the section */
section ul li {
	margin-bottom: 10px;
	}
/* sets up the aside border color and float */
aside {
	border: 3px solid gray;
	color: black;
	float: right;
	margin: 10px;
	width: 40%;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	}
/*  sets the font size and margin for paragraphs in the aside*/
aside p {
	font-size: 90%;
	margin: 20px;
	}
/*  sets the float width, margin and color for the article*/
article {
	float: left;
	width: 25%;
	margin-left: 1%;
	background-color: white;
	border-radius: 12px;
	}
/* sets the parameters for the hgroup */
article hgroup {
	background: white url(slide4.jpg) top left no-repeat;
	color: black;
	margin-bottom: 10px;
	height: 60px;
	indent: 10px;
	border: 3px solid gray;
	border-radius: 12px;
	}
/* sets up the hgroup h1 heading */
article hgroup h1 {
	font-size: 140%;
	font-weight: normal;
	text-indent: 8px;
	}
/*  sets up the hgroup h2 heading */
article hgroup  h2{
	font-size: 110%;
	font-weight: normal;
	text-indent: 8px;
	}
/*  sets up the paragraphs within the article */
article p {
	font-size: 90%;
	margin: 15px;
	}
/* sets up the figure */
figure	{
	clear: left;
	/* float: left; I found that if I set the float left the figure would drop down and leave significant white space even with a clear*/
	margin-left: 15%;
	width: 85%;
	background-color: gray;
	}
/* sets up the figure div */
figure div {
	overflow: scroll;
	white-space: nowrap;
	}
/* sets the margin and border radius on the images */
figure img {
	margin: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-webkit-width: auto;
	
	}
/* sets up the figure caption */
figcaption {
	background-color: white;
	font-size: 80%;
	text-align: center;
	font-style: italic;
	margin-top: 5px;
	
	}



