html, body {
  height: 100%;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Droid Sans', serif;
  font-size: 17px;
  line-height: 1.4em;
  color: rgb(62, 67, 73);
  
  margin-top: -40px;
}

h1, .bracket {
  font-size: 72px;
}

.bracket {
  color: hsl(211, 49%, 63%);
}

h1, h2, h3 {
  font-family: 'Bree Serif', serif;
  font-weight: normal;
  margin: 15px 0 5px 0;
  
  line-height: 120%;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 30px;
}

p {
  margin-bottom: 17px;
  margin-top: 17px;
}

#terminal {
  background-color: #000000;
}

code, pre {
  font-family: 'Inconsolata', 'Consolas', 'Monaco', 'Menlo', 'Deja Vu Sans Mono', 'Bitstream Vera Sans Mono', monospace;
  font-size: 0.9em;
}

h1 code {
  background: none;
  border: none;
}

code {
  background: rgb(245, 245, 245);
  border: 1px solid rgb(215, 215, 215);
  padding: 3px;
}

pre {
  background: #EEE;
  
  padding: 7px 30px;
  margin: 15px -30px;
  
  line-height: 1.3em;
}

footer {
  text-align: center;
  margin-bottom: 60px;
}

footer .nav {
  display: inline-block;
  list-style: none;
  height: 40px;
}
header {
  text-align: center;
  margin-bottom: 60px;
}

header h1 {
  display: inline-block;
}

header .logo {
  line-height: 100px;
  height: 100px;
  
  margin-bottom: 20px;
}

.container {
  width: 1024px;
  margin: 40px auto;
  
  text-align: justify;
}
.cr2 {
    height: 50px;
    position:absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
  
}

header .nav {
  display: inline-block;
  list-style: none;
  height: 40px;
}

.nav li {
  float: left;
}

.nav li:not(:last-child) {
  margin-right: 8px;
}

.nav li a {
  color: white;
  text-decoration: none;
  background-color: hsl(211, 49%, 43%);
  
  padding: 5px;
}

.nav li a:hover {
  background-color: hsl(211, 49%, 63%);
}

.notification {
  position: absolute;
  
  top: 0px;
  left: 0px;
  right: 0px;
  height: 70px;
  
  line-height: 70px;
  text-align: center;
  
  font-size: 25px;
  margin: 0px;
  
  cursor: pointer;
}

.notification.flash-message {
  background-color: hsl(211, 49%, 73%);
  border-bottom: 1px solid hsl(211, 49%, 53%);
  
  color: white;
}

.notification.flash-success {
  background-color: hsl(128, 49%, 73%);
  border-bottom: 1px solid hsl(128, 49%, 53%);
  
  color: white;
}

.notification.flash-warning {
  background-color: hsl(40, 49%, 73%);
  border-bottom: 1px solid hsl(40, 49%, 53%);
  
  color: white;
}

.notification.flash-error {
  background-color: hsl(0, 49%, 73%);
  border-bottom: 1px solid hsl(0, 49%, 53%);
  
  color: white;
}


form .form-error-message {
  display: inline-block;
  color: hsl(0, 49%, 53%);
  
  float: right;
  text-align: left;
  
  min-width: 335px;
  
  margin-top: 3px;
  font-size: 15px;
}

form .form-error {
  color: hsl(0, 49%, 53%);
}

form .form-error input {
  color: hsl(0, 49%, 53%);
  border-color: hsl(0, 49%, 53%);
  background-color: hsl(0, 49%, 83%);
}


body.terminal {
  padding-left: 750px;
}
body.terminal h1, body.terminal .bracket {
  font-size: 48px;
}

body.terminal .nav li a {
  background-color: hsl(211, 49%, 43%);
  padding: 3px;
  font-size: 15px;
}

body.terminal .nav li a:hover {
  background-color: hsl(211, 49%, 63%);
}

body.terminal pre {
  border-radius: 15px;
}


#terminal {
  position: fixed;
  
  left: 0px;
  top: 0px;
  bottom: 0px;
  right: 570px;
}

#terminal_ide  {
  position: absolute;
  
  left: 0px;
  top: 0px;
  bottom: 0px;
  right: 0px;
}

#terminal iframe {
  height: 100%;
  width: 100%;
}

#side {
  padding: 10px;
  
  position: fixed;
  
  right: 0px;
  top: 0px;
  bottom: 0px;
  
  width: 550px;
  border-left: 5px solid #000000;
  overflow-y: scroll;
}

#overlay {
  position: fixed;
  
  right: 0px;
  top: 0px;
  bottom: 0px;
  
  width: 440px;
  
  background-color: black;
  
  background-image: url('/static/spinner.gif');
  background-position: center center;
  background-repeat: no-repeat;
  
	zoom: 1;
	filter: alpha(opacity=50);
	opacity: 0.5;
  
  z-index: 5;
}

a {
  color: hsl(211, 100%, 27%);
  text-decoration: none;
}

