@import url(https://fonts.googleapis.com/css?family=PT+Sans:400,700);
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800);
@import url(font.css);

/* GLOBAL STYLE
----------------------------------------------------------------------------------------------------------------------------------- */

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
}

a:focus {
  outline: thin dotted;
}

a:hover,
a:active {
  outline: 0;
}

h1 {
  font-size: 2em;
}

b,
strong {
  font-weight: bold;
}

ul,
ol {
  margin-left: 0;
  padding: 0;
}

dl {
  margin: 0;
}

dd {
  margin: 0;
}

#nav li {
  display: inline-block;
}

img {
  max-width: 100%;
}

svg:not(:root) {
  overflow: hidden;
}

form {
  margin: 0;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

legend {
  border: 0;
  *margin-left: -7px;
  padding: 0;
}

button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}

button,
input {
  line-height: normal;
}

input[type="text"] {
  outline: none;
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  padding-left: 10px;
}

input[type="text"]:focus {
  -ms-box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.07), 0px 0px 5px #007eff;
  -webkit-box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.07), 0px 0px 5px #007eff;
  -moz-box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.07), 0px 0px 5px #007eff;
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.07), 0px 0px 5px #007eff;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
  *overflow: visible;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

textarea {
  overflow: auto;
  vertical-align: top;
}

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

th {
  text-align: left;
}

.clearfix {
  zoom: 1;
}

.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.animated {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: 1s ease;
  -moz-animation: 1s ease;
  -ms-animation: 1s ease;
  -o-animation: 1s ease;
  animation: 1s ease;
}

.animated.hinge {
  -webkit-animation: 2s ease;
  -moz-animation: 2s ease;
  -ms-animation: 2s ease;
  -o-animation: 2s ease;
  animation: 2s ease;
}

body {
  min-width: 1230px;
  background: url(../images/bg.png) #f9f9f9;
  font-family: "Open Sans", "PT Sans", sans-serif;
  color: #3c3f3f;
  font-size: 14px;
  line-height: 1.3;
}

.wrap {
  width: 1200px;
  margin: auto;
  padding: 0 15px;
}

img,
video {
  max-width: 100%;
}

a {
  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  transition: all 250ms ease;
  color: #5B7DBD;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: #3989F6;
}


/* NAVIGATION - DROPDOWN
----------------------------------------------------------------------------------------------------------------------------------- */

#nav .level1 li {
  position: relative;
}

#nav ul.level2 {
  background: #fff;
  background: rgba(255, 255, 255, 0.99);
  list-style: none;
  position: absolute;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -webkit-box-shadow: 0 2px 1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 2px 1px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 2px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.1);
  font-size: 1em;
  display: none;
  height: auto;
  width: auto;
}

#nav ul.level2 li {
  padding: 5px 10px;
  display: block;
  float: left;
  width: 160px;
}

#nav ul.level2 li:first-child {
  padding: 20px 10px 8px;
}

#nav ul.level2 a {
  white-space: nowrap;
}

#nav li:hover ul.level2 {
  top: 25px;
  left: -10px;
  z-index: 100;
  display: block;
}

#nav li:hover a {
  /* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */
  text-decoration: underline;
  padding: 10px;
}

#nav li:hover ul.level2 a {
  /* The persistent hover state does however create a global style for links even before they're hovered. Here we undo these effects. */
  text-decoration: none;
}

#nav li:hover ul.level2 li a:hover {
  /* Here we define the most explicit hover states--what happens when you hover each individual link. */
}


/* HEADER
----------------------------------------------------------------------------------------------------------------------------------- */

#header.primary,
#footer.primary {
  zoom: 1;
  border-bottom: 1px solid #ddd;
  background: #fff;
  padding: 18px 0;
  line-height: 1;
  position: relative;
}

#p_home #header.primary {
  background: rgba(255, 255, 255, 0.7);
}

#header.primary:before,
#header.primary:after,
#footer.primary:before,
#footer.primary:after {
  content: "";
  display: table;
}

#header.primary:after,
#footer.primary:after {
  clear: both;
}

#header.primary h1,
#header.primary ul,
#footer.primary h1,
#footer.primary ul {
  margin: 0;
  padding: 0;
}

#header.primary .logo a,
#footer.primary .logo a {
  background: url(../images/logo.png) left center no-repeat;
  width: 270px;
  height: 47px;
  display: block;
  text-indent: -9999px;
  background-size: 100%;
  float: left;
}

#header.primary #nav,
#footer.primary #nav {
  float: right;
  margin-top: 5px;
}

#header.primary #nav a,
#footer.primary #nav a {
  color: #82858a;
  text-decoration: none;
  display: inline-block;
  padding: 0 12px 11px;
}

#header.primary #nav a.selected {
  color: #000;
}

#header.primary #nav a:hover,
#footer.primary #nav a:hover {
  color: #3c3f3f;
}

#header.primary #nav li:last-child a,
#footer.primary #nav li:last-child a {
  padding-right: 0;
}

#header.primary #nav li.signup a {
  background: #5D96EE;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  transition: all 250ms ease;
  color: #fff;
  font-weight: 600;
  padding: 10px 22px;
  margin-left: 10px;
}

#header.primary #nav li.signup a:hover,
#footer.primary #nav li.signup a:hover {
  background: #478CFE;
}

#header.primary #nav li.signup a:active,
#footer.primary #nav li.signup a:active {
  -webkit-box-shadow: inset 0 5px 20px rgba(0, 0, 0, 0.25), 0 1px 0 #fff;
  -moz-box-shadow: inset 0 5px 20px rgba(0, 0, 0, 0.25), 0 1px 0 #fff;
  -ms-box-shadow: inset 0 5px 20px rgba(0, 0, 0, 0.25), 0 1px 0 #fff;
  box-shadow: inset 0 5px 20px rgba(0, 0, 0, 0.25), 0 1px 0 #fff;
}

#header.primary #nav li.loginbutton a {
  background: #1ecd6e;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  transition: all 250ms ease;
  color: #fff;
  font-weight: 600;
  padding: 10px 22px;
  margin-left: 10px;
}

#header.primary #nav li.loginbutton a:hover {
  background: #1aaf5d;
}


/* New Button Color style.
------------------------------------------------------------------------------------------- */

.buttoncolor {
  background: #5D96EE;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  transition: all 250ms ease;
  color: #fff;
  font-weight: 700;
}

.buttoncolor:hover {
  background: #478CFE;
  color: #fff;
}

.buttoncolor:active {
  -webkit-box-shadow: inset 0 5px 20px rgba(0, 0, 0, 0.25), 0 1px 0 #fff;
  -moz-box-shadow: inset 0 5px 20px rgba(0, 0, 0, 0.25), 0 1px 0 #fff;
  -ms-box-shadow: inset 0 5px 20px rgba(0, 0, 0, 0.25), 0 1px 0 #fff;
  box-shadow: inset 0 5px 20px rgba(0, 0, 0, 0.25), 0 1px 0 #fff;
}

.bordercolor {
  background: none;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  transition: all 250ms ease;
  border: 1px solid #5D96EE;
  color: #5D96EE;
  font-weight: 700;
}

.bordercolor:hover {
  background: #478CFE;
  color: #fff;
  border-color: #478CFE;
}

.getstart,
.homesignup {
  position: relative;
}


/* FOOTER
----------------------------------------------------------------------------------------------------------------------------------- */

#footer.primary {
  font-size: 0.9em;
  color: #82858a;
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
  padding: 30px 0;
}

#footer.primary a {
  text-decoration: none;
}

#footer.primary p {
  float: left;
  overflow: hidden;
}

#footer.primary .rackspace {
  margin-left: 20px;
  position: relative;
  top: 8px;
}

#footer.primary #nav {
  float: right;
  margin-top: 0;
}

#footer.primary #nav a {
  color: #5ebaba;
}

.ft_contactv2 .schebutton {
  float: left;
  margin-right: 30px;
}

.ft_contactv2 {
  margin: 0 0 20px 0;
  padding-top: 20px;
  border-top: 1px solid #DEDEDE;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 1);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 1);
  -ms-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 1);
}

.ft_contactv2 ul {
  margin: 0 0 20px 0;
}

.ft_contact {
  display: block;
  width: 100%;
  margin: 0 auto 45px;
  text-align: center;
}

.ft_contact ul {
  margin-bottom: 15px;
}

.ft_contact ul li,
.ft_contactv2 ul li {
  display: inline;
  margin-right: 40px;
}

.ft_contact ul li img,
.ft_contactv2 ul li img {
  margin-right: 5px;
}


/* HOME
----------------------------------------------------------------------------------------------------------------------------------- */

.school_ref {
  text-align: center;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.15), 0 1px 0 #fff;
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.15), 0 1px 0 #fff;
  -ms-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.15), 0 1px 0 #fff;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.15), 0 1px 0 #fff;
  -webkit-background-clip: padding;
  -webkit-background-clip: padding-box;
  -webkit-border-radius: 4px;
  -moz-background-clip: padding;
  -moz-background-clip: padding-box;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background: #EEE;
  padding: 20px 0;
  margin-bottom: 40px;
}

.school_ref p {
  font-size: 1.1em;
  font-weight: bold;
  font-weight: 500;
  letter-spacing: 0.8px;
  color: #82858A;
  margin: 0 0 15px 0;
  text-shadow: 0 1px rgba(255, 255, 255, 0.8);
}

.featured {
  position: absolute;
  bottom: -1px;
  left: 38px;
  width: 877px;
  height: 449px;
  display: block;
}

.featured .browser img {
  width: 100%;
  z-index: 1;
  position: absolute;
  display: block;
  top: 0;
}

#slider_wrapper {
  background: url(../images/home.png) no-repeat top left;
  display: block;
  height: 449px;
  width: 877px;
  bottom: 0;
  z-index: 10;
}

.feature-slider {
  -webkit-box-shadow: 0 1px 0 #fff;
  -moz-box-shadow: 0 1px 0 #fff;
  -ms-box-shadow: 0 1px 0 #fff;
  box-shadow: 0 1px 0 #fff;
  background: url(../images/mac-bg8.jpg) center center repeat #333;
  -moz-background-size: cover;
  background-size: cover;
  overflow: hidden;
}

.feature-slider .wrap {
  position: relative;
  height: 480px;
  width: 965px;
}

.content h1 {
  font-size: 2.8em;
  margin: 20px 0;
  font-weight: 100;
  text-align: center;
  text-shadow: 0 1px #fff;
}

.feature_wrap {
  width: 100%;
  margin-bottom: 40px;
}

.feature_wrap h2 {
  font-weight: bold;
  font-size: 1.1em;
}

.feature_wrap ul {
  width: 100%;
}

.feature_wrap li {}

.feature_wrap li a {
  color: #333;
  width: 20%;
  min-height: 175px;
  display: block;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  padding: 20px;
  -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15), 0 1px 0 #fff;
  -moz-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15), 0 1px 0 #fff;
  -ms-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15), 0 1px 0 #fff;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15), 0 1px 0 #fff;
  margin-right: 2.2%;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  float: left;
}

.feature_wrap li a:hover {
  -webkit-box-shadow: 0 2px 2px rgba(91, 125, 189, 0.6);
  -moz-box-shadow: 0 2px 2px rgba(91, 125, 189, 0.6);
  -ms-box-shadow: 0 2px 2px rgba(91, 125, 189, 0.6);
  box-shadow: 0 2px 2px rgba(91, 125, 189, 0.6);
}

.feature_wrap li:last-child a {
  margin-right: 0;
}

.feature_wrap li p {
  margin: 5px 0 10px 0;
  line-height: 1.4em;
  font-size: 0.9em;
}

.fea1 {
  background: #fff url(../images/features.gif) no-repeat center 95px;
}

.fea2 {
  background: #fff url(../images/features-mypnc2.png) no-repeat top left;
}

.fea3 {
  background: #fff url(../images/features-3.png) no-repeat center 95px;
}

.fea4 {
  background: #fff url(../images/features-4.png) no-repeat center 100px;
}

.feature_sign {
  margin-bottom: 50px;
}

.button_wrap {
  margin: 0 23.3%;
  position: relative;
}

.sbutton {
  width: 310px;
  float: left;
  margin: 0 20px 0 0;
}

.sbutton span {
  font-size: 0.9em;
  font-weight: normal;
}

a.signup_button {
  text-decoration: none;
  text-align: center;
  padding: 12px 15px;
  font-size: 1.2em;
  display: block;
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
  -o-border-radius: 100px;
  -ms-border-radius: 100px;
  -khtml-border-radius: 100px;
  border-radius: 100px;
  font-weight: bold;
  background: #5D96EE;
  color: #fff;
  -webkit-transition: all 50ms ease;
  -moz-transition: all 50ms ease;
  transition: all 50ms ease;
}

a.signup_button:hover {
  background: #478CFE;
}

a.signup_button:active {
  transform: scale(0.95);
}

a.schedule_button {
  text-decoration: none;
  text-align: center;
  padding: 12px 15px;
  font-size: 1.28em;
  display: block;
  color: #fff;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  -khtml-border-radius: 5px;
  border-radius: 5px;
  background: #5D96EE;
}

a.schedule_button:hover {
  background: #478CFE;
  color: #fff;
}

a.schedule_button:active {
  box-shadow: inset 0px 5px 5px rgba(0, 0, 0, 0.2);
}

#demobutton {
  width: 230px;
  display: block;
  float: left;
  margin-right: 10px;
  height: 60px;
}

a.demobutton {
  text-decoration: none;
  text-align: center;
  padding: 0 15px;
  font-size: 1.28em;
  line-height: 1.4em;
  display: block;
  border: 1px solid #666666;
  color: #fcfcfc;
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
  -o-border-radius: 100px;
  -ms-border-radius: 100px;
  -khtml-border-radius: 100px;
  border-radius: 100px;
  font-weight: bold;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.35);
  background: rgb(153, 157, 168);
  /* Old browsers */
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzk5OWRhOCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM1OTZhNzIiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, rgba(153, 157, 168, 1) 0%, rgba(89, 106, 114, 1) 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(153, 157, 168, 1)), color-stop(100%, rgba(89, 106, 114, 1)));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, rgba(153, 157, 168, 1) 0%, rgba(89, 106, 114, 1) 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, rgba(153, 157, 168, 1) 0%, rgba(89, 106, 114, 1) 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, rgba(153, 157, 168, 1) 0%, rgba(89, 106, 114, 1) 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, rgba(153, 157, 168, 1) 0%, rgba(89, 106, 114, 1) 100%);
  /* W3C */
  filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#999da8', endColorstr='#596a72', GradientType=0);
  /* IE6-8 */
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15), inset 1px 1px 0 rgba(255, 255, 255, 0.4);
  -moz-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15), inset 2px 2px 2px rgba(255, 255, 255, 0.4);
  -ms-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15), inset 2px 2px 2px rgba(255, 255, 255, 0.4);
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15), inset 1px 1px 0 rgba(255, 255, 255, 0.4);
}

