﻿/* ---------------------------------- */
/* Base Styles */
/* ---------------------------------- */
* { 
    margin: 0;
    padding: 0;
}

body {
    background-color: #222325;
    background-image: url('../Images/template/image_patternlinensmall.png');
    color: #333;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    min-width: 350px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.mobile {
    overflow: hidden;
}

h1 {
    color: #333;
    font-size: 30px;
    font-weight: normal;
    margin-bottom: 10px;
    text-transform: uppercase;
}

h1.main-tagline {
    text-transform: none;
}

h2 {
    color: #2AA4D7;
    font-size: 22px;
    font-weight: normal;
}

h2.headline {
    margin: 20px 0 0 0;
}

h3 {
    color: #333;
    font-size: 18px;
    font-weight: normal;
}

a {
    color: #2AA4D7;
    outline: none;
}

a:hover,
a:focus {    
    color: #035374; 
}

a.anchor {
  display: block;
  top: 200px;
}

.hide {
    display: none;
}

.secondary-content-wrapper h2 {
    margin: 10px 0;
}

.secondary-content-wrapper ul {
    margin: 20px 40px;
}

.secondary-content-wrapper ol {
    margin: 20px 15px;
}

.secondary-content-wrapper ol.sub-list {
    margin: 20px 35px;
}

.secondary-content-wrapper ol.sub-list {
    margin: 5px 35px;
}

/* ---------------------------------- */
/* Alerts */
/* ---------------------------------- */
.alert {
    border: 1px solid transparent;
    border-radius: 4px;
    display: none;
    margin-bottom: 20px;
    padding: 15px;
}

.alert-danger {
    background-color: #f2dede;
    border-color: #ebccd1;
    color: #a94442;
}

/* ---------------------------------- */
/* Buttons */
/* ---------------------------------- */
.btn {
    background-color: #FFF;
    border: 1px solid #CCC;
    border-radius: 5px;
    color: #666;
    cursor: pointer;
    font-size: 16px;
    padding: 6px 15px 8px 15px;
    text-decoration: none;
}

.btn:hover,
.btn:focus {
  color: #FFF;
}

.btn-link {
  display: block;
}

.btn-large {
    font-size: 18px;
    padding: 10px 20px;
}

.btn-sm {
  font-size: 12px;
  padding: 5px 10px;
}

.btn:hover,
.btn:focus {
    background-color: #CCC;
}

.btn-success {
    background-color: #3DB729;
    border: 1px solid #4A9B1E;
    color: #FFF;
}

.btn-success:hover,
.btn-success:focus {
    background-color: #21A40C;
}

.btn-primary {
    background-color: #2AA4D7;
    border: 1px solid #3087AB;
    color: #FFF;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #1C95C7;
    border: 1px solid #1C95C7;
}

.btn-header, .t-page .btn-header {
  display: block;
  text-align: center;
  width: 100px;
}

.btn-banner {
  display: block;
  float: left;
  font-weight: bold;
  width: 150px;
}

  .btn-banner:first-child {
    margin: 0 20px 0 0;
  }

.btn-demo {
  width: 175px;
}

/* ---------------------------------- */
/* Input Controls */
/* ---------------------------------- */
.form-wrapper {
    display: block;
    margin: 0 0 20px 0;
    overflow: hidden;
}

.input-group {
    display: block;
    padding: 0 35px 10px 0;
    max-width: 365px;
    overflow: hidden;
}

.input-group label {
    font-weight: bold;
}

.input-group .form-control {
    float: left;
    margin-bottom: 0;
    position: relative;
    width: 90%;
    z-index: 2;
}

.form-control {
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
    color: #555;
    display: block;
    font-size: 14px;
    height: 20px;
    line-height: 1.42857;
    padding: 6px 12px;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
    width: 90%;
}

.form-control.sm {
  width: 100px;
}

.form-control.error {
    border: 1px solid #d75452;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(215, 84, 82, 0.5);
}

.form-control:focus {
    border-color: #66afe9;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 175, 233, 0.6);
    outline: 0 none;
}

.form-control.error:focus {
    border: 1px solid #d75452;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(215, 84, 82, 0.5);
    outline: 0 none;
}

.form-control::-moz-placeholder {
    color: #777;
    opacity: 1;
}
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
    background-color: #eee;
    cursor: not-allowed;
    opacity: 1;
}
textarea.form-control {
    height: auto;
}

.input-group textarea.form-control {
    width: 360px;
}

.input-group select.form-control {
    width: 200px;
}

.input-group select.form-control.source {
    width: 250px;
}

select.form-control {
    height: 34px;
}

.form-required {
    font-size: 12px;
    margin: 0 0 15px 0;
}

.required-field {
  display: none;
  color: #d75452;
  font-size: 12px;
}

/* ---------------------------------- */
/* Main Layout */
/* ---------------------------------- */