a:hover {
  color: hsl(211, 100%, 37%);
  text-decoration: underline;
}

.btn.active,.btn:active {
  -webkit-box-shadow:inset 0 2px 4px rgba(0, 0, 0, 0.25),0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow:inset 0 2px 4px rgba(0, 0, 0, 0.25),0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow:inset 0 2px 4px rgba(0, 0, 0, 0.25),0 1px 2px rgba(0, 0, 0, 0.05);
}


.btn {
  cursor: pointer;
  display: inline-block;
  background-color: #E6E6E6;
  background-repeat: no-repeat;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(white), color-stop(25%, white), to(#E6E6E6));
  background-image: -webkit-linear-gradient(white, white 25%, #E6E6E6);
  background-image: -moz-linear-gradient(top, white, white 25%, #E6E6E6);
  background-image: -ms-linear-gradient(white, white 25%, #E6E6E6);
  background-image: -o-linear-gradient(white, white 25%, #E6E6E6);
  background-image: linear-gradient(white, white 25%, #E6E6E6);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
  padding: 5px 14px 6px;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  color: #333;
  font-size: 13px;
  line-height: normal;
  border: 1px solid #CCC;
  border-bottom-color: #BBB;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -webkit-transition: 0.1s linear all;
  -moz-transition: 0.1s linear all;
  -ms-transition: 0.1s linear all;
  -o-transition: 0.1s linear all;
  transition: 0.1s linear all;
}


button, input[type="submit"] {
  width: auto;
  height: auto;
}



form .clearfix {
  margin-bottom: 12px;
  zoom: 1;
}

form .input {
  margin-left: 170px;
}

input, textarea {
  -webkit-transition: border linear 0.2s,box-shadow linear 0.2s;
  -moz-transition: border linear 0.2s,box-shadow linear 0.2s;
  -ms-transition: border linear 0.2s,box-shadow linear 0.2s;
  -o-transition: border linear 0.2s,box-shadow linear 0.2s;
  transition: border linear 0.2s,box-shadow linear 0.2s;
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

input[type="text"], input[type="password"], textarea, select {
  display: inline-block;
  width: 210px;
  height: auto;
  padding: 4px;
  font-size: 13px;
  line-height: 18px;
  color: gray;
  border: 1px solid #CCC;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

input[type="checkbox"] {
  height: 23px;
}

label {
  margin-top: 3px;
  float: left;
  width: 150px;
  text-align: right;
}



::-webkit-scrollbar {
  width: 9px;
  height: 9px;
  background-color: #525252;
}

::-webkit-scrollbar-thumb {
  background-color: hsl(211, 49%, 43%);
}

::-webkit-scrollbar-thumb:hover {
  background-color: hsl(211, 49%, 53%);
}
::-webkit-scrollbar-corner {
  display: none;
}

::-webkit-scrollbar-track {
  background-color: white;
}

.col
{
 float: left;
 width: 25%;
}

.last{
 float: right;
 width: 25%;
}
.row{
 border: 1px solid green; 
 height: auto;
 overflow: auto;
}


#faqbox {
    display: none;
}

#faqbox:target {
    display: block;
}
#faqbox4c {
    display: none;
}

#faqbox4c:target {
    display: block;
}

.previewbox{
    display: none;
    width: 100%;
}

a:hover + .previewbox,.previewbox:hover{
    display : block;
    position: relative;
    z-index: 100;
}




dl.faqToggle {}
dl.faqToggle dt { color:#0054a6; cursor:pointer; margin:0 0 .25em 0; }
dl.faqToggle dd {  }
.faqToggleNumber { }
.faqToggleQues { text-decoration:underline; }
.faqToggleQuesPrefix { padding-right:3px; color:#FF6600 }
.faqToggleAnsPrefix { padding-right:3px; color:green; }

.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }


    .youtube-player {
        position: relative;
        padding-bottom: 56.23%;
        /* Use 75% for 4:3 videos */
        height: 0;
        overflow: hidden;
        max-width: 100%;
        background: #000;
        margin: 5px;
    }
    
    .youtube-player iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 100;
        background: transparent;
    }
    
    .youtube-player img {
        bottom: 0;
        display: block;
        left: 0;
        margin: auto;
        max-width: 100%;
        width: 100%;
        position: absolute;
        right: 0;
        top: 0;
        border: none;
        height: auto;
        cursor: pointer;
        -webkit-transition: .4s all;
        -moz-transition: .4s all;
        transition: .4s all;
    }
    
    .youtube-player img:hover {
        -webkit-filter: brightness(75%);
    }
    
    .youtube-player .play {
        height: 72px;
        width: 72px;
        left: 50%;
        top: 50%;
        margin-left: -36px;
        margin-top: -36px;
        position: absolute;
        background: url("//i.imgur.com/TxzC70f.png") no-repeat;
        cursor: pointer;
    }