a.demobutton:hover {
  background: rgb(136, 139, 147);
  /* Old browsers */
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzg4OGI5MyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM0ODU1NWIiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, rgba(136, 139, 147, 1) 0%, rgba(72, 85, 91, 1) 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(136, 139, 147, 1)), color-stop(100%, rgba(72, 85, 91, 1)));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, rgba(136, 139, 147, 1) 0%, rgba(72, 85, 91, 1) 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, rgba(136, 139, 147, 1) 0%, rgba(72, 85, 91, 1) 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, rgba(136, 139, 147, 1) 0%, rgba(72, 85, 91, 1) 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, rgba(136, 139, 147, 1) 0%, rgba(72, 85, 91, 1) 100%);
  /* W3C */
  filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#888b93', endColorstr='#48555b', GradientType=0);
  /* IE6-8 */
}

a.demobutton:active {
  box-shadow: inset 0px 5px 5px rgba(0, 0, 0, 0.2);
}

a.demobutton p {
  padding: 10px 30px;
  height: 50px;
  width: 140px;
  line-height: 1.4em;
}

.schebutton span {
  font-size: 0.9em;
  font-weight: normal;
}

.programme {
  margin: 0 0 40px 0;
}

.programme ul {
  display: block;
  text-align: center;
}

.programme ul li {
  display: inline-block;
  margin-right: 5%;
}

.programme ul li:hover {
  color: #478CFE;
}

.programme h2 {
  font-size: 1.78em;
  cursor: pointer;
  font-weight: 100;
}

.feature_sign {
  position: relative;
}

.button_border_l,
.button_border_r {
  display: block;
  width: 270px;
  height: 1px;
  position: absolute;
  top: 35px;
  border-bottom: 1px solid #dedede;
  -webkit-box-shadow: inset 0 0 0 rgba(255, 255, 255, 0.5), 0 1px 0 #fff;
  -moz-box-shadow: inset 0 0 0 rgba(255, 255, 255, 0.5), 0 1px 0 #fff;
  -ms-box-shadow: inset 0 0 0 rgba(255, 255, 255, 0.5), 0 1px 0 #fff;
  box-shadow: inset 0 0 0 rgba(255, 255, 255, 0.5), 0 1px 0 #fff;
}

.button_border_r {
  right: 0;
}

.home_signup {
  background-color: #F1F3F8;
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, white), color-stop(100%, #E6EAF0));
  background-image: -webkit-linear-gradient(top, white 0%, #E6EAF0 100%);
  background-image: -moz-linear-gradient(top, white 0%, #E6EAF0 100%);
  background-image: -o-linear-gradient(top, white 0%, #E6EAF0 100%);
  background-image: -ms-linear-gradient(top, white 0%, #E6EAF0 100%);
  background-image: linear-gradient(top, white 0%, #E6EAF0 100%);
  padding: 20px 0 16px;
  position: relative;
  border: 1px solid #C6C8CC;
  border-bottom: 1px solid #aaa;
  width: 99.8%;
  margin: 0 auto;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  -ms-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  margin-bottom: 80px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  -khtml-border-radius: 5px;
  border-radius: 5px;
}

.trial {
  position: absolute;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.9em;
  display: block;
  background: #FEF2AD;
  border: 1px solid #A69C65;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  -khtml-border-radius: 5px;
  border-radius: 5px;
  top: 65px;
  left: -30px;
  visibility: hidden;
  opacity: 0;
  color: #8F823A;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.6);
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #FEF5BE), color-stop(100%, #FEF0A2));
  background-image: -webkit-linear-gradient(top, #FEF5BE 0%, #FEF0A2 100%);
  background-image: -moz-linear-gradient(top, #FEF5BE 0%, #FEF0A2 100%);
  background-image: -o-linear-gradient(top, #FEF5BE 0%, #FEF0A2 100%);
  background-image: -ms-linear-gradient(top, #FEF5BE 0%, #FEF0A2 100%);
  background-image: linear-gradient(top, #FEF5BE 0%, #FEF0A2 100%);
  box-shadow: 0 0 10px #aaa;
  z-index: 1000;
}

.on {
  visibility: visible;
  opacity: 1;
}

.arrow-down {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 77px;
  left: 110px;
  background: transparent url(../images/arrow-down.png) no-repeat top left;
}

.arrow-up {
  position: absolute;
  width: 30px;
  height: 30px;
  top: -30px;
  left: 110px;
  background: transparent url(../images/arrow-up.png) no-repeat top left;
}

.arrow_down {
  position: relative;
  background: #88b7d5;
  border: 4px solid #c2e1f5;
}

.arrow_down:after,
.arrow_down:before {
  top: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.arrow_down:after {
  border-top-color: #88b7d5;
  border-width: 13px;
  left: 50%;
  margin-left: -13px;
}

.arrow_down:before {
  border-top-color: #c2e1f5;
  border-width: 19px;
  left: 50%;
  margin-left: -19px;
}

.ninety {
  font-size: 1em;
  font-weight: bold;
  color: #333;
  display: block;
  margin-bottom: -9px;
}

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

.signform2 {
  position: relative;
  display: block;
  width: 1100px;
  margin: 0 auto;
}

.signupbox h1 {
  margin: 0;
  padding: 0;
  line-height: 0.8em;
  text-align: left;
  font-size: 1.4em;
  color: #333;
  font-weight: bold;
}

.signupbox h2 {
  margin-bottom: 10px;
}

.already-home {
  display: block;
  font-size: 0.9em;
  color: #666;
  margin-top: 10px;
}

.signup_form input[type="text"],
.signup_form input[type="password"] {
  border: 1px solid #bbb;
  border-top: 1px solid #999;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  display: block;
  font-size: 1.1em;
  margin: 0 15px 10px 0;
  padding: 5px;
  width: 200px;
  height: 30px;
  background: #FCFCFC;
  -moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2) inset, 0px 1px 0px #fff;
  -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2) inset, 0px 1px 0px white;
  -o-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2) inset, 0px 1px 0px #fff;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2) inset, 0px 1px 0px white;
}

.signup_form input[type="submit"],
#demo li input[type="submit"] {
  padding: 10px 22px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  color: #fff;
  border: 1px solid #81BB52;
  font-size: 1.1em;
  text-shadow: 0 1px 1px #659C37;
  background: #7EC946;
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15), inset 1px 1px 0 rgba(255, 255, 255, 0.4);
  -moz-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15), inset 2px 2px 2px rgba(255, 255, 255, 0.4);
  -ms-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15), inset 2px 2px 2px rgba(255, 255, 255, 0.4);
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15), inset 1px 1px 0 rgba(255, 255, 255, 0.4);
}

.signform input[type="text"],
.signform input[type="password"] {
  float: left;
}

.signform input[type="submit"] {
  float: left;
  font-size: 1.2em;
  width: 180px;
  height: 42px;
  box-shadow: inset 0 20px 0 rgba(255, 255, 255, 0.20), inset 1px 1px 0 rgba(255, 255, 255, 0.4), 0 1px 0 #fff;
  font-weight: bold;
  text-shadow: 0 1px 2px #357C37;
}

.signform input[type="submit"]:hover,
#demo li input[type="submit"]:hover {
  background: #9BE262;
  border: 1px solid #71aB52;
}

.signform input[type="submit"]:active {
  box-shadow: inset 0 3px 4px rgba(0, 0, 0, 0.25);
}


/* Features
------------------------------------------------------------------------------------------- */

#programme .content h1 {
  text-align: left;
  font-size: 1.4em;
  font-weight: bold;
  padding-bottom: 15px;
  border-bottom: 1px solid #dedede;
  -webkit-box-shadow: inset 0 0 0 rgba(255, 255, 255, 0.5), 0 1px 0 #fff;
  -moz-box-shadow: inset 0 0 0 rgba(255, 255, 255, 0.5), 0 1px 0 #fff;
  -ms-box-shadow: inset 0 0 0 rgba(255, 255, 255, 0.5), 0 1px 0 #fff;
  box-shadow: inset 0 0 0 rgba(255, 255, 255, 0.5), 0 1px 0 #fff;
  margin: 0 0 10px 0;
  color: #34559A;
}

.content_split .left {
  float: left;
  width: 21.4%;
}

.content_split .right {
  position: relative;
  float: left;
  width: 100%;
  min-height: 280px;
  max-width: 915px;
  padding: 0 0 0 20px;
  margin-bottom: 20px;
}

#programme .content_split .right {
  background: #fff;
  padding: 30px;
  max-width: 870px;
  border: 1px solid #dedede;
  margin-left: 9px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
}

#programme .download_samplereport {
  padding: 13px 20px 11px 45px;
  background: #f5f5f5 url(../images/page_white_acrobat.png) no-repeat 10px 5px;
  font-size: 1em;
  font-weight: bold;
  margin-top: 5px;
  margin-bottom: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  display: inline-block;
  color: #555;
}

.details,
.others_programme,
.others_menu,
.who_use {
  background: #fff;
  display: block;
  border: 1px solid #dedede;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  margin: 0 20px 20px 0;
  -webkit-box-shadow: inset 0 0 0 rgba(255, 255, 255, 0.5), 0 1px 0 #fff;
  -moz-box-shadow: inset 0 0 0 rgba(255, 255, 255, 0.5), 0 1px 0 #fff;
  -ms-box-shadow: inset 0 0 0 rgba(255, 255, 255, 0.5), 0 1px 0 #fff;
  box-shadow: inset 0 0 0 rgba(255, 255, 255, 0.5), 0 1px 0 #fff;
}

.details {
  padding: 5px 20px;
}

.who_use {
  background: #000;
  display: block;
  height: 65px;
}

.content_split {
  margin-top: 30px;
}

.content_split .details ul li {
  font-size: 1em;
  line-height: 2em;
}

.content_split ul li > a.current {
  color: #3989F6;
  background: #f5f5f5;
}

.others_programme,
.others_menu,
.who_use {
  width: 242px;
}

.others_programme a,
.others_menu a,
.who_use a {
  padding: 10px 20px;
  display: block;
  border-bottom: 1px solid #dedede;
  color: #545454;
}

.other_programme ul li:last-child a.active {
  border-bottom: 1px solid #dedede;
}

.others_programme img,
.others_menu img,
.who_use img {
  float: left;
  margin-right: 15px;
}

.others_programme h3 {
  padding: 10px 0 0 0;
  font-weight: normal;
  font-size: 1.05em;
}

.others_programme a {
  height: 40px;
}

.others_programme img {
  width: 40px;
}

.others_menu img {
  margin-right: 10px;
}

.lb_level2 {
  border-bottom: 1px solid #dedede;
}

.lb_level2 ul li a {
  padding: 7px 0 5px 25px;
  font-size: 1em;
  height: auto;
  border-bottom: none;
  color: #333;
}

.lb_level2 ul li a:hover {
  background: #f3f3f3;
}

.others_programme ul li:last-child a,
.others_menu ul li:last-child a,
.who_use a,
.lb_last {
  border-bottom: none;
}

.others_programme ul.lb_level1 li:last-child .lb_level2 {
  border-bottom: none;
}

.others_programme .lb_level2 ul li:last-child a.current {
  border-radius: 0 0 5px 5px;
}

.others_programme ul li a.active {
  border-bottom: 1px solid #dedede;
}

.others_programme .tr5 {
  font-size: 1.3em;
}

.others_programme .tr4.current {
  border-radius: 5px 5px 0 0;
}

.others_programme .tr9 h3 {
  line-height: 1.3em;
}

.others_programme.section3 h3 {
  font-weight: normal;
}

.others_programme.section3 img {
  margin: 3px 10px 0 0;
  width: 35px;
}

.who_use img {
  margin-right: 15px;
  margin-top: -5px;
}

.who_use h3 {
  color: #fff;
  padding: 3px 0 0 0;
  font-size: 1em;
  font-weight: bold;
  line-height: 1.4em;
}

.content_split .right h2,
.about h2 {
  width: 91%;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

.content_split .right h3 {
  font-size: 1.4em;
  font-weight: normal;
  margin-bottom: 10px;
}

ul.greenChecklist li {
  list-style: none !important;
  background: url(../images/ios/checkgreen.png) no-repeat top left;
  padding-left: 25px;
  margin: 5px 0 8px 0 !important;
}

ul.summaryOverview {
  margin-bottom: 30px;
}

ul.summaryOverview li {
  list-style: none !important;
  margin: 10px 0 15px 0 !important;
  display: inline-block;
  float: left;
  width: 50%;
}

ul.summaryOverview li p {
  margin-top: -35px;
  margin-left: 55px;
}

ul.summaryOverview li img {
  width: 40px;
  margin-right: 10px;
}

ul.sumAttendance li img {
  float: left;
  height: 100%;
}

ul.sumAttendance {
  margin-bottom: 10px;
}

ul.sumAttendance li p {
  margin-top: 10px;
  margin-left: 55px;
  font-weight: bold;
  font-size: 1.1em;
}

ul.sumAttendance li p.attendanceText {
  font-size: 1em;
  padding-right: 30px;
  margin-top: -10px;
  font-weight: normal;
}

#programme a.twitter {
  display: block;
  text-indent: -9999em;
  width: 175px;
  height: 26px;
  background: url(../images/twitter.png) no-repeat top left;
  background-size: 100%;
  margin-bottom: 10px;
}

#programme ul.tweetSa li {
  list-style: none;
  color: #999;
  padding: 10px 20px;
  font-style: italic;
  font-weight: normal;
}

#programme ul.tweetSa li:before {
  color: #00B6EC;
  content: open-quote;
  font-style: italic;
  font-size: 2em;
  line-height: 0.1em;
  margin-right: 0.3em;
  vertical-align: -0.2em;
}

#programme ul.tweetSa li:after {
  color: #00B6EC;
  content: close-quote;
  font-style: italic;
  font-size: 2em;
  line-height: 0.1em;
  margin-left: 0.25em;
  vertical-align: -0.2em;
}

#steps ul li {
  list-style: disc outside;
  margin: 0 0 0 16px;
}

#steps img {
  max-width: 640px;
  width: 100%;
}

#steps span.nextprevnav {
  position: absolute;
  top: 30px;
  right: 30px;
}

#steps span.nextprevnavbottom {
  position: absolute;
  bottom: 30px;
  right: 30px;
}

#steps span .next,
#steps span .prev,
#steps span .prev_last,
#steps span .next_last {
  float: left;
  display: block;
  width: 30px;
  height: 20px;
  border: 1px solid #ccc;
  text-indent: -99999px;
  padding: 2px;
  border-radius: 0 5px 5px 0;
  -webkit-border-radius: 0 5px 5px 0;
  -moz-border-radius: 0 5px 5px 0;
  -ms-border-radius: 0 5px 5px 0;
  -webkit-box-shadow: inset 0 0 0 rgba(255, 255, 255, 0.5), 0 1px 0 #fff;
  -moz-box-shadow: inset 0 0 0 rgba(255, 255, 255, 0.5), 0 1px 0 #fff;
  -ms-box-shadow: inset 0 0 0 rgba(255, 255, 255, 0.5), 0 1px 0 #fff;
  box-shadow: inset 0 0 0 rgba(255, 255, 255, 0.5), 0 1px 0 #fff;
}