#main-wrapper {
    display: block;
    min-width: 320px;
    position: absolute;
    width: 100%;
    z-index: 2000;
}

    #mobile-nav {
        position: relative;
        z-index: 50;
    }

    #main-header {
        position: fixed;
        display: block;
        background-color: rgb(255, 255, 255);
        background-color: rgba(255, 255, 255, .90);
        box-shadow: 0 1px 5px 2px rgba(0,0,0,.2);
        overflow: hidden;
        -webkit-box-shadow: 0 1px 5px 2px rgba(0,0,0,.2);
        width: 100%;
		height: auto;
        z-index: 3000;
    }

	/*-- Promo header bar --*/

	.promo-animate { }	/*marker class*/

	#main-header #main-promo-header {
		display: none;
	}
	#main-header.with-promo #main-promo-header {
		display: block;
		z-index: 3000;
		width: 100%;
		padding-top: 4px;
		height: 26px;
		color: #3AD;
		background-color: rgb(85, 85, 85);
		background-color: rgba(85, 85, 85, 0.90);	/*Not supported by all browsers*/
		font-size: 13px;
		cursor: default;
	}
		#main-promo-header .text {
			text-transform: uppercase;
			text-align: center;
		}
		#main-promo-header .text .hilite {
			color: #DDD;
			margin-left: 5px;
			white-space: nowrap;
		}
		#main-promo-header .text .buttonWrap {
			display: inline;
		}
			#main-promo-header .buttonWrap .button {
				padding: 0 12px;
				margin-left: 1em;
				border: 1px solid #3AD;
				border-radius: 4px;
				font-size: 11px;
				font-weight: bold;
				text-transform: capitalize;
				white-space: nowrap;
				cursor: pointer;
				text-decoration: none;
			}
			#main-promo-header .text .buttonWrap .button:hover {
				color: #DDD;
				background-color: #777;
			}
		#main-promo-header .close {
			position: absolute;
			top: 0;
			right: 10px;
			color: #BBB;
			font-size: 21px;
			/*font-weight: bold;*/
			cursor: pointer;
		}

	.main-banner #main-promo-spacer {
		display: none;
	}
	.main-banner.with-promo #main-promo-spacer {
		display: block;
		height: 30px;
		background-color: #FFF;
	}

        .main-header-wrapper {
            display: block;
            margin: 0 auto;
            max-width: 1250px;
            min-width: 320px;
			height: 75px;
        }

            .main-logo {
                display: block;
                float: left;
                line-height: 70px;
                margin: 0 0 0 20px;
            }

            .t-page .main-logo {
              margin: 11px 0 0 20px;
            }

                .main-logo img {
                    height: 51.5px;
                    width: 178px;
                    vertical-align: middle;
                }

            .main-header-right {
                display: block;
                float: right;
                position: relative;
                z-index: 2000;
            }    

                .mobile-nav-button {
                    display: none;
                }

                .main-nav {
                    display: block;
                    float: left;
                    margin: 25px 0 0 0;
                }

                    .main-nav ul {
                        display: block;
                    }

                    .main-nav ul li {
                        display: block;
                        float: left;
                        list-style: none;
                    }

                    .main-nav ul li a {
                        color: #878488;
                        font-weight: 600;
                        font-size: 16px;
                        margin: 0 20px;
                        text-decoration: none;
                    }

                    .main-nav ul li a:hover,
					.main-nav ul li a:focus,
					.main-nav ul li a.selected {
                        color: #2AA4D7;
                    }

                    .main-nav ul li.nav-home {
                        display: none;
                    }

                .main-actions {
                    display: block;
                    float: left;
                    margin: 19px 20px 0 8px;
                }

                    .action-button {
                        display: block;
                        float: left;
                        margin-left: 10px;
                    }

                    .action-button.free-trial {
                        margin-right: 11px;
                    }

                    .action-button.free-trial button,
                    .action-button.sign-in button {
                        width: 125px;
                    }

#main-content {
    background-color: #FFF;
}

    .main-content-inner {
        background-color: #FFF;
        margin: 0 auto;
        /*max-width: 1000px;*/
        overflow: hidden;
        position: relative;
        z-index: 900;
    }

.secondary-content-wrapper {
    margin: 0 auto;
    max-width: 900px;
    padding: 50px 15px 50px 30px;
}

#main-footer {
    background-color: #222325;
    color: #C7C6C6;
    font-size: 13px;
    margin: 0 auto;
    padding: 50px;
    position: relative;
    z-index: 950;
}

  .main-footer-content {
    margin: 0 auto;
    max-width: 935px;
    overflow: hidden;
  }    

    .main-footer-column {
      display: block;
      float: left;
      margin: 0 56px 20px 0;
      min-height: 250px;
      overflow: hidden;
    }

    .main-footer-column.our-company {
      margin-right: 56px;
    }

    .main-footer-column.whats-new {
        margin-right: 0;
        width: 200px;
    }

    .main-footer-content h4 {
      color: #FFF;
      font-size: 16px;
      font-weight: normal;
      margin: 0 0 10px 0;
    }

    .main-footer-nav {
      clear: both;
      display: block;
      overflow: hidden;
    }

      .main-footer-content ul {
        display: block;
        margin: 0 0 20px 0;
      }

      .main-footer-content ul li {
        list-style: none;
      }

      .main-footer-content ul li a {
        color: #C7C6C6;
        text-decoration: none;
      }

      .main-footer-content ul li a:hover,
	  .main-footer-content ul li a:focus {
        color: #2AA4D7;
        text-decoration: none;
      }

    .main-footer-info {
      display: block;
      overflow: hidden;
    }

      .footer-social-media,
      .footer-newsletter,
      .footer-partners {
        display: block;
        float: left;
        margin: 20px 0 0 0;
        overflow: hidden;
      }

      .footer-partners a {
        margin-right: 20px;
        text-decoration: none;
        vertical-align: top;
      }

      .footer-social-media {
        margin: 20px 50px 0 0;
      }

        .social-media-icon {
          display: block;
          float: left;
          height: 32px;
          margin: 5px 20px 10px 0;
          width: 32px;
        }

      .footer-newsletter {
        margin: 20px 75px 0 0;
        overflow: hidden;
      }

        .footer-field {
          display: block;
          float: left;
          margin: 3px 20px 0 0;
          overflow: hidden;
        }

        .footer-btn {
          display: block;
          float: left;
          margin: 2px 0 0 0;
          overflow: hidden;
        }

        .footer-newsletter input {
          width: 300px;
        }

      .footer-partners {
        margin: 28px 0 0 0;
      }

  .main-footer-copyright {
    display: block;
    font-size: 12px;
    margin: 45px 0 0 0;
  }

/* ---------------------------------- */
/* Secondary Master Page Layout */
/* ---------------------------------- */
.secondary-nav-error {
    background: url(../Images/template/bg_compass.jpg) no-repeat center center;
    background-size: cover;   
    height: 275px;
    -moz-background-size: cover;
    -o-background-size: cover;
    position: relative;
    -webkit-background-size: cover;
    z-index: 500;
}

  .secondary-nav-error h1 {
    font-size: 35px;
    padding: 38px 0 0 0;
  }

.secondary-nav-features {
    background: url(../Images/template/bg_features.jpg) no-repeat center center;
    background-size: cover;   
    -moz-background-size: cover;
    -o-background-size: cover;
    position: relative;
    -webkit-background-size: cover;
    z-index: 500;
}

