/*******************************************************************************
Slate Theme for GitHub Pages
by Jason Costello, @jsncostello
*******************************************************************************/

@import url(pygment_trac.css);

/*******************************************************************************
MeyerWeb Reset
*******************************************************************************/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*******************************************************************************
Theme Styles
*******************************************************************************/

body {
  box-sizing: border-box;
  color:#111;
  background: #c3d9cc;
  font-size: 16px;
  font-family: 'Myriad Pro', Calibri, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  margin: 10px 0;
  font-weight: 700;
  font-family: 'Lucida Grande', 'Calibri', Helvetica, Arial, sans-serif;
  color:#666;
  letter-spacing: -1px;
}

h1 {
  font-size: 32px;
  font-weight: 900;
  color: #296643;
}

h2 {
  color:#555;
  padding-bottom: 10px;
  font-size: 28px;
  background: url('../images/bg_hr.png') repeat-x bottom;
  width: 75%;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 15px;
}

p {
  margin: 10px 0 15px 0;
}

footer p {
  color: #f2f2f2;
}

a {
  text-decoration: none;
  color: #007edf;
  text-shadow: none;

  transition: color 0.3s ease;
  transition: text-shadow 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -webkit-transition: text-shadow 0.3s ease;
  -moz-transition: color 0.3s ease;
  -moz-transition: text-shadow 0.3s ease;
  -o-transition: color 0.3s ease;
  -o-transition: text-shadow 0.3s ease;
  -ms-transition: color 0.3s ease;
  -ms-transition: text-shadow 0.3s ease;
}

a.undecorated {
  transition: none;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  -ms-transition: none;
}

#main_content a:hover {
  color: #0069ba;
  text-shadow: #0090ff 0px 0px 2px;
}

footer a:hover {
  color: #43adff;
  text-shadow: #0090ff 0px 0px 2px;
}

em {
  font-style: italic;
}

strong {
  font-weight: bold;
}

img {
  position: relative;
  margin: 0 auto;
  max-width: 750px;
  padding: 5px;
  margin: 10px 0 10px 0;
  border: 1px solid #ebebeb;

  box-shadow: 0 0 5px #ebebeb;
  -webkit-box-shadow: 0 0 5px #ebebeb;
  -moz-box-shadow: 0 0 5px #ebebeb;
  -o-box-shadow: 0 0 5px #ebebeb;
  -ms-box-shadow: 0 0 5px #ebebeb;
}

img.undecorated {
  width: auto;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  -ms-box-shadow: none;
  border: none;
}

pre, code {
  color: #296643;
  font-family: "Consolas", "Andale Mono", "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace;
  font-size: 12px;
}

.highlight {
  background: #fff;
}

pre {
  width: 94%;
  margin: 0 auto;
  padding: 10px;
  background-color: #f8f8f4;
  border: 1px solid #ececec;
  overflow: auto;
}

blockquote {
  color: #666;
  margin-bottom: 20px;
  padding: 0 0 0 20px;
  border-left: 3px solid #bbb;
}

ul, ol, dl {
  margin-bottom: 15px
}

ul li {
  list-style: inside;
  padding-left: 20px;
}

ol li {
  list-style: decimal inside;
  padding-left: 20px;
}

li p {
  margin: 0;
}

li ol, li ul {
  margin: 0;
}

dl dt {
  font-weight: bold;
}

dl dd {
  padding-left: 20px;
  font-style: italic;
}

dl p {
  padding-left: 20px;
  font-style: italic;
}

hr {
  height: 1px;
  margin-bottom: 5px;
  border: none;
  background: url('../images/bg_hr.png') repeat-x center;
}

table {
  border: 1px solid #373737;
  margin-bottom: 20px;
  text-align: left;
 }

th {
  font-family: 'Lucida Grande', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  padding: 10px;
  background: #373737;
  color: #fff;
 }

td {
  padding: 10px;
  border: 1px solid #373737;
 }

form {
  background: #f2f2f2;
  padding: 20px;
}

h6 code {
  position: relative;
  top: 5px;
  padding: 0;
  margin: 0;
  font-style: normal;
  font-size: 16px;
  letter-spacing: 0.2px;
  box-shadow: none;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
}


/*******************************************************************************
Full-Width Styles
*******************************************************************************/

.outer {
  width: 100%;
}

.inner {
  position: relative;
  max-width: 760px;
  padding: 20px 3px;
  margin: 0 auto;
}

.ui-widget-content a {
  text-decoration: none;
  color: #007edf;
}