#steps span .next,
#steps span .next_last {
  background: #fcfcfc url(../images/next.png) no-repeat 13px 4px;
  margin-left: -1px;
}

#steps span .next_last {
  background: #fcfcfc url(../images/next_last.png) no-repeat 13px 4px
}

#steps span .next:hover {
  background: #f4f4f4 url(../images/next.png) no-repeat 13px 4px;
}

#steps span .prev,
#steps span .prev_last {
  border-radius: 5px 0 0 5px;
  -webkit-border-radius: 5px 0 0 5px;
  -moz-border-radius: 5px 0 0 5px;
  -ms-border-radius: 5px 0 0 5px;
  background: #fcfcfc url(../images/prev.png) no-repeat 13px 4px;
}

#steps span .prev_last {
  background: #fcfcfc url(../images/prev_last.png) no-repeat 13px 4px
}

#steps span .prev:hover {
  background: #f4f4f4 url(../images/prev.png) no-repeat 13px 4px;
}

#steps span.demovideo {
  position: absolute;
  top: 3px;
  right: 85px;
}

#steps span.demovideo a {
  color: white;
  font-size: 0.85em;
  padding: 6px 15px;
  border: 1px solid #666;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -khtml-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  background: rgb(153, 157, 168);
  /* Old browsers */
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzk5OWRhOCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM1OTZhNzIiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, rgba(153, 157, 168, 1) 0%, rgba(89, 106, 114, 1) 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(153, 157, 168, 1)), color-stop(100%, rgba(89, 106, 114, 1)));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, rgba(153, 157, 168, 1) 0%, rgba(89, 106, 114, 1) 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, rgba(153, 157, 168, 1) 0%, rgba(89, 106, 114, 1) 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, rgba(153, 157, 168, 1) 0%, rgba(89, 106, 114, 1) 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, rgba(153, 157, 168, 1) 0%, rgba(89, 106, 114, 1) 100%);
  /* W3C */
  filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#999da8', endColorstr='#596a72', GradientType=0);
  /* IE6-8 */
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
}

#steps span.demovideo a:hover {
  background: rgb(175, 179, 191);
  /* Old browsers */
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2FmYjNiZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM3MDg0OGUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, rgba(175, 179, 191, 1) 0%, rgba(112, 132, 142, 1) 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(175, 179, 191, 1)), color-stop(100%, rgba(112, 132, 142, 1)));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, rgba(175, 179, 191, 1) 0%, rgba(112, 132, 142, 1) 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, rgba(175, 179, 191, 1) 0%, rgba(112, 132, 142, 1) 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, rgba(175, 179, 191, 1) 0%, rgba(112, 132, 142, 1) 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, rgba(175, 179, 191, 1) 0%, rgba(112, 132, 142, 1) 100%);
  /* W3C */
  filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#afb3bf', endColorstr='#70848e', GradientType=0);
  /* IE6-8 */
  border: 1px solid #999;
}

#steps span.demovideo a:active {
  background: rgb(89, 106, 114);
  /* Old browsers */
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzU5NmE3MiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM5OTlkYTgiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, rgba(89, 106, 114, 1) 0%, rgba(153, 157, 168, 1) 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(89, 106, 114, 1)), color-stop(100%, rgba(153, 157, 168, 1)));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, rgba(89, 106, 114, 1) 0%, rgba(153, 157, 168, 1) 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, rgba(89, 106, 114, 1) 0%, rgba(153, 157, 168, 1) 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, rgba(89, 106, 114, 1) 0%, rgba(153, 157, 168, 1) 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, rgba(89, 106, 114, 1) 0%, rgba(153, 157, 168, 1) 100%);
  /* W3C */
  filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#596a72', endColorstr='#999da8', GradientType=0);
  /* IE6-8 */
  -webkit-box-shadow: inset 2px 1px 2px rgba(0, 0, 0, 0.15);
  box-shadow: inset 2px 1px 2px rgba(0, 0, 0, 0.15);
}


/* FAQ
------------------------------------------------------------------------------------------- */

#style2 .content h1,
#studycase .content h1 {
  text-align: center;
  font-size: 2.8em;
  font-weight: 100;
  margin-bottom: 15px;
  color: #34559A;
}

#style2 .content span.intro_faq,
p.intlast {
  font-size: 1.3em;
  display: block;
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid #dedede;
  -webkit-box-shadow: inset 0 0 0 rgba(255, 255, 255, 0.5), 0 1px 0 #fff;
  -moz-box-shadow: inset 0 0 0 rgba(255, 255, 255, 0.5), 0 1px 0 #fff;
  -ms-box-shadow: inset 0 0 0 rgba(255, 255, 255, 0.5), 0 1px 0 #fff;
  box-shadow: inset 0 0 0 rgba(255, 255, 255, 0.5), 0 1px 0 #fff;
  text-align: center;
}

#style2 .right .q {
  font-weight: bold;
  font-size: 1.1em;
  margin-bottom: 10px;
}

#style2 .right p {
  line-height: 1.6em;
}

.nonactive {
  display: none;
}


/* About
------------------------------------------------------------------------------------------- */

p.intro {
  line-height: 1.6em;
  font-size: 1.14em;
  text-align: center;
}

.about {
  margin-bottom: 20px;
}

.about .right p {
  margin-bottom: 15px;
}

.about .intro_about {
  margin-bottom: 10px;
}

.about h2 {
  margin-bottom: 20px;
}

.about .details {
  padding: 20px 20px;
}

.about .left {
  display: block;
  width: 45%;
  min-width: 371px;
  float: left;
}

.about .right {
  padding: 20px 0 0 20px;
  display: block;
  float: left;
  width: 53%;
}


/* Terms
------------------------------------------------------------------------------------------- */


/*#terms_content {
  font-size: 1em;
  line-height: 1.2em;
}*/

#terms_content .terms_content_item h3 {
  font-size: 1.57em;
}

#terms_content .terms_content_item h2 {
  font-size: 1.42em;
  margin: 35px 0 25px 0;
}

#terms_content .terms_content_item p {
  margin-bottom: 15px;
}

#terms_content .terms_content_item ol li,
#terms_content .terms_content_item ul li {
  line-height: 1.6em;
  margin-bottom: 5px;
  list-style: square outside;
  margin-left: 20px;
}

#terms_content h4 {
  margin-bottom: 10px;
  font-weight: bold;
}

#terms_content .numbering {
  margin-right: 10px;
  font-weight: bold;
}

#terms_content .text {
  font-weight: normal;
  line-height: 1.6em;
}

#terms_content .level2 {
  margin-left: 35px;
}

#terms_content .level3 {
  margin-left: 60px;
}

#terms_trigger {
  padding: 10px 0;
}

#terms_trigger li a.current {
  background: none;
}


/* Schedule a Demo
------------------------------------------------------------------------------------------- */

#demo h3,
#setup h2,
.details h3 {
  font-size: 1.14em;
  padding: 10px 0 10px 15px;
  font-weight: bold;
  border-bottom: 1px solid #DEDEDE;
  border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  -ms-border-radius: 5px 5px 0 0;
  margin-bottom: 20px;
}

#demo .details,
#signup .details {
  padding: 0;
}

#demo .details p,
#signup .details p {
  padding: 0 20px;
}

#demo .q,
#signup .q {
  font-weight: bold;
}

#demo .right ul li {
  line-height: 1.9em;
  margin-bottom: 10px;
  list-style: none;
  margin-left: 0;
}

#demo .right ul li label {
  width: 120px;
  float: left;
}

#demo input.text,
#demo textarea {
  width: 250px;
  display: block;
  border: 1px solid #ccc;
  background: #fff;
  height: 25px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
}

#demo textarea {
  width: 350px;
  height: 100px;
  margin-bottom: 20px;
}

#demo li input[type="submit"],
#login input[type="submit"],
#signup_box input[type="submit"] {
  padding: 10px 20px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  color: #fff;
  border: 1px solid #81BB52;
  font-size: 1.14em;
  text-shadow: 0 1px 1px #659C37;
  background: #7EC946;
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15), inset 1px 1px 0 rgba(255, 255, 255, 0.4);
  -moz-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15), inset 2px 2px 2px rgba(255, 255, 255, 0.4);
  -ms-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15), inset 2px 2px 2px rgba(255, 255, 255, 0.4);
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15), inset 1px 1px 0 rgba(255, 255, 255, 0.4);
}

#demo li input[type="submit"]:hover,
#login input[type="submit"]:hover,
#signup_box input[type="submit"]:hover {
  background: #9BE262;
  transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
}

#demo li input[type="submit"]:active {
  -webkit-box-shadow: inset 1px 2px 2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 1px 2px 2px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: inset 1px 2px 2px rgba(0, 0, 0, 0.2);
  box-shadow: inset 1px 2px 2px rgba(0, 0, 0, 0.2);
}

#demo input[type="checkbox"] {
  margin-left: 10px;
}

#demo input[type="checkbox"].first {
  margin-left: 0;
}


/* Setup & Integration
------------------------------------------------------------------------------------------- */

#setup .right {
  padding-top: 0;
}

#setup .right img {
  background: #fff;
  padding: 20px;
  border: 1px solid #dedede;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  margin-bottom: 20px;
}

#setup table {
  width: 100%;
}

#setup th,
#setup td {
  padding: 10px 30px;
  text-align: left;
  border: 1px solid #dedede;
  background: #fff;
}

#setup th {
  font-weight: bold;
  font-size: 1.1em;
  background: #f6f6f6;
}

#setup table .blue {
  color: #5B7DBD;
}


/* Training & Support
------------------------------------------------------------------------------------------- */

#training .right h2 {
  font-size: 1.07em;
  margin: 20px 0 5px 0;
}

#training .right .intro {
  font-size: 1.07em;
}

#training .right img {
  float: left;
  clear: left;
  margin: 22px 0 0 0;
}

#training .right .features_column {
  display: block;
  width: 90%;
  margin: 0 0 0 20px;
  float: left;
}

#training p.intro_left {
  line-height: 1.6em;
  text-align: left;
}


/* Security & Backup
------------------------------------------------------------------------------------------- */

#security .right {
  line-height: 1.4em;
}

#security .right h2 {
  font-size: 1.07em;
  margin: 25px 0 5px 0;
}

#security .right .intro {
  font-size: 1.07em;
}

#security .right img {
  float: left;
  clear: both;
  margin: 25px 0 0 0;
}

#security .right ul li {
  list-style: disc inside;
}

#security .right .unique img {
  clear: both !important;
  border: 1px solid #dedede;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  margin: 10px 100% 10px 0;
}

#security .right .features_column {
  display: block;
  width: 80%;
  margin: 0 0 25px 20px;
  float: left;
}

#security .right .features_column p {
  margin-bottom: 15px;
}

#security .securityserver {
  display: block;
  clear: both;
}

#security .securityserver h2 {
  margin-bottom: 0;
  font-size: 1.42em;
}

#security .securityserver img {
  border-radius: 5px;
  border: 1px solid #ccc;
  margin-bottom: 20px;
}

#security .stack-image {
  width: 500px;
}

#security .stack-image a {
  display: block;
  width: 500px;
  height: 41px;
  background: url(../images/systemstack_bg.png) no-repeat center top;
  text-align: center;
  color: #333;
  font-size: 1em;
  background-size: 500px;
  padding-top: 17px;
  position: relative;
}

#security .stack-image a span {
  display: inline-block;
  position: absolute;
  width: 30px;
  height: 30px;
  margin-left: -35px;
  margin-top: -4px;
}

#security .stack-image a span.ror {
  background: url(../images/systems/ror.png) no-repeat left top;
  background-size: 30px;
}

#security .stack-image a span.ree {
  background: url(../images/systems/ree.png) no-repeat left top;
  background-size: 30px;
}

#security .stack-image a span.phusion {
  background: url(../images/systems/phusion.png) no-repeat left top;
  background-size: 30px;
}

#security .stack-image a span.apache {
  background: url(../images/systems/apache.png) no-repeat left top;
  background-size: 30px;
}

#security .stack-image:hover a {
  opacity: 0.5;
}

#security .stack-image:hover a:hover {
  color: #3989F6;
  opacity: 1;
}

#security .security-content ol li {
  list-style-type: decimal;
  margin-left: 2em;
  padding-left: 0.8em;
}

#security .security-content ul li {
  list-style: disc outside;
  margin-left: 2em;
  padding-left: 0.8em;
}

#security-policy .security-content {
  display: none;
}

#security-policy .opening-toggle {
  color: #5B7DBD;
  cursor: pointer;
}

#security-policy .opening-toggle .indicator {
  fill: currentcolor;
  transform: rotate(0deg);
}

#security-policy.open .opening-toggle .indicator {
  transform: rotate(-90deg);
}

#security-policy .opening-toggle span:hover {
  color: #3989F6;
}

#security-policy .opening-toggle span {
  margin-right: 10px;
}

#security-policy .opening-toggle span.more {
  display: inline-block;
}

#security-policy.open .opening-toggle span.more {
  display: none;
}

#security-policy .opening-toggle span.less {
  display: none;
}

#security-policy.open .opening-toggle span.less {
  display: inline-block;
}


/* Who Use ManageBac
------------------------------------------------------------------------------------------- */

#usemb_trigger li > a.current {
  color: #3989F6;
  background: none;
}

#usemb_content table.schools img {
  background: #fff;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15), 0 1px 0 #fff;
  -moz-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15), 0 1px 0 #fff;
  -ms-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15), 0 1px 0 #fff;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15), 0 1px 0 #fff;
  vertical-align: middle;
  margin-bottom: 20px;
}

#usemb_content .right {
  margin: 0;
}

#usemb_content table.schools {
  width: 100%;
}

#usemb_content table.schools td {
  vertical-align: bottom;
  padding: 0 20px 10px 0;
}


/* Login
------------------------------------------------------------------------------------------- */

#content_box {
  background: #fff;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  margin: 20px auto 40px;
  width: 800px;
  padding: 20px 0;
  border: 1px solid #ccc;
}

#form .hint {
  font-size: 1.2em;
  margin: 0 0 40px 0;
  text-align: center;
}

#form label {
  float: left;
  padding: 5px 0 5px 0;
}

#form abbr {
  color: red;
  margin: 0 20px 0 0;
}

#find_school_email {
  float: left;
  width: 513px;
  border: 1px solid #ccc;
  padding: 7px 10px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
}

#button {
  width: 150px;
  height: 40px;
  margin: 0 auto;
  display: block;
}

#button input {
  width: 150px;
  height: 40px;
  text-align: center;
}

.hintbox label {
  width: 140px !important;
  padding: 0 !important;
}

.hintbox input[type="text"] {
  width: 495px !important;
}

div.buttons {
  margin-top: 40px;
}


/* Support
------------------------------------------------------------------------------------------- */

#support .others_programme .selected {
  background-color: #fafafa;
  border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  -ms-border-radius: 5px 5px 0 0;
}