.secondary-nav-pricing {
    background: url(../Images/template/bg_pricing.jpg) no-repeat center center;
    background-size: cover;   
    -moz-background-size: cover;
    -o-background-size: cover;
    position: relative;
    -webkit-background-size: cover;
    z-index: 500;
}

.secondary-nav-resources {
    background: url(../Images/template/bg_resources.jpg) no-repeat center center;
    background-size: cover;   
    -moz-background-size: cover;
    -o-background-size: cover;
    position: relative;
    -webkit-background-size: cover;
    z-index: 500;
}

.secondary-nav-customers {
    background: url(../Images/template/bg_customers.jpg) no-repeat center center;
    background-size: cover;   
    -moz-background-size: cover;
    -o-background-size: cover;
    position: relative;
    -webkit-background-size: cover;
    z-index: 500;
}

.secondary-nav-our-company {
    background: url(../Images/template/bg_ourcompany.jpg) no-repeat center center;
    background-size: cover;   
    -moz-background-size: cover;
    -o-background-size: cover;
    position: relative;
    -webkit-background-size: cover;
    z-index: 500;
}

    .secondary-nav-inner-content {
        margin: 0 auto;
        max-width: 1205px;
        overflow: hidden;
        padding-bottom: 40px;
        padding-top: 84px;
        position: relative;
        text-align: center;
        z-index: 950;
    }

        .secondary-nav-inner-content h1 {
            color: #FFF;
            font-weight: normal;
            margin: 25px 0 10px 0;
            text-transform: uppercase;
        }

        .secondary-nav-inner-content ul {
            display: block;
            margin: 0 auto;
            max-width: 1000px;
        }

        .secondary-nav-inner-content ul li {
            display: inline-block;
            list-style: none;
        }

        .secondary-nav-inner-content ul li a {
            color: #FFF;
            font-size: 18px;
            line-height: 35px;
            padding: 10px 15px;
            text-decoration: none;
        }

        .secondary-nav-inner-content ul li a:hover, .secondary-nav-inner-content ul li a:focus, .secondary-nav-inner-content li a.selected {
            color:#2AA4D7;
        }

.secondary-nav-fine-print {
  background: url(../Images/template/bg_fineprint.jpg) no-repeat center center;
    background-size: cover;   
    -moz-background-size: cover;
    -o-background-size: cover;
    position: relative;
    -webkit-background-size: cover;
    z-index: 500;
}

.simple-actions {
    background-color: #FFF;
    border-top: 1px solid #E8E8E8;
    display: block;
    position: relative;
    z-index: 900;
}

    .simple-actions-content {
        display: block;
        margin: 0 auto;
        max-width: 720px;
        overflow: hidden;
        padding: 50px 0 20px 0;
        position: relative;
        z-index: 900;
    }

    .simple-actions-content.connect {
      padding: 0 50px 50px 50px;
    }

        .simple-actions-text,
        .simple-actions-button {
            display: block;
            float: left;
        }

        .simple-actions-text {
            margin: 0 70px 20px 0;
        }

        .simple-actions-text span {
            color: #666;      
            display: inline-block;
            padding-top: 3px;     
        }

        .simple-actions-button {
            padding: 7px 0 0 0;
        }

        .simple-actions-button.connect {
          color: #2AA4D7;
          font-size: 25px;
          margin-top: -3px;
          padding: 0 0 0 76px;         
        }

.simple-actions h4 {
    font-size: 22px;
    font-weight: normal;
}

/* ---------------------------------- */
/* Home Page */
/* ---------------------------------- */

.main-banner {
    background: #090A0E url(../Images/template/image_mainbanner_seattle.jpg) no-repeat center;
    position: relative;
    height: auto;
    background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -webkit-background-size: cover;
    z-index: 500;
}

#main-banner-spacer {
	background-color: #FFF;
	height: 75px;
}

.main-banner-img,
.secondary-nav-img {
    display: none;
    left: 0;
    position: fixed;
    top: 0;
}

.bgwidth { width: 100%; }
.bgheight { height: 100%; }

.main-banner-content {
    margin: 0 auto;
    max-width: 1205px;
    overflow: hidden;
    padding: 80px 0 120px 0;
    position: relative;
    text-align: center;
    z-index: 700;    
}

    .main-banner-content h1 {
        color: #FFF;
        font-size: 50px;
        text-shadow: 1px 1px 0 rgba(0,0,0,1);
    }

    .main-banner-sub-content {
        color: #FFF;
        font-size: 22px;
        margin: 10px auto 0 auto;
        max-width: 800px;
        text-shadow: 1px 1px 0 rgba(0,0,0,1);
    }

    .main-banner-features {
        color: #FFF;
        margin: 10px auto 0 auto;
        text-shadow: 1px 1px 0 rgba(0,0,0,1);
    }

        .main-banner-features a {
            color: #FFF;
            text-decoration: none;
        }

        .main-banner-features a:hover, .main-banner-features a:focus {
            color: #2AA4D7;
        }

    .main-banner-headlines {
      display: block;
      /*margin: 40px 0 100px 0;*/
      /*margin: 40px 0 50px 0;*/ /* Switch back to 100px bottom if no headline available*/
      margin: 0 auto;
      max-width: 1205px;
      padding: 20px 20px 0 20px;
      text-align: right;
    }

      .main-banner-headlines a {
        /*float: right;*/
      }

    .main-banner-customer-logos {
        margin: 85px auto 0 auto;
        max-width: 1205px;
        overflow: hidden;
    }

        .logo-content-inner {
            float: right;
        }

        .logo-item {
            float: left;
            height: 75px;
            line-height: 90px;
            margin: 0 20px;
            overflow: hidden;
        }

            .logo-item.one {
                padding-top: 3px;
            }

            .logo-item.four {
                padding-top: 3px;
            }

    .client-logos {
      background-color: #FFF;
      background-image: url(../images/template/image_bannerclientbg.png);
      background-repeat: repeat-x;
      display: block;
      /*height: 108px; Add back when we remove EA2 section */
      position: relative;
      width: 100%;
      z-index: 500;
    }

      .client-logos-inner {
        display: block;
        margin: 0 auto;
        overflow: hidden;
        width: 815px;
      }

        .client-logo-item {
          display: block;
          float: left;
          line-height: 90px;
          margin: 0 25px 0;
        }

          .client-logo-item img {
            vertical-align: middle;
          }          

    .main-banner-action-buttons {
        display: block;
        margin: 25px auto 0 auto;
        width: 385px;
    }

        .main-banner-action-buttons button:first-child {
            margin-right: 20px;
        }

