@import url('//fonts.googleapis.com/css?family=Open+Sans:400,300');
/* Have to use @import for the font, as you can only specify a single stylesheet */
* {
	margin:0;
	padding:0;
	-webkit-box-sizing:border-box;
	   -moz-box-sizing:border-box;
	       box-sizing: border-box; 
}

html {
	min-height:100%;
	color:#777777;
	font-weight:300;
	font-size:1em;
	font-family:'Open Sans', sans-serif;
	line-height:2em;
}
body {
	background-color: #e0e4ea;
	padding:20px;
	-webkit-backface-visibility:hidden;
}
code {
	font-family:Inconsolata,monospace;	
}
a, a:visited {
	color:#1E5B7A;
	text-decoration:none;
}
a:hover {
	color: #1E5B7A;
	text-decoration: underline;
}
/*------------------------------------*\
    Wrapper
\*------------------------------------*/
.wrapper {	
	background: none repeat scroll 0 0 #F4F4F5;
	border: 1px solid #FFFFFF;
	border-radius: 5px;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
	font-family: Courier New, Courier, serif;
	margin: 15px auto 0;
	max-width:800px;
	overflow: hidden;
	padding: 30px 50px;
}
pre {
	background: none repeat scroll 0 0 #F4F4F5;
	border: 1px solid #FFFFFF;
	border-radius: 5px;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
	overflow: hidden;
	padding: 30px 50px;
}
/*------------------------------------*\
    Demo block
\*------------------------------------*/
.block {
	font-size:.875em;
	margin:20px 0;
	padding:20px;
	color:#9099A3;
}

h1 {
	font-weight:200;
	text-align:center;
	font-size:1.4em;
	line-height:3em;
	font-family:'Museo Slab','Open Sans',monospace;
}
form {
	text-align:center;
}
input {
	margin: 0 auto;
	font-size: 100%;
	vertical-align: middle;
	*overflow: visible;
	line-height: normal;
	font-family:'Open Sans', sans-serif;
	font-size: 12px;
	font-weight: 300;
	line-height: 18px;
	color:#555555;
	display: inline-block;
	height: 20px;
	padding: 4px 32px 4px 6px;
	margin-bottom: 9px;
	font-size: 14px;
	line-height: 20px;
	color: #555555;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	width: 196px;
	background-color: #ffffff;
	border: 1px solid #cccccc;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	-webkit-transition: border linear .2s, box-shadow linear .2s;
	-moz-transition: border linear .2s, box-shadow linear .2s;
	-o-transition: border linear .2s, box-shadow linear .2s;
	transition: border linear .2s, box-shadow linear .2s;
	background: url('search.svg') no-repeat 211px center;
}

input:focus {
	border-color: rgba(82, 168, 236, 0.8);
	outline: 0;
	outline: thin dotted \9;
	/* IE6-9 */
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
	-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
}

input::-moz-focus-inner {
	padding: 0;
	border: 0;
}

input[type="search"] {
	background: #fff url('search.png') no-repeat 211px center;
	margin-top: 20px;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	-webkit-appearance: textfield;
	-webkit-transition:all 300ms ease-in;
	   -moz-transition:all 300ms ease-in;
	    -ms-transition:all 300ms ease-in;
	     -o-transition:all 300ms ease-in;
	        transition:all 300ms ease-in;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
	-webkit-appearance: none;
}
a.clear, a.clear:link, a.clear:visited {
	background-color: #6b98b5;
	border: 1px solid #5986a4;
	border-bottom-width: 3px;
	border-radius: 3px;
	color: #fff;
	padding: 5px 10px 6px;
	font-weight: 400;
	font-size: 14px;
	margin: 9px 0 0 20px;
	line-height: 14px;
	display: inline-block;
	vertical-align: middle;
	-webkit-transition:all 0ms ease-in;
	   -moz-transition:all 0ms ease-in;
	    -ms-transition:all 0ms ease-in;
	     -o-transition:all 0ms ease-in;
	        transition:all 0ms ease-in;
}
a.clear:hover {
	border-bottom-width: 1px;
	margin: 8px 0 0 20px;
	text-decoration: none;
	cursor: pointer;
}
/*------------------------------------*\
    Table (directory listing)
\*------------------------------------*/
table {
	border-collapse:collapse;
	font-size:.875em;
	max-width:100%;
	margin:20px auto 0px auto;
}
tr {
	outline:0;
	border:0;
}
tr:hover td {
	background:#f6f6f6;
}
th {
	text-align:left;
	font-size:.75em;
	padding-right:20px;
}
/* 2nd Column: Filename */
th + th {
	width:65%;
}
/* 3rd Column: Last Modified */
th + th + th {
}
/* 4th Column: Size */
th + th + th + th {
	width:5%;
}
tr td:first-of-type {
	padding-left:10px;
	padding-right:10px;
}
td {
	padding:5px 0;
	outline:0;
	border:0;
	border-bottom:1px solid #edf1f5;
	vertical-align:middle;
	text-align:left;
	-webkit-transition:background 300ms ease-in;
	   -moz-transition:background 300ms ease-in;
	    -ms-transition:background 300ms ease-in;
	     -o-transition:background 300ms ease-in;
	        transition:background 300ms ease-in;
}
td:last-child, th:last-child {
	text-align:right;
	padding-right:0px;
}
td a{
	display: block;
}
tr.parent a {
	color:#1E5B7A;
}
.parent a:hover {
	color:#1E5B7A;
}
hr {
	display: none;
}
/*------------------------------------*\
    Footer
\*------------------------------------*/
.footer {
	text-align:center;
	font-size:.75em;
	margin-top:50px;
}
img {
	outline:none;
	border:none;
}
th > img, td > a > img {
    max-height: 16px;
}
/*------------------------------------*\
    Misc
\*------------------------------------*/
.client-logo {
	display: block;
	margin: 0 auto 30px;
	max-height: 100%;
	width: 200px;
}
/*------------------------------------*\
    Logos Container
\*------------------------------------*/
.logos-container {	
    list-style: none;
    margin: 30px auto 50px;
	max-width: 800px;
}
li.glencoe-logo-container {
    display: inline;
    max-width: 180px;
    padding: 15px;
}
img.logo-image {
    display:inline-block;
    max-width: 165px;
}