#support .others_programme ul li:last-child .selected {
  border-radius: 0 0 5px 5px;
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  -ms-border-radius: 0 0 5px 5px;
}

#support .content_split {
  margin: 0;
}

ul.domtabs {
  float: left;
  width: 100%;
  margin-bottom: -1px;
}

#support ul.domtabs li {
  list-style: none;
  float: left;
  margin: 0;
}

ul.domtabs a:link,
ul.domtabs a:visited,
ul.domtabs a:active,
ul.domtabs a:hover {
  width: 8em;
  padding: 10px 15px;
  display: block;
  background: #fff;
  color: #ccc;
  height: 3em;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px 5px 0 0;
  -mox-border-radius: 5px 5px 0 0;
  -ms-border-radius: 5px 5px 0 0;
  -o-border-radius: 5px 5px 0 0;
  border: 1px solid #dedede;
  margin-right: 2px;
  z-index: 2;
}

html>body ul.domtabs a:link,
html>body ul.domtabs a:visited,
html>body ul.domtabs a:active,
html>body ul.domtabs a:hover {
  height: auto;
}

ul.domtabs a:hover {
  background: #fafafa;
}

div.domtab div {
  width: 661px;
  background: #fff;
  border: 1px solid #dedede;
  z-index: 1;
  border-radius: 0 5px 5px 5px;
  -webkit-border-radius: 0 5px 5px 5px;
  -mox-border-radius: 0 5px 5px 5px;
  -ms-border-radius: 0 5px 5px 5px;
  -o-border-radius: 0 5px 5px 5px;
  padding: 20px;
  top: 39px;
}

#support div.domtab div.features_column {
  border: none;
  padding: 0;
  float: left;
  width: 48%;
  margin-right: 2%;
}

#support div.domtab div.features_column ul {
  margin-bottom: 30px;
}

#support div.domtab div.features_column ul:last-child {
  margin-bottom: 0;
}

#support div.domtab div.features_column ul li {
  line-height: 1.6em;
  font-size: 0.9em;
}

#support div.domtab div.features_column ul li a:hover {
  color: #80A5FC;
}

#support h2 {
  font-size: 1.07em;
  margin: 0 0 5px 0;
}

#support .nothing {
  padding: 0;
  margin: 0;
  background: none;
  border: none;
}

#support .right {
  padding: 0;
  width: 703px;
  margin-right: 13px;
}

#support ul.domtabs li.active a:link,
#support ul.domtabs li.active a:visited,
#support ul.domtabs li.active a:active,
#support ul.domtabs li.active a:hover {
  background: #fff;
  color: #333;
  border-bottom: 1px solid #fff;
}

#support ul.domtabs li a {
  color: #999;
}

#domtabprintview {
  float: right;
  padding-right: 1em;
  text-align: right;
}

#domtabprintview a:link,
#domtabprintview a:visited,
#domtabprintview a:active,
#domtabprintview a:hover {
  color: #333;
}

div.domtab div a:link,
div.domtab div a:visited,
div.domtab div a:active {
  color: #333;
}

div.domtab div h2 a,
div.domtab div h2 a:hover,
div.domtab div h2 a:active {
  display: inline;
  padding: 0;
  font-weight: normal;
  font-size: 1em;
}

#support .lb_last a {
  height: auto;
}

#support .rb {
  width: 226px;
  float: left;
}

#support .rb .details {
  margin: 0 0 10px 0;
  padding: 0;
}

#support .rb h2 {
  font-weight: bold;
  border-bottom: 1px solid #dedede;
  padding: 10px 20px;
  margin-bottom: 0;
}

#support .rb ul,
#support .rb .details p {
  padding: 5px 20px 10px;
}

#support .rb ul {
  background: #fcfcfc;
}

#support .rb .support-demobutton a {
  text-decoration: none;
  text-align: center;
  padding: 12px 15px;
  display: block;
  border: 1px solid #5D96EE;
  background: #5D96EE;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  -khtml-border-radius: 5px;
  border-radius: 5px;
  pointer:cursor;
  color: #fff;
  font-size: 1.14em;
}

#support .support-demobutton a:hover {
  background: #478CFE;
}

#support .support-demobutton a:active {
  -webkit-box-shadow: inset 0 5px 20px rgba(0, 0, 0, 0.25), 0 1px 0 #fff;
  -moz-box-shadow: inset 0 5px 20px rgba(0, 0, 0, 0.25), 0 1px 0 #fff;
  -ms-box-shadow: inset 0 5px 20px rgba(0, 0, 0, 0.25), 0 1px 0 #fff;
  box-shadow: inset 0 5px 20px rgba(0, 0, 0, 0.25), 0 1px 0 #fff;
}

#support .details,
#support .details li,
#support .lb_level1 li,
#support .lb_level2 li {
  font-size: 0.9em;
}

#support .rb .quickstartpdf .lb_level1 {
  margin: 0;
  padding: 0;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  -khtml-border-radius: 5px;
  border-radius: 5px;
}

#support .rb .quickstartpdf .lb_level1 a {
  padding: 2px 20px;
  display: block;
}

#support .rb .quickstartpdf .lb_level2 a {
  padding: 2px 0px;
  font-size: 0.9em;
}

#support .rb .quickstartpdf .lb_level1 a {
  background: url(../images/support_qsp.png) no-repeat 200px 8px;
  transition: none;
  -webkit-transition: none;
  -moz-transition: none;
}

#support .rb .quickstartpdf .lb_level1 a:hover {
  background: #f5f5f5 url(../images/support_qsp.png) no-repeat 200px 8px;
}

#support .rb .quickstartpdf .lb_level1 a.active {
  background: #f5f5f5 url(../images/support_qsp_clicked.png) no-repeat 195px 8px;
  border-top: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
}

#support .rb .quickstartpdf .lb_level2 a:hover {
  background: #fff;
  color: #6199EA;
}

#support .rb ul {
  background: #fff;
}


/* Lastchild styling */

#support .rb .quickstartpdf .lb_level1 li:last-child .lb_level2,
#support .rb .quickstartpdf .lb_level1 li:last-child .lb_level2 ul {
  border-radius: 0 0 5px 5px;
}

#support .rb .quickstartpdf .lb_level1 li:last-child .lb_level2 {
  border-bottom: none;
}

#support .rb .quickstartpdf .lb_level1 li:last-child a:hover {
  border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  -webkit-border-radius: 0 0 5px 5px;
  -o-border-radius: 0 0 5px 5px;
  -ms-border-radius: 0 0 5px 5px;
  -khtml-border-radius: 0 0 5px 5px;
}

#support .rb .quickstartpdf .lb_level1 li:last-child a.active:hover {
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  -khtml-border-radius: 0;
}

#support .rb .download-welkit {
  min-height: 68px;
  font-size: 0.9em font-weight: bold;
  text-align: left;
}

#support .rb .download-welkit a {
  padding: 10px 15px 18px 15px;
  cursor: pointer;
  display: block;
}

#support .rb .download-welkit a:hover {
  background: #fcfcfc;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  -khtml-border-radius: 5px;
  border-radius: 5px;
}

#support .rb .download-welkit span {
  display: block;
  margin-top: 8px;
}

#support .rb .download-welkit img {
  float: left;
  margin-right: 10px;
}

#support .rb .contact img {
  margin-right: 8px;
}

.simple_form.inverse {
  background: #efefef;
  border: 1px solid #dedede;
  padding: 10px 10px !important;
  margin-bottom: 10px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  -khtml-border-radius: 5px;
  border-radius: 5px;
}

.simple_form.inverse input[type="text"] {
  width: 90%;
  padding: 5px 15px;
  border: 1px solid #B8C5CC;
  margin-bottom: 4px;
  background: white;
  -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 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;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  -khtml-border-radius: 5px;
  border-radius: 5px;
}

table.wide {
  width: 100%;
}


/* SignUp
------------------------------------------------------------------------------------------- */

#signup_box {
  width: 960px;
  clear: both;
}

#signup .content_split .left {
  width: 20%;
  float: right;
}

#signup .details {
  margin: 0 0 20px 0;
}

#signup .content_split .right {
  width: 960px;
  padding: 0;
}

#signup input[type="text"],
.already,
.services_top,
.services_bottom,
.fields ul,
#signup_box input[type="submit"],
#signup_box table.fields tr {
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  -khtml-border-radius: 5px;
  border-radius: 5px;
}


/*.services_top {
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  -khtml-border-radius: 15px;
  border-radius: 15px;
}
*/

.services {
  display: block;
  position: relative;
  width: 290px;
  margin-right: 3%;
  float: left;
}

.services_top:hover {
  color: #333;
  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  transition: all 250ms ease;
}

.services_top,
.services_bottom {
  border: 1px solid #dedede;
}

.fields {
  height: 385px;
}

.services_top {
  background-color: #fff;
  padding: 15px;
  z-index: 1;
  height: 215px;
  position: relative;
  top: 0;
  left: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: background-color 2s;
  -moz-transition: background-color 2s;
  /* Firefox 4 */
  -webkit-transition: background-color 2s;
  /* Safari and Chrome */
  -o-transition: background-color 2s;
  /* Opera */
}

.services_top_selected {
  background-color: #faFfef;
}

.services_bottom {
  background: #F8F8F8;
  width: 82%;
  padding: 25px 20px 15px;
  position: absolute;
  top: 235px;
  left: 5px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8), 0 2px 4px rgba(0, 0, 0, 0.10);
  -moz-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8), 0 2px 4px rgba(0, 0, 0, 0.10);
  -ms-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8), 0 2px 4px rgba(0, 0, 0, 0.10);
  -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8), 0 2px 4px rgba(0, 0, 0, 0.10);
  -o-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8), 0 2px 4px rgba(0, 0, 0, 0.10);
}

.services_top img {
  width: 60px;
  float: left;
  margin-right: 15px;
}

.services_top h4 {
  position: relative;
  width: auto;
  margin: 10px 0 0 0;
  font-size: 1.42em;
  font-weight: bold;
}

.services_top .services_title {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #dedede;
}

.services_top .services_details ul li {
  font-size: 1em;
  line-height: 1.6em;
  list-style: none;
  margin: 0 0 0 15px;
  padding: 6px 0 6px 33px;
  height: 22px;
}

.d1 {
  background: url('../images/servicesicon3.png') no-repeat 0 5px;
}

.d2 {
  background: url('../images/servicesicon3.png') no-repeat 0 -29px;
}

.d3 {
  background: url('../images/servicesicon3.png') no-repeat 0 -63px;
}

.d4 {
  background: url('../images/servicesicon3.png') no-repeat 0 -97px;
}

.m1 {
  background: url('../images/servicesicon3.png') no-repeat 0 -134px;
}

.m2 {
  background: url('../images/servicesicon3.png') no-repeat 0 -167px;
}

.m3 {
  background: url('../images/servicesicon3.png') no-repeat 0 -202px;
}

.m4 {
  background: url('../images/servicesicon3.png') no-repeat 0 -237px;
}

.p1 {
  background: url('../images/servicesicon3.png') no-repeat 0 -272px;
}

.p2 {
  background: url('../images/servicesicon3.png') no-repeat 0 -306px;
}

.p3 {
  background: url('../images/servicesicon3.png') no-repeat 0 -339px;
}

.p4 {
  background: url('../images/servicesicon3.png') no-repeat 0 -375px;
}

.services_bottom input[type="text"],
.services_bottom span.nos,
.services input[type="checkbox"] {
  float: left;
}

.services_bottom input[type="text"] {
  width: 30px !important;
  margin-right: 8px;
}

.services_bottom span.nos {
  margin-top: 5px;
  display: block;
  font-size: 1em;
  width: 140px;
  padding-left: 22px;
  background: url('../images/student.png') no-repeat 0 0;
}

.price_detail li,
.dppriceunique {
  text-align: center;
  float: left;
  background: #fff;
  margin: 0 2px 0 0;
  padding: 5px 1px;
  width: 29.8%;
  border: 1px solid #eaeaea;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.dppriceunique {
  width: 98%;
}

.fields2 {
  height: 260px;
}

.fields2 .services_top {
  height: 105px;
  width: 230px;
}

.fields2 .services_top img {
  width: 55px;
}

.fields2 .services_top h4 {
  font-size: 1.14em;
}

.fields2 .services_bottom {
  top: 110px;
  width: 210px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8), 0 2px 4px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8), 0 2px 4px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8), 0 2px 4px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8), 0 2px 4px rgba(0, 0, 0, 0.05);
  -o-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8), 0 2px 4px rgba(0, 0, 0, 0.05);
}

.fields2 .services_top ul li {
  list-style: none;
  margin: 0;
  text-align: center;
}

.fields2 .services {
  margin: 0 1.5%;
}

.fields2 .services_top .services_details ul li {
  margin: 0;
  padding: 0;
}

.sbottom_top {
  margin-bottom: 15px;
}

.sbottom_top input[type="text"].integer {
  width: 35px !important;
}

.services_top input[type="checkbox"] {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 29px;
  height: 28px;
  -webkit-border-radius: 0.25em;
  -moz-border-radius: 0.25em;
  -webkit-appearance: none;
  background: #fff url(../images/checkbox2.png) no-repeat top left;
}

.services_top input[type="checkbox"]:checked {
  background: #fff url(../images/checkbox2.png) no-repeat 0 -28px;
  border: none;
}

.already {
  font-size: 0.9em;
  position: relative;
  padding: 10px 20px;
  background: #FFFEE1;
  margin-bottom: 20px;
  border: 1px solid #E7C054;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.already strong {
  font-size: 1em;
  margin-bottom: 10px;
  color: #c00;
  display: block;
}

.annual_fee {
  background: #fff;
  width: 240px;
  display: block;
  border: 1px solid #dedede;
  border-bottom: none;
  border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  -ms-border-radius: 5px 5px 0 0;
  -o-border-radius: 5px 5px 0 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.annual_bottom {
  background: url(../images/annual_bg3.png) no-repeat bottom left;
  height: 16px;
  width: 242px;
  display: block;
  margin-bottom: 20px;
}

.annual_fee span.title {
  font-weight: bold;
  font-size: 1.28em;
  padding: 15px 0 12px 20px;
  display: block;
  margin-bottom: 10px;
  border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  -ms-border-radius: 5px 5px 0 0;
  -o-border-radius: 5px 5px 0 0;
  border-bottom: 1px solid #dedede;
  /*border-bottom: 1px solid #aaa;
  background: -webkit-gradient(linear,  left top,  left bottom,  from(#A4B7F2),  to(#7d9de1));
  background: -webkit-linear-gradient(#A4B7F2,  #7d9de1);
  background: -moz-linear-gradient(center top,  #A4B7F2 0%,  #7d9de1 100%);
  background: -moz-gradient(center top,  #A4B7F2 0%,  #7d9de1 100%);
  background: -ms-linear-gradient(#A4B7F2 0%,  #7d9de1 100%);
  background: linear-gradient(#A4B7F2,  #7d9de1);
  text-shadow: rgba(0, 0, 0, 0.35) 0 -2px 1px;
  color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
  -webkit-box-shadow: 0 2px 4px rgba(0,0,0,0.08);
  -moz-box-shadow:0 2px 4px rgba(0,0,0,0.05);
  -ms-box-shadow:0 2px 4px rgba(0,0,0,0.05);*/
}

table.fee_detail {
  text-align: left;
  margin-bottom: 20px;
  width: 85%;
  margin: 0 20px;
}

table.fee_detail td {
  width: 50%;
  padding: 4px 0 4px 0;
}

table.fee_detail td:last-child {
  padding-left: 20px;
}

tr.fee td {
  color: #7EC946;
  padding-top: 10px;
  padding-bottom: 15px;
  font-weight: bold;
  font-size: 1.14em;
  border-top: 1px solid #dedede;
}

tr.fee_last td {
  padding-bottom: 15px !important;
}

.addonwrap {
  position: relative;
  text-align: center;
}

.addon {
  font-size: 1.14em !important;
  padding: 0 0 0 10px;
  margin: 10px 0 10px 0!important;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.18);
}