.home-section {
  color: #666;
  font-size: 18px;
}

.home-section h2 {
  color: #333;
  font-size: 25px;
  line-height: 30px;
  margin-bottom: 15px;
}

/* #region Section Startup Wizard promo */

.sectionWizardPreview {
	position: relative;
    background: url(../images/template/Home-Page-Wizard-Promo_vBackground.jpg) no-repeat center center #090A0E;
    background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -webkit-background-size: cover;
    overflow: hidden;
}

	.sectionWizardPreviewContent {
		margin: 0 auto;
		max-width: 975px;
		overflow: hidden;
		padding: 45px 0;
	}

	.wizardPreviewImage {
		float: left;
		margin: 0 60px 0 60px;
		padding: 0 0 0 0;
	}
		.wizardPreviewImage .wizardPreviewImageBox {
			position: relative;
			height: 210px;
			width: 342px;
		}
			.wizardPreviewImage .wizardPreviewImageBox .shadow {
				position: absolute;
				top: 3px;
				left: 28px;
				width: 287px;
				height: 206px;
				box-shadow: 0 0 50px #079;
				background-color: transparent;
			}
			.wizardPreviewImage .wizardPreviewImageBox img {
				display: none;
				position: absolute;
				top: 0;
				left: 0;
			}

	.wizardPreviewText {
		float: left;
		margin: 0 0 0 0;
		max-width: 500px;
		color: #FFF;
	}
		.wizardPreviewText h2 {
			color: #70D5FF;
		}
		.wizardPreviewText .wizardPreviewMessage {
		}

/* #endregion Section Startup Wizard promo */

/* --- Section YouTube Video --- */
.section-video {
    position: relative;
    background: url(../images/template/Home-Page-Wizard-Promo_vBackground.jpg) no-repeat center center #090A0E;
    background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -webkit-background-size: cover;
    overflow: hidden;
}

.section-video-content {
    margin: 0 auto;
    max-width: 960px;
    overflow: hidden;
    padding: 30px 0;
}

.video-image {
    float: left;
    margin: 0 60px 0 20px;
    width: 480px;
    height: 270px;
    padding: 0 0 0 0;
}

.video-text {
    float: left;
    margin: 7px 0 0 0;
    max-width: 400px;
    color: #FFF;
}

.video-text h2 {
    color: #70D5FF;
}

/* --- Section High Ed Web --- */
.section-hiedweb {
  background-color: #F2F3F5;
  position: relative;
}

  .section-hiedweb-content {
    margin: 0 auto;
    max-width: 975px;
    overflow: hidden;
    padding: 35px 0;
  }

    .hiedweb-image {
      float: left;
      margin: 0 35px 0 170px;
      padding: 0 0 0 0;
    }

    .hiedweb-text {
      float: left;
      margin: 7px 0 0 0;
      max-width:490px;
    }


/* --- Section Overview --- */
.section-overview {
  display: block;
  /*height: 450px;*/
  margin: 0 auto;
  max-width: 1205px;
  overflow: hidden;
  padding: 35px 60px 0 60px;
  text-align: center;
}

  .section-overview-text {
      margin: 0 auto;
      max-width: 900px;
  }

  .section-overview-text h2 {
    color: #333;
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 35px;
  }

  .overview-site-examples {
      display: block;
      height: 330px;
      margin: 15px auto 0 auto;
      overflow: hidden;
      max-width: 1093px;
  }

  .overview-site-examples-mobile {
      display: none;
  }

    .web-edmonton {
        margin: 0 0 0 264px;
        position: relative;
        width: 562px;
        z-index: 500;
    }

    .web-sparrow {
        float: left;
        margin: -285px 0 0 0;
        position: relative;
        z-index: 490;
    }

    .web-colorado-state {
        float: right;
        margin: -285px 0 0 0;
        position: relative;
        z-index: 490;
    }

/* --- Section Publish --- */
.section-publish {
    background: url(../Images/template/image_laptopdesk.jpg) no-repeat center center #090A0E;
    background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    overflow: hidden;
    position: relative;
    -webkit-background-size: cover;
    z-index: 500;
}

  .section-publish h2 {
    color: #70D5FF;
  }

  .section-publish-content {
    margin: 0 auto;
    max-width: 1025px;
    overflow: hidden;
    padding: 75px 0;
  }

    .publish-text {
      color: #FFF;
      float: right;
      max-width: 500px;
      padding: 10px 20px 20px 20px;
    }

/* --- Section Event Registration --- */
.section-event-reg {
  margin: 0 auto;
  max-width: 1025px;
  position: relative;
}

  .section-event-reg-content {
    float: left;
    overflow: hidden;
    padding: 61px 0;
  }

    .event-reg-text {
      float: left;
      max-width: 500px;
      padding: 20px;
    }

  .event-reg-image {
    background: url(../Images/template/image_womanlaptop.png) no-repeat;
    float: left;
    height: 426px;
    left: 406px;
    overflow: hidden;
    position: relative;
    margin-top: -405px;
    width: 906px;
    z-index: 725;
  }

/* --- Section Mobile --- */
.section-mobile {
  background-color: #F2F3F5;
  position: relative;
}

  .section-mobile-content {
    margin: 0 auto;
    max-width: 975px;
    overflow: hidden;
    padding: 45px 0;
  }

    .mobile-image {
      float: left;
      margin: 0 35px 0 60px;
      padding: 15px 0 0 0;
    }

    .mobile-text {
      float: left;
      margin: 45px 0 0 0;
      max-width:476px;
    }