#forkme_banner {
  display: block;
  position: absolute;
  top:0;
  right: 10px;
  z-index: 10;
  padding: 10px 50px 10px 10px;
  color: #fff;
  background: url('../images/blacktocat.png') #0090ff no-repeat 95% 50%;
  font-weight: 700;
  box-shadow: 0 0 10px rgba(0,0,0,.5);
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}

#header_wrap {
  background: #296643;
  background: -moz-linear-gradient(top, #153E50, #003380);
  background: -webkit-linear-gradient(top, #153E50, #003380);
  background: -ms-linear-gradient(top, #153E50, #003380);
  background: -o-linear-gradient(top, #153E50, #003380);
  background: linear-gradient(top, #153E50, #003380);
}

#header_wrap .inner {
  padding: 0;
}

#project_tagline {
  position: absolute;
  top: 30px;
  left: 160px;
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  background: none;
  text-shadow: #111 0px 0px 8px;
}

#navbar_wrap {
  border-top: 1px solid #999;
  background-color: #0090ff;
  border-bottom: 1px solid #666;
}

#navbar_wrap .inner {
  padding: 0;
}

.navlink {
  display: inline;
  margin: 2px 14px;
}

.navlink a {
  color: #fff;
}

#main_content_wrap {
  background-color: #fff;
  /* Main content min-height is relative to height of navbar. */
  min-height: 55em;
}

#main_content {
  padding-top: 40px;
}

#sidebar_wrap {
  float: right;
  color: #3d664f;
  background-color: #fff;
  border-left: 1px solid #ddd;
  margin: 0 0 0 16px;
  width: 300px;
}

#sidebar_content ul, #sidebar_content li, #sidebar_content h1 {
  margin: 0;
  padding: 0;
}

#sidebar_content li {
  margin-left: 6px;
  list-style-type: circle;
}

#sidebar_content {
  color: #666;
}

#sidebar_content a {
  font-size: 14px;
  font-family: Tahoma;
}

#sidebar_content h1 {
  margin: 4px 0 2px 0;
  color: #aaa;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-left: 25px;
}

#footer_wrap {
  border-top: 1px solid #333;
  background: #3d664f;
  clear: both;
}

#footer_wrap a {
  color: #fff;
}

#table_contents{
  float: left;
  color: #3d664f;
  background-color: #fff;
  border-left: 1px solid #ddd;
  margin: 0 0 0 16px;
  width: 280px;
}

/*******************************************************************************
Small Device Styles
*******************************************************************************/

@media screen and (max-width: 480px) {
  body {
    font-size:14px;
  }

  #downloads {
    display: none;
  }

  .inner {
    min-width: 320px;
    max-width: 480px;
  }

  #project_title {
  font-size: 32px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 21px;
  }

  h4 {
    font-size: 18px;
  }

  h5 {
    font-size: 14px;
  }

  h6 {
    font-size: 12px;
  }

  code, pre {
    min-width: 320px;
    max-width: 480px;
    font-size: 11px;
  }

}


.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}

.alert h4 {
  margin-top: 0;
  color: inherit;
}

.alert .alert-link {
  font-weight: bold;
}

.alert > p,
.alert > ul {
  margin-bottom: 0;
}

.alert > p + p {
  margin-top: 5px;
}

.alert-dismissable {
  padding-right: 35px;
}

.alert-dismissable .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

.alert-success hr {
  border-top-color: #c9e2b3;
}

.alert-success .alert-link {
  color: #2b542c;
}

.alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}

.alert-info hr {
  border-top-color: #a6e1ec;
}

.alert-info .alert-link {
  color: #245269;
}

.alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}

.alert-warning hr {
  border-top-color: #f7e1b5;
}

.alert-warning .alert-link {
  color: #66512c;
}

.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

.alert-danger hr {
  border-top-color: #e4b9c0;
}

.alert-danger .alert-link {
  color: #843534;
}

.btn {
	background: #3498db;
	background-image: -webkit-linear-gradient(top, #3498db, #2980b9);
	background-image: -moz-linear-gradient(top, #3498db, #2980b9);
	background-image: -ms-linear-gradient(top, #3498db, #2980b9);
	background-image: -o-linear-gradient(top, #3498db, #2980b9);
	background-image: linear-gradient(to bottom, #3498db, #2980b9);
	-webkit-border-radius: 28;
	-moz-border-radius: 28;
	border-radius: 28px;
	text-shadow: 0px 1px 3px #666666;
	font-family: Tahoma;
	color: white;
	font-size: 13px;
	font-weight: bold;
	padding: 10px 20px 10px 20px;
	text-decoration: none;
}

.btn:hover {
	background: #3cb0fd;
	background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);
	background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);
	background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);
	background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
	background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
	text-decoration: none;
}