.addonline_l,
.addonline_r {
  position: absolute;
  display: block;
  top: 10px;
  width: 405px;
  border-bottom: 1px solid #dedede;
  -webkit-box-shadow: inset 0 0 0 rgba(255, 255, 255, 0.5), 0 1px 0 #fff;
  -moz-box-shadow: inset 0 0 0 rgba(255, 255, 255, 0.5), 0 1px 0 #fff;
  -ms-box-shadow: inset 0 0 0 rgba(255, 255, 255, 0.5), 0 1px 0 #fff;
  box-shadow: inset 0 0 0 rgba(255, 255, 255, 0.5), 0 1px 0 #fff;
}

.addonline_l {
  left: 0;
}

.addonline_r {
  width: 365px;
  right: 30px;
}

#signup .right {
  line-height: 1.4em;
}

#signup fieldset {
  border-bottom: 1px solid #dedede;
  -webkit-box-shadow: 0 1px 0 #fff;
  -moz-box-shadow: 0 1px 0 #fff;
  -ms-box-shadow: 0 1px 0 #fff;
  box-shadow: 0 1px 0 #fff;
  width: 96%;
  padding: 20px 0;
  margin-bottom: 20px;
}

#signup fieldset.box {
  border-bottom: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
  display: none;
}

#signup fieldset legend,
#demo h2 {
  color: #34559A;
  font-weight: bold;
  font-size: 1.28em;
  padding: 0;
}

#signup input[type="text"] {
  width: 400px;
  background: #fff;
  border: 1px solid #ccc;
  min-height: 25px;
  padding: 1px 10px;
}

fieldset label {
  width: 200px;
  display: block;
  float: left;
  margin-top: 6px;
}

#signup_box fieldset select {
  height: 30px;
  font-size: 1em;
  display: block;
  border: 1px solid #DEDEDE;
}

#signup_box .string {
  margin-bottom: 5px;
}

#signup_box table.fields ul {
  margin-top: 13px;
}

#signup_box table.fields ul li {
  line-height: 1em;
  list-style: disc inside;
}

#signup_box table.fields td {
  vertical-align: top;
  padding: 0 40px 0 0;
}

#signup_box .boolean input[type="checkbox"] {
  float: left;
  margin: 4px 10px 0 0;
}

#signup_box label.boolean {
  margin: 0;
}

#prices {
  margin-top: 20px;
}

#prices td {
  padding: 5px 20px 0 0;
  width: auto;
  min-width: 30px;
  text-align: left;
}

#prices th {
  font-weight: bold;
}

#prices tr {}

#prices thead {
  padding-top: 20px;
}

#signup_box input[type="submit"] {
  width: 200px;
  height: 40px;
}

#close {
  position: absolute;
  text-align: center;
  top: 8px;
  right: 8px;
  cursor: pointer;
  display: block;
  width: 15px;
  height: 15px;
  background: #fff;
  padding: 0 2px 4px;
  color: #000;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -o-border-radius: 2px;
  -ms-border-radius: 2px;
  -khtml-border-radius: 2px;
  border-radius: 2px;
  border: 1px solid #ccc;
}

#close:hover {
  background: #fafafa;
}

#signup_box table.services label.boolean {
  margin-top: 13px;
  font-weight: bold;
}

#signup_box abbr {
  color: #C00;
  font-weight: bold;
}

#signup_box abbr:before {
  content: " ";
}

#signup #dp_price {}

#signup #myp_price,
#signup #pyp_price {}

#signup #rp_price,
#signup #at_price {}

#signup #dp-students,
#signup #myp-students,
#signup #pyp-students,
#signup #rp,
#signup #at {}

#signup #dp-students input,
#signup #myp-students input,
#signup #pyp-students input,
#signup #rp input,
#signup #at input {}

#signup #dp-students label,
#signup #myp-students label,
#signup #pyp-students label,
#signup #rp label,
#signup #at label {}

#signup table.services ul.price_detail {
  margin-top: 3px;
}

#signup table.services ul.price_detail li {
  margin: 0;
  line-height: 1.4em;
}

#signup table.referral label {
  width: auto;
  margin-right: 20px;
}


/* Video Demo
------------------------------------------------------------------------------------------- */

#wrapper {
  background: #e8e9ed;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  -ms-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  border: 1px solid #ccc;
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.15), 1px 1px 0 #fff;
  display: block;
  height: 545px;
  margin-bottom: 30px;
  padding: 10px;
}

#wrapper h3 {
  width: 200px;
  color: #333;
  font-weight: bold;
  float: left;
  margin-left: 10px;
  margin-bottom: 10px;
  margin-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
  font-size: 1.14em;
}

#thumbs {
  overflow: auto;
  height: 475px;
  width: 200px;
  padding: 0;
  float: left;
  margin-left: 10px;
}

#thumbs ul {
  list-style-type: none;
  margin: 0;
  padding: 0 0 10px 0;
}

#thumbs ul li {
  position: relative;
  height: 40px;
  display: block;
  background: rgba(0, 0, 0, 0.08);
  padding: 8px;
  border-radius: 3px;
  margin-bottom: 5px;
  box-shadow: 1px 1px 0 rgba(255, 255, 255, 1), inset 1px 1px 2px rgba(0, 0, 0, 0.05);
  border: 1px solid #ccc;
}

#thumbs ul li:hover {
  background: rgba(0, 0, 0, 0.03);
}

#thumbs ul li:active {
  box-shadow: inset 2px 2px 3px rgba(0, 0, 0, 0.1);
}

#thumbs ul li a {
  font-size: 0.785em;
  color: #333;
  font-weight: bold;
}

#thumbs ul li p {
  margin-top: 3px;
}

#thumbs ul li p.duration {
  font-weight: normal;
  position: absolute;
  bottom: 5px;
}

#thumbs ul li p.vid-title {
  position: absolute;
  width: 110px;
  height: 100%;
  top: 4px;
}

#thumbs ul li a img {
  position: absolute;
  right: 5px;
  top: 7px;
}

#thumbs ul li.selected {
  background: #CBD4EB;
}

#thumbs ul li.selected p.vid-title {
  color: #000;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
}

#thumbs ul li.selected:hover {
  background: #D5DEF9;
}

.thumb {
  border: 1px solid #ccc;
  float: left;
  width: 60px;
  height: 40px;
  background: url(http://a.vimeocdn.com/thumbnails/defaults/default.75x100.jpg);
  margin-right: 5px;
  border-radius: 3px;
}

#embed {
  height: 541px;
  width: 960px;
  float: left;
  padding: 2px;
  background: #efefef;
  border: 1px solid #ddd;
  box-shadow: inset 1px 1px 0 #fff;
  border-radius: 5px;
}

#embed iframe {
  border-radius: 5px;
}

#portrait {
  float: left;
  margin-right: 5px;
  max-width: 100px;
}

#stats {
  clear: both;
  margin-bottom: 20px;
}

#videoCategories .selected {
  background: #fcfcfc;
  box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.10), 1px 1px 0 #fff;
  ;
}

#videoCategories {
  display: block;
  margin-bottom: 15px;
  height: 60px;
}

#videoCategories ul li {
  float: left;
  width: 33.32%;
}

#videoCategories ul li:first-child a {
  border-radius: 5px 0 0 5px;
  border-left: 1px solid #ddd;
}

#videoCategories ul li:last-child a {
  border-radius: 0 5px 5px 0;
}

#videoCategories ul li a {
  display: block;
  padding: 10px 20px;
  border: 1px solid #ddd;
  border-left: none;
  background: #fff;
  box-shadow: 1px 1px 0 #fff;
}

#videoCategories ul li a img {
  width: 40px;
  float: left;
  margin-right: 12px;
}

#videoCategories ul li h3 {
  padding: 10px 0;
  font-size: 1em;
  font-weight: bold;
}


/* iOS
------------------------------------------------------------------------------------------- */

.ios-frame {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 920px;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #dedede;
  margin: 0 auto 30px;
  position: relative;
}

.ios-content {
  padding: 40px 45px 0;
  background: rgb(249, 249, 249);
  background: -moz-linear-gradient(top, rgba(249, 249, 249, 1) 0%, rgba(255, 255, 255, 1) 30%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(249, 249, 249, 1)), color-stop(30%, rgba(255, 255, 255, 1)));
  background: -webkit-linear-gradient(top, rgba(249, 249, 249, 1) 0%, rgba(255, 255, 255, 1) 30%);
  background: -o-linear-gradient(top, rgba(249, 249, 249, 1) 0%, rgba(255, 255, 255, 1) 30%);
  background: -ms-linear-gradient(top, rgba(249, 249, 249, 1) 0%, rgba(255, 255, 255, 1) 30%);
  background: linear-gradient(to bottom, rgba(249, 249, 249, 1) 0%, rgba(255, 255, 255, 1) 30%);
  filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#f9f9f9', endColorstr='#ffffff', GradientType=0);
  min-height: 1000px;
  position: relative;
  border-radius: 0 0 5px 5px;
}

.ios_button {
  display: block;
  width: 240px;
  height: 63px;
  border: 1px solid #dcdcdc;
  border-radius: 5px;
  background: #fff url(../images/ios/sidebar_button.png) no-repeat top left;
  background-size: 100%;
  margin-bottom: 20px;
}

.ios_button:hover {
  border-color: #bbb;
}

.ios-hd {
  text-align: center;
  position: relative;
  border-bottom: 1px solid #dcdcdc;
  padding: 30px 0 0;
}

.ios-content .top-section {
  display: block;
  padding-bottom: 40px;
  border-bottom: 1px solid #dcdcdc;
  margin-bottom: 50px;
}

.ios-content .top-section .ts-content {
  padding-top: 400px;
}

.ios-content .top-section .ts-content .column {
  width: 50%;
  padding-right: 30px;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.ios-content .top-section .ts-content .column p {
  color: #999;
  font-size: 1.07em;
}

.ios-content .top-section h2 {
  font-size: 1.85em;
  margin-bottom: 10px;
  font-weight: normal;
  margin-bottom: 20px;
}

.ios-content .top-section ul li {
  background: url(../images/ios/checkgreen.png) no-repeat top left;
  padding-left: 25px;
  margin-bottom: 20px;
}

.download-section {
  position: absolute;
  right: 40px;
  top: 200px;
}

.download-section p {
  float: left;
  font-size: 0.85em;
  color: #aaa;
  width: 150px;
  padding-top: 10px;
  text-align: center;
}

.download-button {
  display: block;
  width: 150px;
  height: 50px;
  background: url(../images/ios/mb_appstore.png) no-repeat top left;
  background-size: 100%;
  text-indent: -9999px;
  float: left;
  margin-right: 15px;
}

.download-button:hover {
  opacity: 0.88;
}

.ios-content .ios-screenshot {
  display: block;
  width: 750px;
  height: 370px;
  background: url(../images/ios/iosmain2.png) no-repeat top center;
  background-size: 100%;
  position: absolute;
  top: 45px;
  left: -10px;
}

.ios-ribbon {
  display: block;
  width: 223px;
  height: 234px;
  background: url(../images/ios/ribbon.png) no-repeat top left;
  background-size: 100%;
  position: absolute;
  top: -11px;
  right: -12px;
}

.ios-hd h1 {
  color: #34559a;
  font-size: 1.5em;
  font-weight: bold;
}

.ios-logo {
  width: 367px;
  height: 78px;
  display: block;
  background: url(../images/ios/mb_logo.png) no-repeat top left;
  background-size: 100%;
  margin: 0 auto 30px;
}

.select-role {
  display: block;
  margin-bottom: 30px;
}

.select-role ol li strong {
  font-size: 1em;
  float: left;
  margin-right: 30px;
  margin-bottom: 20px;
}

.select-role ol {
  margin-top: -20px;
}

.select-role ol li {
  display: inline-block;
}

.select-role ol li a {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  width: 165px;
  height: 60px;
  padding: 10px 15px 10px 65px;
  border: 1px solid #dcdcdc;
  border-radius: 5px;
  margin-right: 15px;
  color: #555;
  font-size: 1em;
}

.select-role ol li:last-child a {
  margin-right: 0;
}

.select-role ol li a:hover {
  border-color: #5D97EC;
  cursor: pointer;
}

.select-role ol li a.ibdpstudent {
  background: url(../images/ios/ibdpstudent.png) no-repeat 15px 10px;
}

.select-role ol li a.ibdpcoor {
  background: url(../images/ios/ibdpcoor.png) no-repeat 15px 10px;
}

.select-role ol li a.ibmypstudent {
  background: url(../images/ios/ibmypstudent.png) no-repeat 15px 10px;
}

.select-role ol li a.ibmypcoor {
  background: url(../images/ios/ibmypcoor.png) no-repeat 15px 10px;
}

.select-role ol li.active a {
  border-color: #5D97EC;
}

.screenshot-section h3 {
  font-size: 1.7em !important;
  margin-bottom: 25px;
  text-align: center;
}

.ss-preview {
  display: block;
  width: 956px;
  height: 522px;
  background: url(../images/ios/ipad_sliderframe.png) no-repeat top left;
  background-size: 100%;
  margin-left: -47px;
  margin-bottom: 40px;
  position: relative;
}

.ss-preview .ss-target {
  position: absolute;
  top: 27px;
  left: 163px;
}

.ss-nav {
  margin-bottom: 35px;
}

.ss-nav .desc {
  display: none;
}

ul.ss-nav li {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  float: left;
  font-size: 0.9em;
  padding: 6px 15px 6px 50px;
  border: 1px solid #dcdcdc;
  border-right: none;
  min-height: 46px;
  cursor: pointer;
  position: relative;
}

ul.ss-nav li.active {
  color: #5D97EC;
}

ul.ss-nav li.active .desc {
  color: #555;
}

ul.ss-nav li:first-child {
  border-radius: 5px 0 0 5px;
}

ul.ss-nav li:last-child {
  border-radius: 0 5px 5px 0;
  border-right: 1px solid #dcdcdc;
}

ul.ss-nav li:hover .desc {
  display: block;
  position: absolute;
  top: 100%;
  margin-left: -70%;
  text-align: center;
  width: 250px;
  border: 1px solid #e7c054;
  background: #fffee1;
  padding: 10px 20px;
  z-index: 10;
  margin-top: 5px;
  border-radius: 5px;
}

.desc {
  position: relative;
  background: #fffee1;
  border: 1px solid #e7c054;
}

.desc:after,
.desc:before {
  bottom: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.desc:after {
  border-color: rgba(255, 254, 225, 0);
  border-bottom-color: #fffee1;
  border-width: 10px;
  margin-left: -10px;
}

.desc:before {
  border-color: rgba(231, 192, 84, 0);
  border-bottom-color: #e7c054;
  border-width: 11px;
  margin-left: -11px;
}

.onerow {
  padding-top: 15px !important;
}

img.ss-target {
  width: 601px;
  height: 451px;
}

#ibdpstudent ul.ss-nav li {
  width: 20%;
}

#ibdpcoor ul.ss-nav li {
  width: 14.28%;
  font-size: 0.75em;
  padding: 10px 5px 0 31px;
  background-size: 20px;
  background-position: 6px 12px;
}

