@charset "UTF-8";
body {
	margin: 0;
	padfding: 0;

	font-family: font-family
: 'Playfair Display', serif;
	font-size: 90%;
	line-height: 1;
	/* [disabled]background-color: #FFF; */
	background-image: url(../images/background.jpg);
}
#holder
{
	display:table-cell;
	vertical-align:middle;
	text-align:center;
	height:110px;
	width:1080px;
	
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl {
	padding: 0;
	margin: 0;
}
li {
	text-align: right;
	list-style-position: inside;
	background-image: url(../SpryAssets/paw.png);
	background-repeat: no-repeat;
	background-position: right;
	padding-top: 10px;
	padding-right: 30px;
	margin-right: 10px;
	list-style: none;
	
	
}
h1, h2, h3, h4, h5, h6, p {
	padding-right: 15px;
	padding-left: 15px;
	margin-bottom: 0.5em;
	margin-top: 0px;
}

a img {
	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: #000;
	text-decoration: none;
}
a:visited {
	color: #000;
}
a:hover, a:active, a:focus {
	font-weight: bolder;

}

/* ~~ This fixed width container surrounds all other divs ~~ */
.container {
	width: 1080px;
	/* ~~ for the desktop view the background for the 3 columns is probided by the background-image for the container div. This is necessary since the sidebars and content divs are varying heights.  ~~ */
	margin: 0 auto;
	/* [disabled]background-image: url(../images/background.jpg); */
}

/* ~~ The header design will accommodate a logo or banner image up to 960 pixels wide.  ~~ */
.header {
	height: 110px;

}
/* ~~ These are the columns for the layout. ~~ 
The background colors of the columns match those in the background image of the container. This is redundant on the desktop but plays an important role for viewing with a tablet or phone.
*/
.sidebar1 {
	float: left;
	width: 220px;
	color: #FFF;
	background: #FFF;
	padding: 10px 0;
}
.content {
	width: 640px;
	float: left;
	background: #FFF;
	padding: 10px 0;
}
.sidebar2 {
	float: right;
	width: 220px;
	background-color: #FFF;
	padding: 10px 0;
}

.content ul, .content ol {
	padding: 0 15px 15px 40px;
}

ul.nav {
	list-style: none;
	border-top: 1px solid #FFF;
	margin: 0;
	background: #FFF;
}
ul.nav li {
	border-bottom: 1px solid #FFF;
}
ul.nav a, ul.nav a:visited {
	padding: 5px 5px 5px 15px;
	display: block;
	width: 160px;
	text-decoration: none;
	color: #FFF;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus {
	color: #900;
}

.footer {
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both;
	vertical-align: text-bottom;
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
	border-top-width: 3px;
	border-top-style: none;
	border-top-color: #FFF;
	
	display: none;
}
.footer p {
	font-size: 0.75em;
	
}
p.blocktext {
	margin-left: auto;
	margin-right: auto;
	width: 8em;
}
/* ~~ Miscellaneous float/clear classes ~~ */
.fltrt {
	float: right;
	margin-left: 8px;
}
.fltlft {
	float: left;
	margin-right: 8px;
}
.clearfloat {
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
/* the following two syles make adjust the size of images in the header and contenct divs for all platforms*/
.header img{
	max-width: 100%;
	height: auto;
}
.content img {
	max-width: 100%;
	height: auto;
}
pre {
	margin-right: 40px;
	margin-left: 40px
}

<!-- Login page-->
* {
  	box-sizing: border-box;
  	font-family: -apple-system, BlinkMacSystemFont, "segoe ui", roboto, oxygen, ubuntu, cantarell, "fira sans", "droid sans", "helvetica neue", Arial, sans-serif;
  	font-size: 16px;
  	-webkit-font-smoothing: antialiased;
  	-moz-osx-font-smoothing: grayscale;
}
body {
  	background-image: url(../images/background.jpg);
}
.login {
  	width: 400px;
  	background-color: #ffffff;
  	box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
  	margin: 100px auto;
	
}
.login h1 {
  	text-align: center;
  	color: #5b6574;
  	font-size: 24px;
  	padding: 20px 0 20px 0;
  	border-bottom: 1px solid #dee0e4;
	
	
}
.login form {
  	display: flex;
  	flex-wrap: wrap;
  	justify-content: center;
  	padding-top: 20px;
	background: #fff;
}
.login form label {
  	display: flex;
  	justify-content: center;
  	align-items: center;
  	width: 50px;
  	height: 50px;
  	background-color: #3274d6;
  	color: #ffffff;

}
.login form input[type="password"], .login form input[type="text"] {
  	width: 310px;
  	height: 50px;
  	border: 1px solid #dee0e4;
  	margin-bottom: 20px;
  	padding: 0 15px;
}
.login form input[type="submit"] {
  	width: 100%;
  	padding: 15px;
 	margin-top: 20px;
  	background-color: #3274d6;
  	border: 0;
  	cursor: pointer;
  	font-weight: bold;
  	color: #ffffff;
  	transition: background-color 0.2s;
}
.login form input[type="submit"]:hover {
	background-color: #2868c7;
	transition: background-color 0.2s;
}


body.loggedin {
	background-color: #f3f4f7;
}

}