/* --- Section Social Media --- */
.section-social {
  position: relative;
  margin: 0 auto;
  max-width: 1180px;
}
.section-social-content {
    margin: 0 auto;
    max-width: 840px;
    overflow: hidden;
    padding: 55px 15px;
}

  .section-info {
    display: block;
    float: left;    
    padding: 20px;
    text-align: center;
    max-width: 315px;
  }

    .section-info.connect {
        margin-right:110px
    }
    .section-info.custom-objects {
        max-width: 330px;
    }

  .section-info.custom-objects .section-text {
    display: block;
  }

    .section-text {
      font-size: 14px;
      margin: 0 0 20px 0;
    }

    .section-text h2 {
      color: #2AA4D7;
      font-size: 18px;
      line-height: 25px;
      margin: 0 auto 15px auto;
      max-width: 175px;
    }

    .section-icon {      
      background-image: url(../Images/template/icons_benefits.png);
      background-repeat: no-repeat;
      display: block;
      height: 54px;
      margin: 0 auto 15px auto;
      overflow: hidden;
      width: 58px;

      /*border: 1px solid red;*/
    }

      .section-icon.social-media {
        
      }

      .section-icon.connect {
        background-position: -67px 0;
      }

      .section-icon.custom-objects {
        background-position: -134px 0;
      }

/* --- Section Calendar Experts --- */
.section-calendar-exp {
    background: url(../Images/template/image_womantyping.jpg) no-repeat center center #090A0E;
    background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    overflow: hidden;
    position: relative;
    -webkit-background-size: cover;
    z-index: 500;
}

  .section-calendar-exp h2 {
    color: #70D5FF;
  }

  .section-calendar-exp-content {
    margin: 0 auto;
    max-width: 600px;
    overflow: hidden;
    padding: 75px 0;
    text-align: center;
  }

    .calendar-exp-text {
      color: #FFF;
      padding: 15px;
    }

/* --- Section Actions --- */
.section-actions {
  position: relative;
  margin: 0 auto;
  max-width: 1025px;
}

  .section-actions-content {
    padding: 55px 15px;
    margin: 0 auto;
    max-width: 840px;
    overflow: hidden;
    text-align: center;
  }

    .section-action-info {
      float: left;
      max-width: 350px;
      padding: 20px 0;
    }

    .section-action-info.schedule {
      margin-right: 140px;
    }

      .section-action-text {
        margin-bottom: 25px;
      }

/* --- Section Testimonials --- */
.section-testimonials {
  background: url(../Images/template/image_patternshatter.png) repeat center center fixed #FFF;
  overflow: hidden;
  position: relative;
  z-index: 500;

  min-height: 400px;
}

  .section-testimonials-content {
    padding: 55px 15px;
    margin: 0 auto;
    max-width: 1025px;
    overflow: hidden;
  }

    .testimonials-slider {
      display: block;
      float: left;
      height: 370px;
      margin-left: 15px;
      overflow: hidden;
      width: 625px;
    }

    .testimonials-slider .controls {
        display: block;
        margin: -270px 0 0 0;
    }

    .testimonials-slider .controls .next,
    .testimonials-slider .controls .prev {
        cursor: pointer;
        background-repeat: no-repeat;
        display: block;
        height: 28px;
        width: 20px;
    }

    .testimonials-slider .controls .next {
        background-image: url(../images/template/icon_arrowright.png);
        float: right;
    }

    .testimonials-slider .controls .prev {
        background-image: url(../images/template/icon_arrowleft.png);
        float: left;
    }

    .testimonials-slider .carousel-wrapper {
        display: block;
        margin-left: 33px;
        overflow: hidden;
        position: relative;
        width: 560px;
    }

        .testimonials-slider .carousel-wrapper .carousel-inner-content {
            display: block;
            position: relative;
            z-index: 500;
        }

            .testimonials-slider .carousel-wrapper .carousel-inner-content ul {
                display: block;
                margin: 0;
                padding: 0;
            }

            .testimonials-slider .carousel-wrapper .carousel-inner-content ul li {
                display: block;
                float: left;
                list-style: none;
            }

        .testimonials-slider-wrapper {
            background-color: #FFF;
            display: table;
            height: 200px;
            margin: 15px 40px 0 0;
            overflow: hidden;
            width: 560px;
        }           

          .slider-quote {
            background-image: url(../Images/template/icon_sliderquotation.png);
            background-repeat: no-repeat;
            display: block;
            height: 100px;
            margin: 15px;
            overflow: hidden;
            position: absolute;
            width: 60px;
          }

          .slider-text {
            display: table-cell;
            font-size: 14px;
            height: 200px;
            margin: 0 40px;
            padding: 0 40px;
            position: relative;
            vertical-align: middle;
            /*top: 50%;
            transform: translateY(-50%);*/
          }

        .testimonials-slider-bubble {
            background-image: url(../Images/template/image_bubblepoint.png);
            background-position: bottom left;
            background-repeat: no-repeat;
            height: 38px;
            margin: 0 0 0 65px;
            overflow: hidden;
            width: 33px;
        }

        .testimonials-slider-author {
            color: #333;
            display: block;
            font-size: 15px;
            overflow: hidden;    
            padding: 15px 0 30px 14px;        
        }

            .author-logo,
            .author-info {
                display: block;
                float: left;
                overflow: hidden;
            }

            .author-logo {
               line-height: 43px;
               margin: 0 20px 0 0;
               text-align: right;
            }

            .author-logo img {
                vertical-align: middle;
            }

        .testimonials-slider-index {
          display: block;
          margin: 0 0 0 47px;
          overflow: hidden;
          width: auto;
        }

          .slider-index {
            background-color: #C6C7C7;
            display: block;
            height: 10px;
            float: left;
            margin-right: 2px;
            overflow: hidden;
            width: 105px;
          }

          /*.slider-index:hover,*/
          .slider-index.selected {
            background-color: #2AA4D7;
          }


    .testimonials-customers {
      display: block;
      float: left;
      margin: 0 0 0 20px;
      padding: 25px 0 0 0;
      width: 350px;
    }

        .testimonials-customer-logo {
            display: block;
            float: left;
            height: 90px;
            line-height: 90px;
            margin: 0 0 0 40px;
            overflow: hidden;
            text-align: center;
            width: 135px;
        }

        .testimonials-customers a.see-more {
            display: block;
            margin: 20px 0 10px 50px;
            overflow: hidden;
            text-decoration: none;
        }

        .testimonials-customer-logo.frick img {
            margin-top: -3px;
        }

        .testimonials-customer-logo img {
            vertical-align: middle;
        }