#ibdpcoor ul.ss-nav li .desc {
  margin-left: -100%;
}

#ibmypstudent ul.ss-nav li {
  width: 33.33%;
}

#ibmypstudent ul.ss-nav li .desc {
  margin-left: -21.5%;
}

#ibmypcoor ul.ss-nav li {
  width: 16.5%;
}

#ibmypcoor ul.ss-nav li .desc {
  margin-left: -92%;
}

.i-dashboard {
  background: url(../images/ios/icon-dashboard.png) no-repeat 12px 12px;
}

.i-cas {
  background: url(../images/ios/icon-cas.png) no-repeat 12px 10px;
}

.i-plan {
  background: url(../images/ios/icon-plan.png) no-repeat 12px 8px;
}

.i-classes {
  background: url(../images/ios/icon-classes.png) no-repeat 12px 8px;
}

.i-pocket {
  background: url(../images/ios/icon-pocket.png) no-repeat 12px 8px;
}

.i-community {
  background: url(../images/ios/icon-community.png) no-repeat 12px 8px;
}

.i-attendance {
  background: url(../images/ios/icon-attendance.png) no-repeat 12px 8px;
}

.i-gradebook {
  background: url(../images/ios/icon-gradebook.png) no-repeat 12px 8px;
}

.i-curriculum {
  background: url(../images/ios/icon-curriculum.png) no-repeat 12px 8px;
}

.i-assignment {
  background: url(../images/ios/icon-assignment.png) no-repeat 12px 8px;
}

.i-messages {
  background: url(../images/ios/icon-messages.png) no-repeat 12px 8px;
}

.i-files {
  background: url(../images/ios/icon-files.png) no-repeat 12px 8px;
}

.i-units {
  background: url(../images/ios/icon-units.png) no-repeat 12px 8px;
}

.i-homeroom {
  background: url(../images/ios/icon-homeroom.png) no-repeat 12px 8px;
}

.i-exams {
  background: url(../images/ios/icon-exams.png) no-repeat 12px 8px;
}

.i-handbook {
  background: url(../images/ios/icon-handbook.png) no-repeat 12px 8px;
  padding-top: 10px !important;
  padding-bottom: 14px !important;
}

.ios-content .preview-section {
  border-bottom: 1px solid #dcdcdc;
  margin-bottom: 40px;
}

.ios-content .feature-matrix {
  padding-bottom: 40px;
}

.ios-content .feature-matrix h2 {
  margin-bottom: 10px;
  font-size: 1.7em;
  font-weight: normal;
}

.ios-content .feature-matrix p.subs {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #aaa;
}

table#fm {
  font-size: 0.8em;
  color: #333;
}

#fm tr td,
#fm tr th {
  padding: 8px 10px;
  width: 169px;
  vertical-align: top;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

#fm tr td {
  border: 1px solid #dcdcdc;
}

#fm tr th {
  font-size: 1em;
  font-weight: bold;
  color: #333;
  border: 1px solid #DCDCDC;
  padding-left: 65px;
  background-color: #f9f9f9;
  background-position: 18px 8px;
  background-repeat: no-repeat;
}

#fm tr:first-child th:first-child {
  background: #ffffff;
  border-top: none;
  border-left: none;
}

#fm tr td.fm-cat {
  width: 150px;
  font-weight: bold;
  font-size: 1em;
  color: #333;
  border: 1px solid #DCDCDC;
  padding-top: 13px;
  background-color: #f9f9f9;
}

#fm tr td ul li {
  margin-left: 15px;
  margin-bottom: 8px;
  list-style: square;
}

#fm .i-ibdps {
  background-image: url(../images/ios/ibdpstudent.png);
}

#fm .i-ibdpc {
  background-image: url(../images/ios/ibdpcoor.png);
}

#fm .i-ibmyps {
  background-image: url(../images/ios/ibmypstudent.png);
}

#fm .i-ibmypc {
  background-image: url(../images/ios/ibmypcoor.png);
}

#fm tr td[class*="i-"] {
  background-color: #f9f9f9;
  padding-left: 45px;
  background-size: 25px;
}

#fm tr td.fm-cat ul li[class*="i-"] {
  list-style: none;
  margin-left: 0;
  padding-top: 3px;
  padding-left: 30px;
  padding-bottom: 10px;
  background-position: 0 0;
  background-size: 23px;
}

#fm tr td.fm-cat ul.lv2 li[class*="i-"] {
  font-weight: normal !important;
  padding-bottom: 7px !important;
}


/* Getting Started
------------------------------------------------------------------------------------------------------------------------------------------ */

.getstart-banner h1 {
  color: #000;
  width: 350px;
  position: absolute;
  left: 730px;
  top: 50px;
  text-align: left;
  font-size: 2.8em;
  margin: 20px 0;
  font-weight: 100;
  text-shadow: 0 1px #fff;
}

.getstart-banner {
  width: 1193px;
  height: 380px;
  display: block;
  background: url(../images/getstart_header.jpg) no-repeat 0 0;
  margin-top: 20px;
  position: relative;
  border: 1px solid #ddd;
  border-radius: 5px 5px 5px 0;
}

.getstart-banner .intro {
  position: absolute;
  text-align: left;
  top: 188px;
  left: 730px;
  text-shadow: none;
  color: #777;
  font-size: 1.2em;
}

.start-button {
  padding: 12px 40px 10px;
  border: 1px solid #7EC946;
  position: absolute;
  left: 730px;
  top: 240px;
  font-size: 1.2em;
  color: #fff;
  border-radius: 100px;
  background: #7EC946;
  font-weight: 400;
}

.start-button:hover {
  background: #94D563;
  color: #fff;
}

.progress {
  margin-bottom: 40px;
  margin-top: -2px;
}

.sticky_wrap ol li {
  display: block;
  float: left;
}

.sticky_wrap ol li a {
  display: block;
  width: 144px;
  height: 50px;
  background: #fafafa;
  border: 1px solid #ddd;
  border-left: none;
  padding-left: 10px;
  line-height: 18px;
  color: #aaa;
  font-size: 0.8em;
  box-shadow: inset 1px 2px 0 #fff;
}

.sticky_wrap ol li a p {
  margin-top: 7px;
  padding-right: 5px;
}

.sticky_wrap ol li:first-child a p {
  margin-top: 17px;
}

.sticky_wrap > ol li a > span {
  background-color: #eaeaea;
  display: block;
  float: left;
  width: 60px;
  height: 60px;
  margin: -4px 10px 0 0;
  position: relative;
  -moz-border-radius: 35px;
  -webkit-border-radius: 35px;
  -o-border-radius: 35px;
  -ms-border-radius: 35px;
  -khtml-border-radius: 35px;
  border-radius: 35px;
  -moz-box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.4);
  -o-box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.4);
  box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.4);
  -moz-transition-property: background-color;
  -webkit-transition-property: background-color;
  -o-transition-property: background-color;
  transition-property: background-color;
  -moz-transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -moz-transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  z-index: 99;
}

.sticky_wrap > ol li a span > span {
  display: block;
  background-color: #fff;
  width: 40px;
  height: 40px;
  margin: 10px 0 0 10px;
  text-align: center;
  font-size: 1.2em;
  line-height: 40px;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
  -o-border-radius: 25px;
  -ms-border-radius: 25px;
  -khtml-border-radius: 25px;
  border-radius: 25px;
  -moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.4);
  -o-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.4);
}

.sticky_wrap > ol li a:hover > span {
  background-color: #7EC946;
}

.sticky_wrap > ol li a:hover {
  background-color: #fff;
  color: #333;
}

.sticky_wrap ol li:first-child a {
  /*border-radius: 5px 0 0 0;*/
  border-left: 1px solid #ddd;
}

.sticky_wrap ol li:last-child a {
  /*border-radius: 0 5px 0 0;*/
  width: 148px;
}

.sticky_wrap > ol li em {
  display: block;
  width: 40px;
  position: absolute;
}

.sticky_wrap > ol li a span > em {
  height: 40px;
  top: -2px;
  left: 10px;
}

.sticky_wrap > ol li a span > em > em {
  background: url(../images/pointer.png) center top no-repeat transparent;
  left: 0;
  top: 44px;
  height: 0;
  -moz-transition-property: height;
  -webkit-transition-property: height;
  -o-transition-property: height;
  transition-property: height;
  -moz-transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -moz-transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}

.sticky_wrap ol li.active a {
  background: #fff;
  color: #333;
  border-bottom-color: #fff;
}

.sticky_wrap > ol li.active a > span {
  background-color: #7EC946;
}

.sticky_wrap ol li.active a span {
  color: #333;
}

.sticky_wrap ol li.active a span > em > em {
  height: 13px;
}

.sticky_wrap ol li a img {
  padding: 14px;
  float: left;
}

.sticky_wrap ol li a span {
  color: #aaa;
  float: left;
}

.sticky_wrap {
  z-index: 99;
}

.progress-box {
  background: #fff;
  border-radius: 0 0 5px 5px;
  border: 1px solid #ddd;
  border-top: none;
  border-bottom-color: #bfbfbf;
  position: relative;
  top: 0;
  left: 0;
  z-index: 0;
  margin-bottom: 10px;
  margin-top: -5px;
}

.progress-info,
.progress-data,
.progress-add {
  padding: 20px 30px;
}

.progress-info,
.progress-add {
  border-bottom: 1px solid #dedede;
}

.progress-add {
  border-top: 1px solid #dedede;
}

.progress-box h2 {
  line-height: 180%;
  text-shadow: 0 2px 0px white;
  padding-left: 75px;
  padding-top: 40px;
  padding-right: 30px;
  font-size: 1.5em;
  font-weight: bold;
}

#adduser h2 {
  background: url(../images/step1.png) no-repeat 30px 43px;
}

#configure h2 {
  background: url(../images/step2.png) no-repeat 30px 43px;
}

#setupclass h2 {
  background: url(../images/step3.png) no-repeat 30px 43px;
}

#training h2 {
  background: url(../images/step4.png) no-repeat 30px 43px;
}

#report h2 {
  background: url(../images/step5.png) no-repeat 30px 43px;
}

#launch h2 {
  background: url(../images/step6.png) no-repeat 30px 43px;
}

.progress-info {
  padding-left: 75px;
  padding-bottom: 20px;
  margin-bottom: 10px;
  padding-top: 10px;
}

.progress-info ul {
  float: left;
  display: block;
  width: 300px;
}

.progress-info ul:last-child {
  width: 520px;
}

.progress-info ul li:first-child {
  color: #7EC946;
  font-weight: bold;
}

.progress-info ul li {
  line-height: 1.8em;
  font-size: 1.1em;
}

.progress-data {
  padding-left: 75px;
  padding-bottom: 30px;
}

.progress-data label {
  margin-right: 10px;
}

.progress-data input[type="input"] {
  margin-top: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  padding: 5px 10px;
  width: 200px;
}

.progress-data input[type="submit"] {
  padding: 5px 20px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  color: #fff;
  border: 1px solid #81BB52;
  text-shadow: 0 1px 1px #659C37;
  background: #7EC946;
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15), inset 1px 1px 0 rgba(255, 255, 255, 0.4);
  -moz-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15), inset 2px 2px 0 rgba(255, 255, 255, 0.4);
  -ms-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15), inset 2px 2px 0 rgba(255, 255, 255, 0.4);
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15), inset 1px 1px 0 rgba(255, 255, 255, 0.4);
}

#dropfile {
  width: 250px;
  height: 150px;
  display: block;
  border: 3px dashed #7EC946;
  text-align: center;
  cursor: pointer;
  float: left;
  margin-right: 40px;
}

#dropfile:hover {
  border-color: #97F455;
}

#dropfile:hover .message {
  color: #7EC946;
}

.message {
  margin-top: 75px;
  color: #333;
  font-size: 0.9em;
}

.progress-data li,
.progress-data div.au_content li {
  line-height: 2em;
}

#configure .progress-data ol {}

.progress-data > ol > li,
.progress-data div.au_content > ol > li {
  list-style-type: none;
  margin-bottom: 30px;
  font-size: 1em;
}

.progress-data ol > li > strong,
.progress-data div.au_content ol > li > strong {
  margin-bottom: 10px;
}

.progress-data > ol > li:last-child,
.progress-data div.au_content > ol > li:last-child {
  margin-bottom: 20px;
}

.progress-data ol > li span.lv1,
.progress-data div.au_content ol > li span.lv1 {
  background: #7EC946;
  border-radius: 50px;
  display: block;
  padding: 7px 17px;
  float: left;
  margin-top: -4px;
  margin-right: 10px;
  font-weight: bold;
  font-size: 1em;
  color: #fff;
}

.progress-data ol li p {
  margin-left: 55px;
  font-size: 1em;
  line-height: 1.4em;
  color: #333;
  margin-top: 5px;
  margin-bottom: 10px;
}

.progress-data ol li h5 {
  font-size: 1em;
  font-weight: bold;
  margin-left: 55px;
  margin-top: 10px;
}

.progress-data ul > li {
  background: url(../images/checklist.png) no-repeat 0 3px;
  padding-left: 25px;
  margin-left: 60px;
  font-size: 1em;
}

.progress-data ul {
  margin-bottom: 15px;
}

.progress-data p.introtext {
  line-height: 1.6em;
}

.progress-data ol li img.step_ss {
  margin-left: 55px;
  max-width: 93%;
}

.progress-data strong.red {
  color: #c00;
}

#adduser_nav,
#report_nav {
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
  display: block;
  height: 25px;
  padding-left: 70px;
  padding-top: 40px;
}

#adduser_nav ul li a,
#report_nav ul li a {
  cursor: pointer;
  padding: 10px 20px;
  border: 1px solid #ddd;
  padding: 10px 30px 8px;
  text-transform: uppercase;
  font-size: 0.9em;
  font-weight: bold;
  color: #bbb;
  background: #fff;
  border-radius: 5px 5px 0 0;
}

