﻿@charset 'UTF-8';

/* Main */
html
{
  height: 100%;
}

body
{
  margin: 0;
  padding: 0;
  height: 100%;
  color: #333;
  background: #fafafa;
}

body,input,textarea,select
{
  font-family: 'Palatino Linotype';
  font-size: 11pt;
  font-weight: 300;
  line-height: 1.75em;
  color: #777;
}

/* Fonts */
h1,h2,h3,h4,h5,h6,p
{
  font-weight: 300;
  color: #333;
}

h2
{
  letter-spacing: -0.025em;
  font-size: 50px;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a
{
  color: inherit;
  text-decoration: none;
}
  
strong, b
{
  font-weight: 500;
  color: #000;
}

.pennant
{
  color: #333;
}

/* Links */
a, a:visited
{
  text-decoration: none;
  color: #2A5DB0;
  -webkit-transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out;
}

a:hover, a:active
{
  color: #333;
  text-decoration: none;
}


/* Header TAG */
header
{
  margin-bottom: 1.6em;
}

header h2
{
}

header .byline
{
  display: block;
}

/* Lists */
ul.default
{
  margin: 0;
  padding: 0em 0em 1.5em 0em;
  list-style: none;
}

ul.default li
{
  padding: 0.60em 0em;
  font-size: 0.95em;
  border-top: 1px solid;
  border-color: rgba(0,0,0,.1);
}

ul.default li:first-child
{
  padding-top: 0;
  border-top: none;
}

ul.default
{
}

ul.style li
{
  margin: 0;
  padding: 2em 0em 1.5em 0em;
  border-top: 1px solid;
  border-color: rgba(0,0,0,.1);
}

ul.style li:first-child
{
  padding-top: 0;
  border-top: none;
}

ul.style a 
{
  color: #434343;
}

ul.style .posted {
  padding: 0em 0em 1em 0em;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 8pt;
  color: #A2A2A2;
}

ul.style .first
{
  padding-top: 0px;
  border-top: none;
}

/* intro class wraps nav and logo ID */
#header
{
  position: relative;
  text-align: center;
  background-attachment: fixed;
  width: 100%;
}
.full
{
  height: 100%;
}
#header:before
{
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/header.jpg) no-repeat center fixed;
  z-index: -1;
  transform-origin: top left;
  -webkit-filter: blur(3px) grayscale(70%);
  -webkit-background-size: cover;
  -webkit-height: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

/* Nav: Navigation bar at top of page */
#nav
{
  z-index: 2;
}

#nav-wrapper
{
  padding: 5px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

#nav > ul
{
  margin: 0;
  padding: 0;
  text-align: center;
}

#nav > ul > li
{
  vertical-align: top;
  position: static;
  font-family: Arial;
  font-size: 13pt;
  font-weight: 400;
  display: inline-block;
  border-color: rgba(255,255,255,.1);
}

#nav > ul > li:last-child
{
  padding-right: 0;
  border-right: none;
}

#nav > ul > li > a
{
  color: #FFF;
  display: inline-block;
  vertical-align: middle;
  width: 200px;
  padding: 20px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}

.menu-parent a,
.menu-parent span
{
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

.menu-parent a:before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 50%;
  right: 50%;
  bottom: 0;
  background: #FFF;
  height: 4px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.menu-parent > a:hover:before
{
  border-radius: 5px;
  left: 0;
  right: 0;
}
.active > a
{
  border-radius: 5px;
  background: rgba(0,0,0,1) !important;
}

.menu-parent > a:hover
{
  background: #000;
}
.sub-menu-parent
{
  background: rgba(0,0,0,0);
}
.sub-menu-parent a
{
  background: rgba(0,0,0,0);
}

.sub-menu-parent:hover a
{
  background: #000;
}
.sub-menu-parent > a:hover
{
  background: #000;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.sub-menu
{
  list-style: none;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: -5px;
  width: 100%;
  z-index: 100;
  font-size: 13px;
  visibility: hidden;
  opacity: 0;
  background: #000;
  padding-left: 0px;
  display: none;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
}

.sub-menu > li
{
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  padding-bottom: 10px;
  padding-top: 10px;
}

.sub-menu > li > a
{
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  width: 100%;
  text-align: center;
  color: #FFF;
}

.sub-menu-parent:hover .sub-menu
{
  display: block;
  visibility: visible;
  opacity: 1;
}

.sub-menu > li:hover
{
  border-radius: 5px;
  background: #FFF;
}

.sub-menu > li:hover > a
{
  background: #FFF;
  color: #000;
}

/* Logo/ Main Header */
#logo
{
  margin-top: 15%;
  margin-bottom: 10%;
  position: relative;
  height: 60%;
  z-index: -1;
}

.full #logo
{
  margin-top: 25%;
}

.full
{
  height: 100%;
}

#logo h1
{
  z-index: -1;
  color: #FFF;
}

#logo a
{
  display: block;
  position: relative;
  font-size: 20px;
  z-index: -1;
  text-decoration: none;
  font-weight: 500;
  line-height: 1em;
  font-size: 4em;
  color: #FFF;
  letter-spacing: -0.05em;
  margin: 0 0 0.125em 0;
}

#logo span
{
  z-index: -1;
  font-size: 30px;
  color: #FFF;
}

#main
{
  position: relative;
  background: #fafafa;
  text-align: left;
}

#main h3
{
  display: block;
  font-weight: 300;
}

#main .pennant
{
  font-size: 4em;
}

#main .button
{
  margin-top: 1.5em;
}

.outline
{
  border: 1px solid black;
  border-radius: 6px;
  background-color: transparent;
}

.button
{
	position: relative;
	display: inline-block;
	background: #000;
	border-style: solid;
	border-color: #000;
	padding: 0.8em 2em;
	text-decoration: none !important;
	font-size: 1.2em;
	font-weight: 300;
	color: #FFF !important;
	-moz-transition: color 0.35s ease-in-out, background-color 0.35s ease-in-out;
	-webkit-transition: color 0.35s ease-in-out, background-color 0.35s ease-in-out;
	-o-transition: color 0.35s ease-in-out, background-color 0.35s ease-in-out;
	-ms-transition: color 0.35s ease-in-out, background-color 0.35s ease-in-out;
	transition: color 0.35s ease-in-out, background-color 0.35s ease-in-out;
	text-align: center;
	border-radius: 0.25em;
}

.button:hover
{
	background: #fafafa;
	color: #000 !important;
	border-color: 000;
}

#featured
{
  padding-top: 50px;
  position: relative;
  background: #f2f2f2;
  text-align: center;
}

#featured h3
{
	display: block;
	font-weight: 300;
}

#featured .pennant
{
	font-size: 4em;
}

#featured .button
{
	margin-top: 1.5em;
}

.info h2
{
  font-size: 24px;
  text-align: left;
  font-weight: bold;
  padding-top: 25px;
  padding-bottom: 5px;
}

.info
{
  padding-top: 25px;
}

.info h1
{
  font-size: 36px;
  text-align: left;
  font-weight: bold;
  padding-top: 50px;
  padding-bottom: 25px;
}


.quote
{
  text-indent: 0px !important;
  margin-left: 40px;
  margin-right: 40px;
  font-style: italic;
}

.info p
{
  text-indent: 25px;
  text-align: left;
}

li:hover
{
  color: #777;
}

.info ul
{
  text-align: left;
  margin-left: 40px;
}

.cmd-box
{
  background-color: #333;
  border-radius: 5px;
  width: 100%;
  color: #FFF;
  padding-left: 5px;
}

root, user, directory
{
  font-weight: bold;
  display:inline-block;
  font-size: 16px;
  font-weight: bold;
  padding-right: 4px;
  
}

root
{
  color: #ef2929;
}

user
{
  color: #8ae234;
}

directory
{
  color: #729fcf;
}

.cmd-box > p
{
  color: #FFF;
}

key
{
  border-style: solid;
  padding-left: 4px;
  padding-right: 4px;
  border-bottom-width: 4px;
  border-bottom-color: #BBB;
  border-left-width: 3px;
  border-top-width: 3px;
  border-left-color: #DDD;
  border-top-color: #DDD;
  border-right-width: 3px;
  border-right-color: #BBB;
  background-color: #EEE;
  border-radius: 3px;
}

code
{
  background-color: #EEE;
  border-radius: 3px;
  padding-left: 3px;
  padding-right: 3px;
  border-color: #DDD;
  border-width: 1px;
  border-style: solid;
}

.container
{
  padding-bottom: 20px;
}

hr
{
  border-color: #000;
}

.note
{
  width: 100%;
  background-color: #d9edf7;
  padding-right: 10px;
  padding-left: 10px;
  padding-top: 8px;
  border-radius: 5px;
  border-style: solid;
  border-color: #d9edf7;
  border-width: 1px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.note > p, .note > h1, .note > strong, .note > p > b
{
  color: #31708f;
}

.note > span
{
  color: #31708f;
  margin-right: 5px;
}

.warning
{
  width: 100%;
  background-color: #f2dede;
  padding-right: 10px;
  padding-left: 10px;
  padding-top: 8px;
  border-radius: 5px;
  border-style: solid;
  border-color: #f2dede;
  border-width: 1px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.warning > p, .warning > h1, .warning > strong, .warning > p > b
{
  color: #a94442;
}

.warning > span
{
  color: #a94442;
  margin-right: 5px;
}

img
{
  width: 300px;
  height: 300px;
  -webkit-transition: opacity 0.25s ease-in-out;
  opacity: 1;
  border-radius: 4px;
}

img:hover
{
  opacity: 0.65;
}

.right
{
  margin-left: 5%;
  float: right;
}

.left
{
  margin-right: 5%;
  float: left;
}

.contents
{
  position: fixed;
  right: 0;
  bottom: 10%;
  width: 15%;
  list-style: none;
  padding: 20px;
  padding-left: 20px;
  background: #c7c7c7;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}

.contents h1
{
  padding: 0;
  padding-bottom: 10px;
  margin: 0;
  text-align: left;
}

.contents a
{
  margin: 0 auto;
  text-align: center;
}

.external
{
  position: absolute;
  z-index: 10;
  margin: 15px;
  margin-top: 20px;
  float: left;
  border-radius: 5px;
}

.external .links
{
  position: absolute;
  font-size: 25px;
  padding: 10px;
  padding-bottom: 0;
  margin: 0;
  left: 0;
  border-radius: 5px;
}

.external ul
{
  background-color: #000;
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 300%;
  padding-top: 20px;
  padding-left: 10px;
  padding-bottom: 10px;
  border-radius: 5px;
}

.external > ul > li,
.external > ul > li > a 
{
  text-align: left;
  font-size: 20px;
  color: #FFF;
}

.external > ul > li > a:hover
{
  color: rgb(0, 111, 255);
}

.external:hover > ul
{
  display:block;
}

.external:hover > i
{
  background-color: #000;
  left: 0;
}