/* ---------------------------------- */
/* Featurs Section */
/* ---------------------------------- */

/* --- Features Overview --- */
.features-wrapper {
    display: block;
    margin: 0 auto 20px auto;
    max-width: 1025px;
    overflow: hidden;
}

    .features-section {
        display: block;
    }

        .features-section h2 {
            margin: 25px 0;
        }

    .features-items-wrapper {
        display: block;        
    }

        .features-section .features-icon {
            background-repeat: no-repeat;
            display: block;
            height: 32px;
            width: 32px;
        }

        .features-section.calendars .features-icon {
            background-image: url(../images/template/icon_calendar.png);            
        }

        .features-section.publishing .features-icon {
            background-image: url(../images/template/icon_book.png);  
        }

        .features-section.event-mgmt .features-icon {
            background-image: url(../images/template/icon_list.png);  
        }

        .features-section.mobile .features-icon {
            background-image: url(../images/template/icon_wifi.png);  
        }

        .features-section.event-actions .features-icon {
            background-image: url(../images/template/icon_reminder.png);  
        }

        .features-section.email .features-icon {
            background-image: url(../images/template/icon_email.png);  
        }

        .features-section.acct-mgmt .features-icon {
            background-image: url(../images/template/icon_users.png);  
        }

        .features-items-wrapper .features-item:nth-child(odd) {
            margin-right: 60px;
        }

        .features-item {
            display: block;
            float: left;
            overflow: hidden;
            height: 100px;
            width: 420px;
        }       

            .features-icon {
                display: inline-block;
                float: left;
                margin: 5px 20px 0 0;
            }

            .features-text {
                display: inline-block;
                float: left;
                width: 365px;
            }

                .features-text h3 {
                    color: #36B0E3;
                }

                .features-text h3 a {
                    text-decoration: none;
                }

/* ---------------------------------- */
/* Pricing Section */
/* ---------------------------------- */

/* --- Pricing Overview --- */
.pricing-hide {
    
}

.pricing-features-label {
    width: 320px;
}

.pricing-features-wrap {
    white-space: nowrap;
}

h3.pricing {
  color: #DC0C25;
  font-size: 13px;
}

.mobile-pricing {
  display: none;
}

.mobile-pricing.page-views {
  font-size: 12px;
  margin-top: -20px;
}

.pricing-left-align {
  text-align: left;
}

.pricing-right-align {
  text-align: right;
}

/* --- Contact Sales --- */
.contact-sales-form {
  
}

/* ---------------------------------- */
/* Customers Section */
/* ---------------------------------- */

/* --- Our Customers --- */
.customer-filter-wrapper {
  display: block;
  margin: 10px 0 0 0;
  overflow: hidden;
}

  .industry-filter {
    display: block;
    float: left;
    margin: 0 10px 10px 0;
    width: 300px;
  }

  .search-filter {
    display: block;
    float: left;
    width: 200px;
  }

  .filter-label {
    color: #2AA4D7;
    font-weight: bold;
  }

/* --- Customer Snapshots / Testimonials --- */
.snapshot-wrapper, .testimonials-wrapper {
  display: block;
}

  .snapshot-row, .testimonial-row {
    display: block;
    overflow: hidden;
    margin: 20px 0 0 0;
  }

  .snapshot-row h3, .testimonial-row h3 {
    color: #2AA4D7;
  }

  .snapshot-logo, .testimonial-logo {
    display: block;
    float: left;
    margin: 10px 0 0 0;
    min-width: 300px;
    text-align: center;
  }

  .snapshot-desc, .testimonial-desc {
    display: block;
    float: left;
    max-width: 550px;
  }

  .testimonial-info {
    display: block;
    margin: 10px 0 0 0;
    text-align: right;
  }

    .testimonial-author {
      font-weight: bold;
    }

/* Page Thumbnails */
.page-left {
  display: block;
  float: left;
  overflow: hidden;
  margin-right: 30px;
  width: 580px;
}

.page-left.mobile {
  width: 700px;
}

.page-left.bottom {
  margin-bottom: 60px;
}

.clear.mobile {
  display: none;
}

.page-thumbnails-wrapper {
  /*background-color: #e5e5e5;*/
  display: block;
  /*margin: 55px 0 0 0;*/
  /*padding: 20px 20px 5px 32px;*/
  overflow: hidden;
}

  .page-thumbnails-wrapper.event-registration {
    display: block;
  }

  .page-thumbnails-wrapper.event-registration.payments{
    display: block;
    text-align: center;
  }

  .page-thumbnail-item {
    display: block;
    float: left;
    margin: 0 15px 20px 0;
    overflow: hidden;
    vertical-align: middle;
  }

	.page-thumbnail-item.withBorder {
		border: solid 1px #CCC;
	}

    .page-thumbnail-item.hide {
      display: none;
    }

  .page-thumbnail-item a {
    display: block;
    /*line-height: 325px;*/
    overflow: hidden;
  }

  .page-thumbnail-item img {
    /*border: 1px solid #DDD;*/
    vertical-align: middle;
    max-width: 300px;
    /*width: 195px;*/
    /*height: 210px;*/
  }

/* ---------------------------------- */
/* Resources Section */
/* ---------------------------------- */