#adduser_nav ul li a:hover,
#report_nav ul li a:hover {
  background: #f5f5f5;
}

#adduser_nav ul li,
#report_nav ul li {
  display: inline-block;
  background: none;
  margin-left: 0;
  padding-left: 0;
}

#adduser_nav ul li a.active,
#report_nav ul li a.active {
  background: #fff;
  color: #000;
  border-bottom: 1px solid #fff;
}

#report_nav {
  height: 32px;
}

#report_nav ul li a {
  padding: 15px 20px 15px 60px;
}

#report_nav ul li a.dp {
  background: url(../images/diploma_thumb.png) no-repeat 20px 7px;
  background-size: 30px;
}

#report_nav ul li a.myp {
  background: url(../images/middle_thumb.png) no-repeat 20px 7px;
  background-size: 30px;
}

#report_nav ul li a.pyp {
  background: url(../images/primary_thumb.png) no-repeat 20px 7px;
  background-size: 30px;
}

#report_nav ul li a.other {
  background: url(../images/local_thumb.png) no-repeat 20px 7px;
  background-size: 30px;
}

.checklist {
  font-size: 1.3em;
  margin-bottom: 30px;
  margin-top: 10px;
  font-weight: bold;
}

.checklist-info {
  font-size: 0.9em;
  font-weight: normal;
  margin-top: 5px;
  color: #aaa;
}

.progress-data ul.stafflist li,
.progress-data ul.staffcoverlist li {
  margin-left: 0 !important;
}

.progress-data ul.stafflist {
  margin-bottom: 40px;
}

.staffchecklist {
  font-size: 1.3em;
  margin-bottom: 10px;
  margin-top: 10px;
  font-weight: bold;
}

.progress-data ul.staffcoverlist {
  width: 33.3%;
  float: left;
}

.progress-data ul.staffcoverlist li {
  line-height: 1.4em;
  padding: 5px 20px 5px 25px;
  font-size: 0.9em;
}

.progress-data ul.staffcoverlist li:first-child {
  list-style-type: none;
  padding-left: 0;
  background: none;
  font-size: 1em;
  font-weight: bold;
}

.progress-data .staffcover {
  display: block;
}

.checkscreen {
  margin-top: 50px;
  margin-bottom: 40px;
}

.checkscreen a {
  background: #fefefe url(../images/glance-logo.png) no-repeat center center;
  width: 180px;
  height: 50px;
  display: block;
  margin-right: 15px;
  float: left;
  text-indent: -99999em;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.checkscreen a:hover {
  box-shadow: 0 0 8px #37aae1;
  border: 1px solid #37aae1;
}

.checkscreen span {
  font-size: 0.9em;
  margin-top: 18px;
  float: left;
}

.accordion {
  margin-left: 55px;
}

.accordion ul > li {
  margin-left: 50px;
  background: url(../images/trigger_lv2_nonactive.png) no-repeat 8px 6px;
}

.accordion ul li.active {
  background: url(../images/trigger_lv2_active.png) no-repeat 8px 6px;
}

.accordion h6 a {
  padding-left: 55px;
  background: url(../images/accordionarrow.png) no-repeat 38px -10px;
  color: #333;
}

.accordion h6 {
  height: 40px;
}

.accordion h6.dp {
  background: url(../images/diploma_thumb.png) no-repeat left top;
  background-size: 30px;
}

.accordion h6.myp {
  background: url(../images/middle_thumb.png) no-repeat left top;
  background-size: 30px;
}

.accordion h6.pyp {
  background: url(../images/primary_thumb.png) no-repeat left top;
  background-size: 30px;
}

.accordion h6.active a {
  background-position: 38px -63px !important;
}

.accordion h6 a:hover {
  color: #888;
}

a.trigger_lv2 {
  color: #333;
  cursor: pointer;
}

.trigger_contentlv2 p {
  margin: 0 !important;
  font-size: 0.8em !important;
  line-height: 1.4em !important;
  color: #888 !important;
  display: inline-block;
  margin-right: 1%;
  width: 30%;
  vertical-align: top;
  background: url(../images/checklist.png) no-repeat left top;
  background-size: 12px;
  padding-left: 15px;
}

.fourcol p {
  width: 22% !important;
}

.trigger_contentlv2 {
  margin-bottom: 30px;
  margin-top: 10px;
}

.trigger_contentlv2.active {
  display: block;
}

.progress-content {
  width: 935px;
  margin-right: 20px;
  float: left;
}

.progress-sidebar {
  width: 240px;
  float: left;
}

.wf,
.progress-contact {
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  color: #333;
  box-shadow: 1px 1px 0 #fff;
  margin-bottom: 10px;
  background: #fff;
  border: 1px solid #dedede;
}

.wf {
  width: 198px;
  padding: 20px;
  display: block;
  text-align: center;
  background: #fff url(../images/wfbg.png) no-repeat left bottom;
  padding-bottom: 150px;
}

.wf span {
  display: block;
  color: #333;
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 10px;
}

.wf-info {
  margin-top: 5px;
  font-size: 0.9em;
  font-weight: normal;
  line-height: 1.4em;
  color: #aaa;
  display: block;
}

.wf a {
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border: 1px solid #649be7;
  font-size: 0.9em;
  font-weight: bold;
  text-transform: uppercase;
  color: #649be7;
  padding: 8px 15px;
  display: block;
  width: 110px;
  margin: 0 auto;
  -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05), 0 1px 0 #fff;
  -moz-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05), 0 1px 0 #fff;
  -ms-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05), 0 1px 0 #fff;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05), 0 1px 0 #fff;
}

.wf a:hover {
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.wf a:active {
  -webkit-box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2), 1px 1px 0 #fff;
  -moz-box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2), 1px 1px 0 #fff;
  -ms-box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2), 1px 1px 0 #fff;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2), 1px 1px 0 #fff;
}

.progress-contact {
  border: 1px solid #dedede;
  margin-top: 12px;
}

.progress-sidebar h3 {
  padding: 10px 20px;
  border-bottom: 1px solid #dedede;
  font-size: 1.2em;
  font-weight: bold;
}

.progress-sidebar ul {
  padding: 10px 20px;
  line-height: 1.8em;
}

.progress-sidebar ul li img {
  margin-right: 10px;
}

.progress-sidebar ul li:last-child {
  margin-top: 10px;
  font-size: 0.9em;
}

.progress-add {
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 75px;
  border-bottom: none;
}

.progress-add h4 {
  font-size: 1.2em;
  margin-bottom: 40px;
  font-weight: bold;
  width: 600px;
}

.forms-content {
  margin-bottom: 30px;
  width: 370px;
  height: 120px;
  margin-right: 40px;
  float: left;
}

.forms-title {
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 10px;
}

.forms-info {
  font-size: 0.9em;
  line-height: 1.6em;
}

.getstartdemobutton {
  text-align: center;
  padding: 12px 15px;
  display: block;
  margin-bottom: 10px;
}

.getstart-demobutton:hover {
  color: #fff;
}

#payment .payment-method {
  padding-left: 55px;
  height: 35px;
  display: block;
}

#payment .check {
  background: url(../images/getstart-check.png) no-repeat 0 0;
}

#payment .creditcard {
  background: url(../images/getstart-cc.png) no-repeat 0 0;
}

#payment .banktransfer {
  background: url(../images/getstart-banktransfer.png) no-repeat 0 0;
}

#payment .cash {
  background: url(../images/getstart-cash.png) no-repeat 0 0;
}

.gs-setup-account {
  padding-left: 60px;
  margin-top: 20px;
  margin-bottom: 20px;
}

a.gs-linksetup {
  width: 130px;
  height: 40px;
  display: block;
  margin-right: 15px;
  float: left;
  text-indent: -99999em;
  border: 1px solid #ddd;
  border-radius: 5px;
}

a.gs-linksetup:hover {
  box-shadow: 0 0 8px #37aae1;
  border: 1px solid #37aae1;
}

a.stripe {
  background: url(../images/gs_stripe.png) no-repeat 0 0;
}

a.braintree {
  background: url(../images/gs_braintree.png) no-repeat 0 0;
}

a.paypal {
  background: url(../images/gs_paypal.png) no-repeat 0 0;
}


/* tables */

table.clean {
  font-size: 0.8em;
  line-height: 1.6em;
  margin-left: 55px;
  width: 770px;
  margin-bottom: 20px;
}

table.clean tr th {
  background-color: #f4f4f7;
  border: 1px solid #dedede;
  -webkit-box-shadow: inset 0px 1px 1px rgba(255, 255, 255, 0.4);
  -moz-box-shadow: inset 0px 1px 1px rgba(255, 255, 255, 0.4);
  box-shadow: inset 0px 1px 1px rgba(255, 255, 255, 0.4);
  text-shadow: 0px 1px 0px white;
  padding: 3px 5px;
  color: #a6adb2;
  font-weight: normal;
}

table.clean tr {
  /*border:1px solid #dedede;*/
}

table.clean tr th h4 {
  font-size: 100% !important;
}

table.clean tr.eor {
  /*  border: 1px solid #f7f7f7;
  border-left: 0;
  border-right: 0;*/
}

table.clean tr.eor td {
  background-color: #fafafa;
}

table.clean tr.eon td {
  background-color: white;
}

table.clean tr td {
  padding: 3px 5px;
  border: 1px solid #f7f7f7;
  color: #555;
}

table.clean tr td:first-child {
  border-left: 1px solid #dedede;
}

table.clean tr td:last-child {
  border-right: 1px solid #dedede;
}

table.clean tr:last-of-type td {
  border-bottom: 1px solid #dedede;
}

table.clean.nopadding td {
  padding: 0;
}

.download_csv {
  padding-left: 20px;
  background: url(../images/page_excel.png) no-repeat 0 0;
  background-size: 19px;
  padding-bottom: 5px;
}

.download_samplereport {
  padding: 13px 20px 11px 45px;
  background: #f5f5f5 url(../images/page_white_acrobat.png) no-repeat 10px 5px;
  font-size: 1em;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 20px;
  border-radius: 5px;
  border: 1px solid #ccc;
  display: inline-block;
  color: #555;
}

.download_samplereport:hover {
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.05);
  border-color: #aaa;
}

.gs4button {
  width: 430px;
  margin-bottom: 30px;
}


/* Study Case
----------------------------------------------------------------------------------------------------------------------------------------------- */

.studycase-frame,
.happyThought-frame {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 920px;
  background: #fff;
  padding: 20px 60px 30px;
  border-radius: 5px;
  border: 1px solid #dedede;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.05);
  margin: 0 auto 30px;
}

.studycase-frame .intro {
  margin-bottom: 50px;
}

.testimonial {
  width: 385px;
  display: block;
  float: left;
  margin-bottom: 90px;
  color: #888;
}

.testimonial.last {
  margin-left: 27px;
}

.testimonial.lastline {
  margin-bottom: 50px;
}

.testimonial .excerpt {
  display: block;
  margin-bottom: 15px;
}

.testimonial .image {
  position: relative;
  width: 373px;
  height: 240px;
  display: block;
  border-radius: 3px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  padding: 5px;
}

.testimonial .image:hover {
  border-color: #478CFE;
}

.testimonial .image span.type {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 5px;
  font-size: 0.7em;
  line-height: 11px;
  color: #fff;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  background: rgb(127, 127, 127);
  background: rgba(0, 0, 0, .4);
}

.testimonial .image span.schoolname {
  position: absolute;
  left: 20px;
  bottom: 15px;
  font-size: 1.4em;
  line-height: 25px;
  color: #fff;
  text-shadow: 0 0 1px rgba(0, 0, 0, .6), 0 1px rgba(0, 0, 0, .5);
}

.testimonial .image .shadow {
  position: absolute;
  width: 373px;
  height: 85px;
  display: block;
  bottom: 5px;
  border-radius: 0 0 3px 3px;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0.65)));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
  filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000', GradientType=0);
}

.testimonial.bis .image {
  background: url(../images/studycase/bis.jpg) no-repeat center center;
}

.testimonial.dwight .image {
  background: url(../images/studycase/dwight.jpg) no-repeat center center;
}

.testimonial.ipa .image {
  background: url(../images/studycase/ipa.jpg) no-repeat center center;
}

.testimonial.this .image {
  background: url(../images/studycase/this.jpg) no-repeat center center;
}

.testimonial.smitis .image {
  background: url(../images/studycase/smitis.jpg) no-repeat center center;
}

.testimonial.ecole .image {
  background: url(../images/studycase/ecole.jpg) no-repeat center center;
}

.testimonial.gwa .image {
  background: url(../images/studycase/gwa.jpg) no-repeat center center;
}

.testimonial.mercedes .image {
  background: url(../images/studycase/mercedes.jpg) no-repeat center center;
}

.testimonial.ssicp .image {
  background: url(../images/studycase/ssicp.jpg) no-repeat center center;
}

.testimonial.isocs .image {
  background: url(../images/studycase/isocs.jpg) no-repeat center center;
}

.testimonial .bottom {
  height: 35px;
  margin-top: 10px;
  font-size: 1em;
  line-height: 32px;
  color: #9e9e9e;
}

.testimonial .mbtype {
  display: block;
  width: 275px;
  height: 60px;
  margin-bottom: 20px;
}

.testimonial .mbtype span {
  width: 55px;
  height: 60px;
  background-size: 75px;
  background-position: center center;
  display: inline-block;
  float: left;
  text-indent: -99999em;
}

.testimonial .mbtype span.dp {
  background: url(../images/studycase/sc-dp.png);
  background-size: 55px;
}

.testimonial .mbtype span.myp {
  background: url(../images/studycase/sc-myp.png);
  background-size: 55px;
}

.testimonial .mbtype span.pyp {
  background: url(../images/studycase/sc-pyp.png);
  background-size: 55px;
}

.testimonial .mbtype span.report {
  background: url(../images/studycase/sc-report.png);
  background-size: 55px;
}

.testimonial .mbtype span.atn {
  background: url(../images/studycase/sc-atn.png);
  background-size: 55px;
}

.testimonial .downloadscbutton {
  position: relative;
  padding: 8px 20px 8px 20px;
  background: none;
  border: 1px solid #5D96EE;
  border-radius: 5px;
  color: #478CFE;
}

.testimonial .downloadscbutton:hover {
  background: #478CFE;
  color: #fff;
}

.testimonial .downloadscbutton:active {
  box-shadow: inset 0px 5px 5px rgba(0, 0, 0, 0.2);
}

.testimonial .downloadscbutton .pdf-image {
  position: absolute;
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url(../images/studycase/sc_pdf.png) no-repeat top left;
  top: 5px;
  left: 15px;
}

.mb-as-text.sc {
  background-size: 185px;
  width: 185px;
  height: 45px;
  background-position: left 3px;
}

.who_use.sc {
  background: #fff;
}

.who_use.sc h3 {
  color: #5B7DBD;
}

.who_use.sc:hover h3 {
  color: #3989F6;
}

.happyThought-frame .intro {
  margin-bottom: 30px;
}

