﻿@charset "utf-8";

/* Responsive site styles */

* {
  box-sizing: border-box;
}


/****************************  Header Styles   ****************************/


.header {
  border: 1px solid #505050;
  padding: 15px;
}

#headerend {
	clear: left;
	border-bottom-color: #000000;
	border-bottom-width: thick;
	height: 12px;
}


/****************************  DIV Menu Styles  ****************************/


.navbar {
  overflow: hidden;
  background-color: #707070;
/*  position: fixed;	*/
/*  top: 0;	*/
  width: 100%;
}

.navbar a {
  float: left;
  display: block;
  color: #FFFFFF;
  text-align: center;
/*  padding: 14px 16px;	*/
  text-decoration: none;
  font-size: 17px;
	width: 14%;
	border-radius: 10px;
	padding-top: 6px;
	padding-bottom: 6px;
	border-top: thin solid #303030;
	border-bottom: thin solid #303030;
	border-right: thin solid #303030;
	border-left: thin solid #303030;
}

.navbar a:hover {
  background: #DDDDDD;
  color: 000000;
	font-weight: bold;
}



/****************************  UL Menu Styles   ****************************/
#menu {
	margin-left: auto;
	margin-right: auto;
	padding-left: auto;
	padding-right: auto;
}

#menu ul {
	list-style-type: none;
	margin-top: auto;
	margin-right: auto;
	margin-bottom: auto;
	margin-left: auto;
	padding-top: 12px;
	padding-left: auto;
	padding-right: auto;
}

#menu ul li {
	width: 14%;
	float: left;
	border-radius: 10px;
	background-color: #707070;
	border-top: thin solid #303030;
	border-bottom: thin solid #303030;
	border-right: thin solid #303030;
	border-left: thin solid #303030;
}

#menu a {
	display: block;
	float: left;
	color: #FFFFFF;
	padding-top: 6px;
	padding-bottom: 6px;
	text-decoration: none;
	width: 100%;
}

#menu a:hover, #menu a:active, #menu a:focus, #menu a.thispage{
	background-color: #DDDDDD;
	color: #000000;
	font-weight: bold;
	border-radius: 10px;
	border-width: thin;
	border-style: solid;
}



/****************************  Footer Styles   ****************************/
.footerlft {
	font-size: 10px;
	text-align: left;
	float: left;
}
.footerrt {
	font-size: 14px;
	float: right;
	text-align: right;
	color: #E0E0E0;
}
.footerrt a {
	color: #E0E0E0;
}



/****************************  Table  ****************************/


table {
	text-align:center;
	width:85%;
	border:0;
	padding:0;
}

table tr td {
	margin-right: auto;
	margin-left: auto;
	padding-left: auto;
	padding-right: auto;
	padding-bottom: 0px;
	border: medium solid #383838;
	padding-top: 10px;
}



/****************************  Responsive Page -  Column Styles  ****************************/
/* Float Left */
[class*="col-"] {
  float: left;
  padding: 15px;
  border: 1px solid 505050;
}

.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}


@media only screen and (max-width: 768px) {
  /* For mobile phones: */
  [class*="col-"] {
    width: 100%;
  }
}


.row::after {
  content: "";
  display: table;
}




/*== General Styles ==*/

body {
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	background-color: #505050;
	padding: 0;
	text-align: center;
	color: #B0B0B0;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	color: #B0B0B0;
}

#month {
	font-family: Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", serif;
	font-size: 16px;
	line-height: 20px;
	color: black;
	text-align:center;
}

img {
  max-width: 100%;
  height: auto;
}

  
<style type="text/css">
  	.auto-style1 {
	text-decoration: underline;
	font-size: large;
	margin-left:auto;
	margin-right:auto;
}

#ws_name {
	font-family: Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", serif;
	font-size: 20px;
	line-height: 20px;
	color: black;
	text-align:center;	
}

#wsmenu {
	
	color: black;
	font-size: 20px;
	text-align:center;
}


/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
	list-style-type: none;
	color: #000000;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
	color: #d0d0d0;
	font-style: normal;
	font-weight: 400;
	text-align: left;
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #D0D0D0;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #D0D0D0;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
	color: #FFFFFF;
}



/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
ul.nav {
	list-style: none; /* this removes the list marker */
	border-top: 1px solid #666; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
	margin-bottom: 15px; /* this creates the space between the navigation on the content below */
}
ul.nav li {
	border-bottom: 1px solid #666; /* this creates the button separation */
}
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 5px 5px 5px 15px;
	display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
	width: 160px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
	text-decoration: none;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	background-color: #ADB96E;
	color: #FFF;
}


#bullet_list {
	text-align: left;
	color: #D0D0D0;
	list-style-position: outside;
	list-style-type: disc;
	font-size: medium;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
#email {
	text-align: center;
}
#signup {
	text-align: center;
}