/* --- FAQs --- */
.faq-wrapper {
  display: block;
  margin: 20px 0;
}

  .faq-item {
    display: block;
  }

    .faq-question {
      cursor: pointer;
      display: block;
    }

      .faq-indicator {
        display: block;
        float: left;
        margin: 0 5px 0 0;
      }

        .faq-arrow {  
          background-repeat: no-repeat;
          background-position: center center;
          cursor: pointer;
          display: block;
          height: 25px;
          width: 15px;
        }

        .faq-arrow.right {
          background-image: url(../images/template/icon_arrowright_small.png);
        }

        .faq-arrow.down {
          background-image: url(../images/template/icon_arrowdown_small.png);
        }

      .faq-question-text {
        color: #2AA4D7;
        display: block;
        /*float: left;*/
        font-weight: bold;
        margin: 3px 0 0 0;
        overflow: hidden;
        padding: 3px 0 0 0;
      }

  .faq-answer {
    display: none;
    margin: 10px 0 0 20px;
  }

  .faq-answer.single {
    padding: 0 0 15px 0;
  }

.faq-summary {
  margin: 20px 0 0 0;
}

/* Download Center */
.pdf-wrapper {
  display: block;
  text-wrap: initial;
}

  .pdf-item {
    display: block;
    margin: 0 0 5px 0;
    overflow: hidden;
  }

    .pdf-icon {
      display: block;
      float: left;
      margin: 0 10px 0 0;
    }

      .pdf-icon img {
        display: block;
        margin: 3px 0 0 0;
      }

    .pdf-link {
      display: block;
      overflow: hidden;
    }

/* --- Paragraph Spacing --- */
.content-wrapper-t-page {
  min-height: 300px;
}

.content-wrapper p,
.billing-faq-wrapper p,
.press-release-wrapper p,
.security-wrapper p,
.spud-gallery-wrapper p,
.white-paper-wrapper p,
.why-trumba-wrapper p,
.referral-wrapper p,
.terms-wrapper p,
.privacy-wrapper p,
.saas-wrapper p,
.services-wrapper p,
.pricing-wrapper p {
  margin: 0 0 20px 0;
}

.saas-wrapper h3 {
  color: #000;
}

.why-trumba-wrapper sup {
  font-size: 11px;
}

/* --- Press Releases --- */
.press-release-wrapper h2 {
  margin: 0 0 15px 0;
}
.press-release-wrapper h6 {
  font-size: 14px;
}

/* --- Newsletter --- */
.newsletter-form {
  display: block;
  margin: 10px 0 0 0;
}

  .newsletter-input {
    display: block;
    float: left;
    margin: 1px 0 0 0;
    width: 300px;
  }

  .newsletter-submit {
    display: block;
    float: left;
    margin: 0 0 0 40px;
  }

.newsletter-safe-subscribe {
  display: block;
  margin: 5px 0 0 0;
}

.newsletter-marketing-desc {
  color: #999;
  display: block;
  font-size: 10px;
  margin: 0 0 0 1px;
}

/* --- Spud Gallery --- */
.spud-gallery-wrapper {
  display: block;
  overflow: hidden;
}

.spud-gallery-wrapper sup {
  font-size: 8px;
}

  .spud-gallery-left {
    display: block;
    float: left;
    margin: 0 30px 0 0;
    width: 540px;
  }

    .spud-gallery-date-icon {
      margin: 20px auto 10px auto;
      width: 280px;
    }

  .spud-gallery-right {
    display: block;
    float: left;
    
  }

    .spud-gallery-right-top {
      display: block;
    }

  .spud-gallery-right-bottom-left {
    display: block;
    float: left;
  }

  .spud-gallery-photo {
    width: 325px;
  }

  .spud-gallery-bottom-text {
    margin: 20px 0 0 0;
  }

  .spud-gallery-slider {
    padding: 0 50px;
  }

/* --- Our Company --- */
.profile-item {
  display: block;
  overflow: hidden;
}

  .profile-image {
    display: block;
    float: left;
    height: 175px;
    margin: 10px 15px 0 0;
  }

    .profile-image img {
      border: 1px solid #666;
    }

  .profile-desc {
    display: block;
    margin-top: 5px;
  }

/* --- Simple Layout Styles --- */
#simple .main-logo {
    margin: 10px 0 0 20px;
}

#simple .secondary-content-wrapper {
  /*padding-top: 110px;*/
}

/* --- t.aspx styles --- */
/*.register-form-wrapper .input-group {
  padding-bottom: 10px;
}*/
.formfields p {
    font-size: inherit;
}

.btn-continue {
  margin: 10px 0;
}

.t-page-left {
  display: block;
  float: left;
  margin: 0 0 30px 0;
  padding: 0 30px 0 0;
  width: 75%;
}

.t-page-right {
  display: block;
  float: left;
  margin: 0 0 30px 0;
  text-align: center;
  width: 20%;
}

.steps-wrapper {
  border-left: 1px solid #E5E5E5;
  display: block;
  float: left;
  text-align: center;
  width: 300px;
}

  .steps-wrapper ul {
    display: block;
  }

    .steps-wrapper ul li {
      display: block;
      list-style: none;
      margin: 0 0 20px 0;
    }

    .step-active {
      color: #000;
    }

    .step-normal {
      color: #333;
    }

    .step-disabled {
      color: #999;
    }

    .step-num {
      color: #2AA4D7;
      font-size: 30px;
      font-weight: bold;
    }

    .step-num-active {
      color: #DC0C25;
    }

    .step-num-disabled {
      color: #999;
    }

.lombardi-trophy {
  display: none;
  margin-left: 90px;
  margin-top: -105px;
  position: absolute;
}

  .lombardi-trophy img {
    height: 60px;
  }

/* ---------------------------------- */
/* Verticals */
/* ---------------------------------- */
.main-wrapper-vertical {
}

.btn-vertical {
  width: 175px;
}

/*------- Higher Ed ------- */
.home-section.vertical {
  margin-top: 90px;
}

.home-section.vertical h2 {
  font-size: 30px;
  line-height: 35px;
}

.btn-large {
  padding: 15px 20px;
}