.thoughtLayout {
  display: block;
}

.thoughtBox {
  margin-bottom: 20px;
  width: 100%;
  border: 1px solid #d5d5d5;
  border-radius: 5px;
  -webkit-transform: scale(1, 1);
  -webkit-transition-timing-function: ease-out;
  -webkit-transition-duration: 250ms;
  -moz-transform: scale(1, 1);
  -moz-transition-timing-function: ease-out;
  -moz-transition-duration: 250ms;
  display: block;
}

.thoughtBox:hover {
  -webkit-transform: scale(1.07, 1.07);
  -webkit-transition-timing-function: ease-out;
  -webkit-transition-duration: 250ms;
  -moz-transform: scale(1.07, 1.07);
  -moz-transition-timing-function: ease-out;
  -moz-transition-duration: 250ms;
}

.thoughtText {
  border-bottom: 1px solid #d5d5d5;
  padding: 20px;
  background-color: #F6F9FB;
  border-radius: 5px 5px 0 0;
}

.thoughtSchool {
  padding: 12px 20px 10px;
  font-size: 1em;
  position: relative;
}

.thoughtSchool img {
  position: absolute;
  top: 13px;
  left: 20px;
  height: 35px;
  width: 35px;
}

.thoughtName {
  margin-left: 45px;
  font-weight: bold;
}

.thoughtName span {
  font-weight: normal;
  font-size: 1em;
}

.cstButtonBox {
  text-align: center;
}

.cstButton {
  padding: 15px 30px;
  margin: 10px auto;
  font-size: 1.2em;
  text-align: center;
  display: inline-block;
}


/* MB Next Chapter
--------------------------------------------------------------------------------------------------------------------------------------------- */

#mypnc {
  display: block;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 5px;
  margin-top: 30px;
  margin-bottom: 50px;
}

.mypnc {
  width: 1193px;
  height: 380px;
  display: block;
  background: url(../images/mypnc/mypnc_main.jpg) no-repeat 0 0;
  position: relative;
  border-radius: 5px;
}

.mypnc h1 {
  color: #333;
  width: 505px;
  position: absolute;
  left: 620px;
  top: 40px;
  text-align: left;
  font-size: 2.2em;
  margin: 20px 0;
  font-weight: 200;
  text-shadow: 0 1px #fff;
  line-height: 1.5em;
}

.mypnc .nc-mblogo {
  text-indent: -99999em;
  width: 209px;
  height: 37px;
  background: url(../images/mypnc/nc-mblogo.png) no-repeat 0 0;
  position: absolute;
  top: 116px;
  left: 687px;
  background-size: 100%
}

.mypnc .nc-titletext {
  font-size: 1.2em;
  position: absolute;
  width: 505px;
  top: 190px;
  left: 620px;
}

.mypnc .nc-titletext li {
  margin-bottom: 20px;
  line-height: 1.4em;
  color: #888;
  padding-left: 40px;
  background: url(../images/mypnc/checklist.png) no-repeat left top;
}

.start-planning {
  height: 275px;
  padding: 30px 0 30px 60px;
  font-size: 1.1em;
  line-height: 1.8em;
  background: #f9f9f9 url(../images/mypnc/nc_macscreen.png) no-repeat 570px -10px;
  background-size: 580px;
  box-shadow: inset 1px 1px 0 #fff;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.start-planning p {
  width: 510px;
}

.start-planning h2,
.key-changes h2 {
  font-size: 1.7em;
  font-weight: bold;
  margin-bottom: 30px;
  margin-top: 25px;
}

.key-changes {
  padding: 50px 60px 30px;
  position: relative;
}

.key-changes p.head {
  font-size: 1.1em;
  margin-bottom: 50px;
}

.key-changes h2 {
  margin: 10px 0 10px;
}

.key-changes h4 {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 5px;
}

.key-changes h4 span {
  margin-right: 10px;
}

.key-changes .nc-section p.sub-title {
  margin-bottom: 25px;
  font-size: 1.1em;
  color: #999;
}

.key-changes .subhead {
  font-size: 1.1em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #999;
  width: 170px;
  text-align: center;
  position: absolute;
  right: 35px;
  top: 140px;
}

.nc-section {
  display: block;
  margin-bottom: 70px;
  position: relative;
}

.nc-section .info {
  margin-left: 35px;
  width: 890px;
}

.nc-section .date {
  display: block;
  width: 75px;
  height: 90px;
  position: absolute;
  right: 10px;
  top: 30%;
}

.nc-section .date .check {
  display: block;
  width: 65px;
  height: 70px;
  position: absolute;
  border-radius: 4px;
  border: 1px solid #B9B9C8;
  box-shadow: inset 1px 1px 0 #fff, 2px 2px 3px rgba(0, 0, 0, 0.05);
  background: rgb(245, 245, 245);
  /* Old browsers */
  background: -moz-linear-gradient(top, rgba(245, 245, 245, 1) 0%, rgba(221, 221, 221, 1) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(245, 245, 245, 1)), color-stop(100%, rgba(221, 221, 221, 1)));
  background: -webkit-linear-gradient(top, rgba(245, 245, 245, 1) 0%, rgba(221, 221, 221, 1) 100%);
  background: -o-linear-gradient(top, rgba(245, 245, 245, 1) 0%, rgba(221, 221, 221, 1) 100%);
  background: -ms-linear-gradient(top, rgba(245, 245, 245, 1) 0%, rgba(221, 221, 221, 1) 100%);
  background: linear-gradient(to bottom, rgba(245, 245, 245, 1) 0%, rgba(221, 221, 221, 1) 100%);
}

.nc-section .date .check span {
  display: block;
  width: 65px;
  height: 70px;
  background: url(../images/mypnc/checkdate.png) no-repeat center center;
}

.nc-section .date .check span.progress {
  background: url(../images/mypnc/progressdate.png) no-repeat center center;
}

.nc-section .date .monthyear {
  font-size: 0.9em;
  color: #fff;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);
  background: #FF7373;
  padding: 3px 10px;
  border-radius: 3px;
  text-align: center;
  position: absolute;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.05);
  left: -5%;
  bottom: 5px;
}

.nc-section .info p {
  margin-bottom: 15px;
}

.aoi ul li,
.kc ul li {
  width: 140px;
  margin-right: 8px;
  float: left;
  text-align: center;
}

.kc ul li {
  margin-bottom: 30px;
}

.info table.nc-table {
  width: 600px;
}

.info table.nc-table td,
.info table.nc-table th {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 8px 15px;
  width: 50%;
}

.info table.nc-table td {
  border: 1px solid #ccc;
  vertical-align: top;
}

.info table.nc-table td span.nr {
  border-top: none;
  min-width: 30px;
  display: inline-block;
}

.info table.nc-table th {
  text-align: center;
  font-weight: bold;
  background: #6094dd;
  color: #fff;
}

.info table.nc-table th {
  border-radius: 5px 0 0 0;
  border-right: 1px solid #fff;
}

.info table.nc-table th:last-child {
  border-radius: 0 5px 0 0;
  border-right: none;
}

.unit-planner .info {
  background: url(../images/mypnc/pdf.png) no-repeat top left;
  padding-left: 90px;
  height: 80px;
  width: 700px;
  line-height: 1.6em;
}

.inquiry-question .info p {
  line-height: 1.6em
}

span.i {
  background: url('../images/mypnc/icons16x16.png') no-repeat top left;
  display: inline-block !important;
  vertical-align: middle !important;
  width: 16px !important;
  height: 16px !important;
  margin-right: 8px;
}

.i.sprite-individuals {
  background-position: -17px -446px;
  width: 16px;
  height: 16px;
}

.i.sprite-language_a {
  background-position: -17px -582px;
  width: 16px;
  height: 16px;
}

.i.sprite-language_b {
  background-position: -17px -599px;
  width: 16px;
  height: 16px;
}

.i.sprite-myp_pe {
  background-position: -17px -1279px;
  width: 16px;
  height: 16px;
}

.i.sprite-myp_tech {
  background-position: -17px -1296px;
  width: 16px;
  height: 16px;
}

.mb-as-text {
  display: inline-block;
  width: 90px;
  height: 25px;
  background: url(../images/mb-as-text.png) no-repeat left 5px;
  background-size: 90px;
  text-indent: -99999em;
}

.subject-guide .nc-table td {
  text-align: center;
}

.indicator-label {
  background: #c00;
  color: white;
  padding: 2px 5px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  font-size: 0.7em;
  font-weight: normal;
  display: inline-block;
  cursor: default;
  line-height: 130%;
  margin-right: 3px;
}

.indicator-label.green {
  background: #090;
}

.indicator-label.blue {
  background: #134B9A;
}

.indicator-label.orange {
  background: #FFA500;
  color: white;
}

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

.ncbutton a {
  display: inline-block;
  width: 250px;
  border-radius: 100px;
  padding: 20px;
}

.ncbutton a.watch_demo {
  margin-right: 20px;
  border: 1px solid #5D96EE;
  color: #5D96EE;
  font-weight: bold;
  font-size: 1.2em;
  background: none;
}

.ncbutton a.watch_demo:hover {
  border-color: #478CFE;
  background: #478CFE;
  color: #fff;
}


/* MB NEW HOME -Edit2014
----------------------------------------------------------------------------------------------------------------------------------- */

#p_home .content * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

#main_showcase {
  background: url(../images/main_bg.png) top center repeat #fff;
  -moz-background-size: cover;
  background-size: cover;
  overflow: hidden;
  border-bottom: 1px solid #ddd;
  margin-bottom: 40px;
}

#main_showcase .wrap_homenav {
  position: relative;
  height: 480px;
}

.main_arc {
  background: url(../images/main_arc.png) no-repeat top left;
  display: block;
  position: relative;
  width: 600px;
  height: 406px;
  background-size: 100%;
  top: 40px;
  left: 0;
  float: left;
  margin-right: 35px;
}

.right_mainsc {
  position: relative;
  top: 60px;
}

.right_mainsc h1 {
  font-weight: 100;
  font-size: 2.6em;
  margin-bottom: 50px;
}

.right_mainsc .main_product span {
  font-size: 1.2em;
  display: block;
  margin-bottom: 20px;
}

.right_mainsc .main_product table tr td {
  color: #888;
  vertical-align: middle;
}

.right_mainsc .main_product table tr td a {
  border: 1px solid #ccc;
  text-indent: -99999em;
  width: 180px;
  height: 50px;
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  background-size: 100%
}

.main_product a.mb-icon {
  background: transparent url("../images/mb-icon.png") no-repeat top left;
}

.main_product a.oa-icon {
  background: transparent url("../images/oa-icon.png") no-repeat top left;
}

.main_product a.is-icon {
  background: transparent url("../images/isams-icon.png") no-repeat top left;
}

.right_mainsc .main_product table tr td a:hover {
  border-color: #478CFE;
  /*box-shadow: 0 2px 3px rgba(40,125,209,0.45);*/
}

.right_mainsc .main_product table tr td a:active {
  box-shadow: inset 0 2px 3px rgba(40, 125, 209, 0.45);
}

.home_schools {
  background: #fff;
  width: 790px;
  height: 300px;
  padding: 30px;
  border: 1px solid #ddd;
  border-radius: 5px;
  float: left;
  margin-right: 30px;
}


/* -------  BORDER DEFAULT STYLE ------------ */

.border {
  display: inline-block;
  height: 1px;
  border-bottom: 1px solid #dedede;
}

.border.right {
  right: 0;
}

.border.left {
  left: 0;
}


/* ------------------------------------------ */


/* -------  BUTTON DEFAULT STYLE ------------ */

.whitebutton {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}

.whitebutton:hover {
  border: 1px solid #478CFE;
  color: #333;
}


/* ------------------------------------------ */

.recent-update {
  position: relative;
  float: left;
  width: 380px;
}

.border.recent {
  position: absolute;
  width: 230px;
  top: 10px;
  right: 0;
}

.text-title {
  font-size: 1.2em;
  font-weight: bold;
  color: #aaa;
  text-shadow: 0 2px 0 #fff;
}

.recent-update .title {
  float: left;
  margin-bottom: 10px;
}

.recent-update .recent_box {
  position: relative;
  float: left;
}

.recent-update .recent_box a {
  width: 380px;
  height: 125px;
  display: block;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #ddd;
  margin-bottom: 17px;
  padding: 20px 20px 20px 190px;
  font-size: 1em;
  color: #777;
}

.recent_box a.recent-ios {
  background: #fff url("../images/recent-ios.png") no-repeat top left;
}

.recent_box a.recent-mypnc {
  background: #fff url("../images/recent-mypnc.png") no-repeat top left;
  padding-top: 30px;
}

.recent_box a.recent-mypnc p.hd {
  font-size: 1.2em;
  font-weight: bold;
  color: #555;
}

.recent-update .recent_box a:hover {
  border-color: #478CFE;
}

.bordercolor.casestudy {
  padding: 10px 20px;
  margin-right: 20px;
}

.home_schools p {
  font-size: 1.2em;
  color: #535353;
}

.home_schools span {
  color: #aaa;
}

.intro-line {
  display: block;
  position: relative;
  text-align: center;
  margin: 20px 0 30px;
}

.intro-line .border {
  position: absolute;
  width: 535px;
  top: 10px;
}

.getstart {
  margin-bottom: 40px;
}

.gs_button {
  display: inline-block;
  float: left;
  width: 380px;
  height: 300px;
  margin-right: 29px;
  text-align: center;
  padding-top: 30px;
  color: #555;
  background-repeat: no-repeat;
  background-position: center 140px;
}

.gs_button h4 {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 12px;
}

.gs1 {
  background-image: url("../images/gs1.png");
}

.gs2 {
  background-image: url("../images/gs2.png");
}

.gs3 {
  background-image: url("../images/gs3.png");
  margin-right: 0;
}

.homesignup {
  text-align: center;
  margin-bottom: 40px;
}

.homesignup .border {
  position: absolute;
  width: 408px;
  top: 37px;
}

.homesignup .buttoncolor {
  width: 300px;
  height: 75px;
  display: inline-block;
  text-align: center;
  font-size: 1.4em;
  padding-top: 14px;
}

.homesignup .buttoncolor span {
  font-size: 0.8em;
  font-weight: normal;
}


/* NEW FOOTER
------------------------------------------------------------------------------------------- */

#footerinfo {
  background: #fff;
  border-top: 1px solid #ddd;
  padding: 40px 0 30px;
  font-size: 0.9em;
  color: #555;
}

#footerinfo h3 {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000;
}

#footerinfo ul li {
  width: 190px;
  display: inline-block;
  float: left;
}

#footerinfo ul li:first-child {
  width: 410px;
}

#footerinfo a.email {
  color: #555;
}

#footerinfo a.email:hover {
  color: #3989F6;
}

.logo_gray {
  font-family: "Open Sans";
  color: #545454 !important;
}

.logo_blue {
  font-family: "Open Sans";
  color: #6199EA !important;
}


/* Clearfix
------------------------------------------------------------------------------------------- */

.clearfix {
  zoom: 1;
}

.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}