/* --- Higher Ed - Demonstrate ---*/
.section-demonstrate {
    background: url(../Images/template/image_graduation.jpg) no-repeat center center #090A0E;
    background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    overflow: hidden;
    position: relative;
    -webkit-background-size: cover;
    z-index: 500;
}

  .section-demonstrate h2 {
    color: #FFF;
  }

  .section-demonstrate-content {
    margin: 0 auto;
    max-width: 1025px;
    overflow: hidden;
    padding: 50px 0;
  }

    .demonstrate-text {
      color: #FFF;
      max-width: 1025px;
      padding: 10px 20px;
      text-align: center;
    }

/* --- Higher Ed - Schedule ---*/
.section-schedule {
    overflow: hidden;
    position: relative;
    z-index: 500;
}

  .section-schedule h2 {
    color: #d30f1d;
    margin-bottom: 5px;
  }

  .section-schedule-content {
    margin: 0 auto;
    max-width: 1025px;
    overflow: hidden;
    padding: 35px 0 65px 0;
  }

    .schedule-text {
      color: #666;
      max-width: 1025px;
      padding: 10px 20px;
      text-align: center;
    }

      .schedule-text-inner {
        display: block;
        margin: 0 0 50px 0;
        overflow: hidden;
      }

/* --- Higher Ed - Info ---*/
.section-edu-info {
    background-color: #F2F3F5;
    overflow: hidden;
    position: relative;
    z-index: 500;
}

  .section-edu-info h2 {
    color: #333;
    margin-bottom: 5px;
  }

  .section-edu-info-content {
    margin: 0 auto;
    max-width: 1025px;
    overflow: hidden;
    padding: 50px 20px 60px 20px;
  }

    .edu-info-text {
      color: #666;
      max-width: 1025px;
      padding: 10px 20px;
    }

    .edu-info-overview{
      display: block;
      margin: 0 0 20px 0;
      overflow: hidden;
    }

    .edu-info-why {
      display: block;
      margin: 0 0 30px 0;
      overflow: hidden;
    }

/* --- Higher Ed - Helps Univ ---*/
.section-helps-univ {
    background: url(../Images/template/image_books2.jpg) no-repeat center center #090A0E;
    background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    overflow: hidden;
    position: relative;
    -webkit-background-size: cover;
    z-index: 500;
}

  .section-helps-univ h2 {
    color: #FFF;
  }

  .section-helps-univ-content {
    margin: 0 auto;
    max-width: 1025px;
    overflow: hidden;
    padding: 50px 20px 70px 20px;
  }

    .helps-univ-text {
      color: #FFF;
      float: left;
      max-width: 575px;
      padding: 10px 20px;
    }

    .helps-univ-points {
      margin: 0 0 20px 0;
    }

    .helps-univ-points ul li {
      list-style-type: square;
      margin: 0 0 0 18px;
    }

    .helps-univ-student {
      display: block;
      float: right;
      margin: -100px 0 0 600px;
      position: absolute;
    }

/* --- Higher Ed - Universities ---*/
.section-universities {
    overflow: hidden;
    position: relative;
    z-index: 500;
}

  .section-universities h2 {
    color: #2AA4D7;
    margin-bottom: 5px;
  }

  .section-universities-content {
    margin: 0 auto;
    max-width: 1025px;
    overflow: hidden;
    padding: 35px 0 0 0;
  }

    .universities-text {
      color: #666;
      max-width: 1025px;
      padding: 10px 20px;
      text-align: center;
    }

      .universities-text-inner {
        display: block;
        margin: 0 0 50px 0;
        overflow: hidden;
      }

    .university-logos {
      display: block;
      margin: 0 auto;
      overflow: hidden;
      text-align: center;
      width: 900px;
    }

      .university-logos-row {
        display: block;
        margin: 20px auto;
        overflow: hidden;
        width: 843px;
      }

      .university-logos-row:first-child {
        width: 647px;
      }

        .university-logo-item {
          display: block;
          float: left;
          margin: 10px 20px;
        }

          .university-logo-item.tufts {
            padding-top: 2px;
          }

          .university-logo-item.colorado {
            padding-top: 7px;
          }

          .university-logo-item.tamiu {
            padding-top: 5px;
          }

          .university-logo-item.pepperdine {
            padding-top: 8px;
          }

.seeMore{ display: block; float: left; margin: 32px 0 20px; height: 35px; }
.seeMore .leftDivider, .seeMore .rightDivider{ display: block; float: left; border-top: 0 solid #CCC; width: 271px; height: 35px; margin-top: 17px; }
.seeMore .leftDivider{ margin-right: 20px; }
.seeMore .rightDivider{ margin-left: 20px; }
.seeMore .middleInfo{ display: block; position: relative; float: left; font-size: 14px; background-image: url(../images/highered/bg_seemore.png); background-repeat: no-repeat; width: 397px; height: 35px; color: #FFF; text-align: center; padding-top: 7px; cursor: pointer; }
.seeMore .clickHere{ display: none; width: 200px; margin: 0 auto; margin-top: 10px; text-transform: uppercase; color: #666; text-align: center; }
.seeMore .clickHere a{ color: #333; }
.seeMore .clickHere a:hover{ color: #666; }
.seeMore .middleInfo .gradCap{ display: block; position: absolute; background-image: url(../images/highered/icon_gradcap.png); background-repeat: no-repeat; width: 73px; height: 49px; top: -36px; left: 161px; }

/* --- Higher Ed - Testimonials --- */
.section-highered-testimonials {
  background: url(../Images/template/image_patternshatter.png) repeat center center fixed #FFF;
  overflow: hidden;
  position: relative;
  z-index: 500;
  min-height: 400px;
}

  .section-highered-testimonials-content {
    padding: 55px 15px;
    margin: 0 auto;
    max-width: 1025px;
    overflow: hidden;
    padding: 10px 15px 47px;
  }

.section-actions-edu {
  border-bottom: 1px solid #E5E5E5;
}

/* --- Higher Ed - InCommon ---*/
.section-actions-incommon {
  color: #FFF;
}

.inCommon .icon{ display: block; margin: 0 0 20px 0; }
.inCommon .icon img { width: 75px; }
.inCommon .info{ display: block; font-size: 13px; }

/* --- Privacy Policy --- */

.privacy-wrapper h3,
.privacy-wrapper h4 {
	margin-bottom: 10px;
}
