/*******************************************************************************
 * style.scss
 *
 * This file shouldn't directly contain any SCSS code, instead it only serves to
 * combine the SCSS contained in other Sass partials through @import directives.
 *
 * BASE............Styling for common HTML and Drupal elements.
 * LAYOUT..........Styles for the page structure that contain components.
 * COMPONENTS......Components, their modifiers and sub-components.
 ******************************************************************************/
/*******************************************************************************
 * _utils.scss
 *
 * Sass offers come very useful features, these include variables functions and
 * mixins. Extensions such as Compass and Susy can also be used to provide extra
 * functions and mixins to be used throughout the theme. This file acts as a
 * single place for defining these things, which can then be accessed by
 * importing _utils.scss where required. The following should be defined in this
 * file:
 * - Custom Sass mixins for the theme.
 * - Custom Sass functions for the theme.
 * - Overriding the default variables provided by extensions such as Compass.
 * - Defining new variables for:
 *      - Colors.
 *      - Font sizes and families.
 *      - Layout and grid sizing.
 ******************************************************************************/
/*******************************************************************************
<<<<<<< HEAD
 * _base.scss
 *
 * Base styles define the default look for HTML and common Drupal elements.
 *
 * These rules will generally be made up of element selectors for HTML elements
 * such as headings, paragraphs and lists. Common Drupal elements such as form
 * items, collapsible fieldsets and messages should be included in this partial.
 *
 * The styleguide module (http://drupal.org/project/styleguide) gives you a good
 * overview of Drupal's common elements for styling. By setting a solid baseline
=======
 * _base.scss 

 * Base styles define the default look for HTML and common Drupal elements. 
 *
 * These rules will generally be made up of element selectors for HTML elements
 * such as headings, paragraphs and lists. Common Drupal elements such as form 
 * items, collapsible fieldsets and messages should be included in this partial.
 *
 * The styleguide module (http://drupal.org/project/styleguide) gives you a good
 * overview of Drupals common elements for styling. By setting a solid baseline
>>>>>>> sandbox/7.x-4.x
 * before adding any more specific customisations you ensure that as any new
 * features are added they will be correctly styled without any extra work.
 ******************************************************************************/
/*******************************************************************************
 * _layout.scss
 *
 * The layout of the major regions (usually, but not necessarily Drupal regions)
 * that components will be placed within. Layout styles for the theme's
 * components should not be placed here and should instead be kept with the
 * relevant SCSS for that component.
 ******************************************************************************/
/*******************************************************************************
 * _components.scss
 *
 * Imports more partials that contain full components (modules in SMACSS), their
 * sub-components and modifiers.
 *
 * Components are discrete parts of your page that should sit within the regions
 * of your layouts. You should try to abstract your components as much as
 * possible to promote reuse throughout the theme. Components should be flexible
 * enough to respond to any width and should never rely on context
 * (e.g. .sidebar-first .component) for styling. This allows modules to be
 * placed throughout the theme with no risk of them breaking.
 *
 * If you find you need to change the look of a component depending on it's
 * context you should avoid using context based classes at all costs. Instead it
 * is better to add another "modifier" class to the component to alter the
 * styling. Again, this promotes reuse.
 *
 * Sub-components are the individual parts that make up a component. As a
 * general rule, adding a class to target a sub-component is a much better
 * option than using descendant selectors or element selectors. In many cases
 * sub-components can be made more reusable by making them components in their
 * own right, so they can then be used within other components.
 *
 * Almost everything that doesn't belong in base should be made a component.
 * Here's some common examples throughout Drupal:
 *
 * - Blocks
 * - Content Types - For example, you may have a generic node component that
 *      contains sub-components for the submitted by line and links. Specific
 *      components can then be created for each content type to style the
 *      specifics of each. Finally, by using entity view modes you can easily
 *      apply modifications based on the .node-[view-mode] classes.
 * - Forms - For instance the log in form.
 * - Views - Each views output style could be made into a component, the content
 *       of each row should be provided my a view mode styled by it's component
 *       CSS. Exposed filter forms, views pagers and other views elements are
 *       also good candidates for components.
 ******************************************************************************/

@font-face
{
	font-family: cdpFont;
	src: url(cdpFont.woff.html);
}

.block--menu-menu-footer-menu ul a {
    color: #626262;
    font-weight: 300;
}

.block--menu-menu-footer-menu ul li {
    display: inline-block;
    margin-left: 20px;
}

.block--block-1 {
    float: left
}

nav.block--menu-menu-footer-menu {
    text-align: right;
}

aside.sidebar .block .block__title {
    font-size: 20px;
    font-weight: 200;
    box-sizing: border-box;
    margin: 0px;
    padding: 15px 18px;
    direction: ltr;
    color: #3e9d46;
    text-rendering: optimizelegibility;
    line-height: 1.25;
    background: -webkit-linear-gradient(#fafafa 50%, #f1f1f1);
    background: -o-linear-gradient(#fafafa 50%, #f1f1f1);
    background: -moz-linear-gradient(#fafafa 50%, #f1f1f1);
    background: linear-gradient(#fafafa 50%, #f1f1f1);
}

aside.sidebar .block {
    box-sizing: border-box;
    margin-bottom: 1.42857em;
    -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 3px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 3px;
    border-top-left-radius: 0.28571em;
    border-top-right-radius: 0.28571em;
    border-bottom-right-radius: 0.28571em;
    border-bottom-left-radius: 0.28571em;
    color: rgb(59, 59, 59);
    font-size: 14px;
    line-height: 14px;
    margin-top: 70px;
    border: 1px solid #ccc;
}

aside.sidebar .menu-block-1 ul {
    margin: 0;
    list-style: none;
}

aside.sidebar .menu-block-1 ul>li {
    margin: 0;
    font-size: 13px;
    line-height: 20px;
}

aside.sidebar .menu-block-1.menu-block-wrapper {
   background: linear-gradient(#fafafa 50%, #f1f1f1);
}

aside.sidebar .menu-block-1 ul a {
    border-top: 1px dashed rgb(233, 233, 233);
    display: block;
    color: rgb(85, 85, 85);
    padding: 0.71429em 1.42857em;
}

aside.sidebar .menu-block-1 ul>li.active a {
    color: rgb(182, 10, 68);
}

nav.block--system-main-menu {
    float: right;
    margin-bottom: 0px !important;
}

.block--stv-site-stv-user-login .block__content a {
    font-size: 14px !important;
    color: #555;
    font-family: cdpFont,"Myriad Pro",Tahoma,Arial;
    font-weight: 300;
    line-height: 24px;
    text-shadow: none;    
    margin: 0;
    width: 5.71429em;
    box-shadow: none;
    z-index: 100;
    position: relative;
    text-transform: uppercase;
    padding: 6px 15px;
}

.block--stv-site-stv-user-login {
  margin-top:33px;
  margin-bottom: 0px !important;
}

.block--stv-site-stv-user-login .block__content a:hover {
  background-color: #444;
  -webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2),inset 0 1px 0 rgba(0,0,0,0.05);
  -moz-box-shadow:0 5px 10px rgba(0,0,0,0.2),inset 0 1px 0 rgba(0,0,0,0.05);
  box-shadow:0 5px 10px rgba(0,0,0,0.2),inset 0 1px 0 rgba(0,0,0,0.05);
  -webkit-border-radius:3px 3px 0 0;
  -moz-border-radius:3px 3px 0 0;
  -ms-border-radius:3px 3px 0 0;
  -o-border-radius:3px 3px 0 0;
  border-radius:3px 3px 3px 3px;
  color: #27bfef;
}

.block--stv-site-stv-user-login .block__content a:hover {
  color: #27bfef;
}

#banner div.field--name-field-text {
    width: 500px;
    color: #ffffff;
    line-height: 1.5;
    font-weight: normal;
    padding-top: 55px;
    position: absolute;
    margin-left: 420px;
    font-size: 18px;
}

#banner .block {
    margin-bottom: 0;
}



.panels-flexible-region-1-center a, .panel-col a {
    color: rgb(204, 6, 141);
}
.panels-flexible-region-1-center_right a, .panel-col-last a {
    color: rgb(4, 158, 4);
}

.panel-panel h2 {
    font-size: 20px;
}

fieldset legend {
    background: none !important;
}

#user-register-form label, .node--webform--full label {
    color: #373639;
    clear: left;
    text-align: right;
    padding-top: 12px;
    position: relative;
    padding-left: 0.71429em;
    padding-right: 0.71429em;
    width: 25%;
    float: left;
    font-weight: normal;
}

#user-register-form input[type=text], .node--webform--full input[type=text], .node--webform--full input[type=email] {
    position: relative;
    padding-left: 0.71429em;
    padding-right: 0.71429em;
    width: 41.66667%;
    float: left;
    margin-bottom: .5em;
}

#user-register-form .description, #user-register-form .grippie, .node--webform--full .grippie {
    display: none !important;
}

#user-register-form textarea, .node--webform--full textarea {
    position: relative;
    padding-left: 0.71429em;
    padding-right: 0.71429em;
    width: 41.66667%;
    float: left;
    margin-bottom: .5em;
}

#user-register-form select, .node--webform--full select {
    position: relative;
    padding-left: 0.71429em;
    padding-right: 0.71429em;
    width: 41.66667%;
    float: left;
    margin-bottom: 0.5em;
    min-height: 42px;

}

.node--webform--full select {
    width: 41.66667%;
    margin-left: -14px;
}

#user-register-form .form-item-terms-of-use {
    clear: both;
    width: 75%;
    margin-left: 25%;
}

#user-register-form .form-item-terms-of-use label {
    float: none;
    padding: 0;
    margin: 0;
}

#user-register-form .form-item-terms-of-use input {
    margin: 0;
    width: 18px;
    height: 18px;
}

#user-register-form .form-actions, .node--webform--full .form-actions {
    clear: both;
    position: relative;
    width: 75%;
    margin-left: 25%;
}

#user-register-form .form-actions input {
    padding-left: 2.14286em;
    padding-right: 2.14286em;
}

#user-register-form .captcha, .node--webform--full .captcha {
    width: 45%;
    margin-left: 25%;
}

.user-profile .field.field--label-inline {
  margin: 10px;
}

#edit-field-fax,
#webform-component-message {
  clear: both;
}

#edit-terms-of-use {
  clear: both;
}

#edit-terms-of-use .fieldset-wrapper {
  height: 250px;
  overflow: scroll;
}



#block-system-main-menu {

}

.block--stv-site-stv-banner-login .field__item {
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Helvetica, Arial, sans-serif;
}

.user-register-form .form-item-stv-terms-of-use {
  display: inline-block;
  width: 100%;
  clear: both;
}

.user-register-form .form-item-stv-terms-of-use .form-checkbox {
  margin: 0;
  padding: 0;
  float: left;
}

#user-register-form .form-item-stv-terms-of-use .option {
  position: relative;
  margin: 0;
  padding: 0;
  text-align: center;
  width: 100%;
  right: 150px;
  bottom: 13px;
}

.node--page.node--full .field__item {
  font-size: 11px;
  font-weight: normal;
}

.node--page.node--full .field__item p {  
  font-size: 12px;
  font-weight: normal;
  color: #444444;
  text-decoration: none;
  line-height: 18px;
}

.node--page.node--full .field__item strong {
  font-weight: bold;
}

.node--page.node--full .field__item ul {
  margin-left: 50px;
}

#edit-terms-of-use strong {
  font-weight: bold;
}

.captcha .form-item-captcha-response {
  display: block;
}

.captcha .form-item-captcha-response label,
#user-register-form .captcha .form-item-captcha-response label {
  display: block;
  padding: 0;
  text-align: center;
  width: 100%;
  margin: 5px 0 3px -46px;
}

.captcha .form-item-captcha-response input {
  display: block;
  clear: both;
}

#user-register-form .captcha .form-item-captcha-response .description {
  display: block !important;
}
.captcha .form-item-captcha-response .description {
  float: left;
}

.frontpage .panel-col-first h2.node__title {
  color: #018ccd;
}

.frontpage .panel-col h2.node__title {
  color: rgb(204, 6, 141);
}

.frontpage .panel-col-last h2.node__title {
  color: rgb(4, 158, 4);
}

#quicktabs-app_submission {
  width: 725px;
  height: 300px;
}

#quicktabs-app_submission .block__content a {
  color: #018ccd;
}

#quicktabs-app_submission .block__content ul {
  margin-left: 15px;
}

.block--quicktabs .ui-widget-content,
.block--quicktabs .ui-widget-header {
  background: none;
  border: none;
}

.block--quicktabs ul.ui-tabs-nav li.ui-state-default {
  white-space: normal;
  font-size: 13px;
  background: none;
  border: none;
}

.block--quicktabs ul.ui-tabs-nav li.ui-state-default a {
  width: 140px;
  height: 38px;
  color: white;
  text-align: center;
  padding-top: 5px;
  background-color: #bcbbbc;
  border-color: #848484;
  border: 1px solid #d3d3d3;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  margin-bottom: 2px;
}

.block--quicktabs .ui-widget-content .block__content {
  font-size: 12px;
  font-style: normal;
  font-weight: normal;
  line-height: 18px;
}

.block--quicktabs ul.ui-tabs-nav {
  border-bottom: solid 2px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  padding-left: 0;
}

.block--quicktabs ul.ui-tabs-nav li.ui-state-default a.active,
.block--quicktabs ul.ui-tabs-nav li.ui-state-default a:hover {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  height: 40px;
  margin-bottom: 0;
  border-bottom: none;
}

a[href*="qt-app_submission-ui-tabs1"].active ,
a[href*="qt-app_submission-ui-tabs1"]:hover {
  background-color: #2fa3d8 !important;
  border-color: #018ccd !important;
}

a[href*="qt-app_submission-ui-tabs2"].active ,
a[href*="qt-app_submission-ui-tabs2"]:hover {
  background-color: #f9b030 !important;
  border-color: #f59a0d !important;
}

a[href*="qt-app_submission-ui-tabs3"].active ,
a[href*="qt-app_submission-ui-tabs3"]:hover {
  background-color: #ce4570 !important;
  border-color: #c72658 !important;
}

a[href*="qt-app_submission-ui-tabs4"].active ,
a[href*="qt-app_submission-ui-tabs4"]:hover {
  background-color: #12a099 !important;
  border-color: #118881 !important;
}

a[href*="qt-app_submission-ui-tabs5"].active ,
a[href*="qt-app_submission-ui-tabs5"]:hover {
  background-color: #a5ca65 !important;
  border-color: #96c44a !important;
}

/*a[href*="qt-app_submission-ui-tabs3"] {
  font-size: 10px;
}*/

header#header {
  background: rgba(0, 0, 0, 0) linear-gradient(#fafafa 50%, #f1f1f1) repeat scroll 0 0;
  border-bottom: 1px solid #ddd3d3;
  height: 78px;
}

#header .l-region--header {
  display: inline-block;
  float: right;
  width: 600px;
}

#preface {
  clear: both;
}

.block--menu-menu-main-site .dropdown {
  list-style: none;
}

.block--menu-menu-main-site .dropdown a {
  position: fixed;
  bottom: 80px;
  left: 25px;
  color: white;
  background-color: #bcbbbc;
  padding: 10px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;  
  font-size: 12px;
  width: 145px;
  text-align: center;
}

/* ************************************ NEW VERSION SPECIFIC STYLES **************************/

.sta_wrapper {
  position: relative;
  padding: 0;
  margin: 0 auto;
  width: 1000px !important;
  box-shadow: 0 0 15px black;
  background-color: #FFFFFF;
}

.sta_divOnTop {
  position: relative;
  height: 38px;
  background-color: #888;
  background: -webkit-linear-gradient(#888 80%,#656565);
  background: -o-linear-gradient(#888 80%,#656565);
  background: -moz-linear-gradient(#888 80%,#656565);
  background: linear-gradient(#888 80%,#656565);
}

.sta_divOnTop .sta_divOnTopContent {
  width: 960px;
}

.sta_divOnTop .sta_divOnTopContent ul {
  padding: 0;
  margin: 0;
}

.sta_divOnTop .sta_divOnTopContent ul li {
  float: left;
  list-style: none;
  margin-right: 25px;
  color: #cfcfcf;
  padding-left: 10px;
  padding-right: 10px;
  line-height: 34px;
  z-index: 99999;
}

.sta_divOnTop .sta_divOnTopContent ul li[id='currentSite'] {
  color: #fff;
  cursor: text;
  border-bottom: 4px solid #c4c4c4;
}

.hrefOnTop {
  color: white!important;
  text-decoration: none!important;
}

.header_bottom_custom {
    top: 0 !important;
    width: 100%;
    margin-top: -10px !important;
}

.block--stv-site-stv-user-login {
   float: right;
}



.frontpage .panel-col-bottom .pane-node {
   width: 33%;
   float: left;
}

.frontpage .panel-col-bottom .pane-node:nth-child(2) a{
   color: #018ccd;
   line-height: 24px;
}


.frontpage .panel-col-bottom .pane-node:nth-child(3) a{
   color: #cc068d;
   line-height: 24px;
}

.frontpage .panel-col-bottom .pane-node:nth-child(4) a{
   color: #049e04;
   line-height: 24px;
}

.frontpage .panel-col-bottom .pane-node .pane-content .node-teaser {
   margin-top: 0px !important;
}

.frontpage .panel-col-bottom .pane-1 .pane-content {
   display: none;
}

h2.pane-title {
  font-size: 24px;
}

footer .block--block-1 {
  margin-left: 30px;
  margin-top: -15px;
}

footer nav.block--menu {
  float: left;
  margin-left: 60px;
}

footer nav.block--menu h2.block__title {
   color: #67b140 !important;
   font-size: 12px !important;
   margin-top: 0px;
   text-decoration: none !important;
   font-weight: 200;
   margin-bottom: 0.5em !important;
}

footer nav.block--menu ul.dropdown {
   list-style: outside none none;
   margin: 0;
   padding: 0;
}

footer nav.block--menu ul.dropdown li {
   line-height: 20px !important;
}

footer nav.block--menu ul.dropdown li a {
   color: #666;
   font-size: 10px;
   margin-top: 5px;
   text-decoration: none !important;
   font-weight: 200;
}

footer nav.block--menu ul.dropdown li a:hover {
   color: #888;
}

footer .block--block-7:before {
  clear:both;
}
footer #block-block-7 {
  width: 100%;
  display: inline-block;
  text-align: right;
  color: #666;
  font-size: 13px;
  padding-right: 20px;
  padding-top: 20px;
  border-top: 2px solid #dedede;
}

footer #block-block-7 p {
  margin-bottom: 0px;
}

div.node__content ul,ol {
  margin-left: 50px !important;
  font-size: 12px !important;
  color: #444444;  
  font-weight: normal;
  line-height: 18px;
  text-decoration: none;
}

div.node__content ul.nobullets {
  list-style-type: none;
}

div.node__content ul.faq a {
  font-weight: bold;
}

div.node__content li {
  margin-bottom: 10px;
}

.headingStyle {
    background-color: #e5e5e5;
    background: -webkit-linear-gradient(#fafafa 50%,#f1f1f1);
    background: -o-linear-gradient(#fafafa 50%,#f1f1f1);
    background: -moz-linear-gradient(#fafafa 50%,#f1f1f1);
    background: linear-gradient(#fafafa 50%,#f1f1f1);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fafafa',endColorstr='#f1f1f1',GradientType=0);
}

table[class^="table"] tbody tr td {
    border-left: 0!important;
    border-top: 1px solid #ccc!important;
    background: transparent!important;
    font-family: cdpFont,"Myriad Pro","Open Sans",Tahoma,Arial!important;
    font-size: 12px;
    font-weight: 300;
}

.tablefullwidth {
  width: 100% !important;
}


table[class^="table"] tbody tr td a {
    text-decoration: none!important;
    color: #444!important;
}

table[class^="table"] tbody tr td a:hover {
    color: #018ccd !important;
    text-decoration: none !important;
}

.table td {
    padding: 8px;
    line-height: 20px;
    text-align: left;
    vertical-align: top;
    border-top: 1px solid #ddd;
}

.table th {
    background: #FFFFFF !important;
    text-transform: uppercase;
    text-decoration: none!important;
    border-left: 0!important;
    font-weight: bold!important;
    box-shadow: inset 0 0 3px #fff;
    border-bottom: solid 1px #ccc;
}

.styleTable td {
    height: 20px!important;
    padding: 5px 5px 5px 5px!important;
    border-right: 1px solid #ccc;
}

.btn:hover, .btn_custom:hover, button:hover, .btn-primary:hover {
  color: #e3e3e3;
}

.btn, .btn_custom, button, .btn-primary {
    display: inline-block;
    padding: 4px 12px;
    margin-bottom: 0;
    font-size: 13px;
    line-height: 20px;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    text-shadow: 0 1px 1px rgba(255,255,255,0.75);
    background-color: #f1f1f1;
    background-image: -moz-linear-gradient(top,#f6f6f6,#eaeaea);
    background-image: -webkit-gradient(linear,0 0,0 100%,from(#f6f6f6),to(#eaeaea));
    background-image: -webkit-linear-gradient(top,#f6f6f6,#eaeaea);
    background-image: -o-linear-gradient(top,#f6f6f6,#eaeaea);
    background-image: linear-gradient(to bottom,#f6f6f6,#eaeaea);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF6F6F6',endColorstr='#FFEAEAEA',GradientType=0);
    border-color: #eaeaea #eaeaea #c4c4c4;
    border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    border: 1px solid #cfcfcf;
    border-bottom-color: #b5b5b5;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);
    -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);
    border: 1px solid #bcbcbc!important;
    border-radius: 4px!important;
    background: #e5e5e5!important;
    background-color: #e5e5e5!important;
    background: -webkit-linear-gradient(white 30%,#f0f0f0)!important;
    background: -o-linear-gradient(white 30%,#f0f0f0)!important;
    background: -moz-linear-gradient(white 30%,#f0f0f0)!important;
    background: linear-gradient(white 30%,#f0f0f0)!important;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',endColorstr='#F0f0f0',GradientType=0);
    padding: 5px!important;
    color: #444!important;
    font-weight: bold!important;
    -webkit-transition: background .6s ease;
    -moz-transition: background .6s ease;
    -o-transition: background .6s ease;
    transition: background .6s ease;
}

/******** BREADCRUMBS ********/

.breadcrumb {
    background-color: transparent;
    margin-bottom: 5px;
    margin-top: 5px;
    padding: 3px 10px 2px;
    color: #3e9d46!important;
    list-style: none;
}

.breadcrumb li:first-child {
    z-index: 4!important;
	border-left: 5px solid #ccc;
}
.breadcrumb>li {
    text-shadow: none;
	display: inline-block;
}

.breadcrumb li {
    color: #666!important;
    font-size: 12px!important;
    line-height: 19px;
    margin-left: -7px!important;
    padding: 0 15px 0 10px!important;
    position: relative!important;
    text-decoration: none!important;
    background-image: url('../images/bg-crumbs.png');
    background-repeat: no-repeat!important;
    background-position: 100% 0!important;
}

.breadcrumb a {
    color: #444;
    text-decoration: none;
    font-weight: 200;
}

.node--page .field--name-field-teaser {
    margin-right: 15px !important;
}

.sta_page_title {
  width: 100%; 
  margin-bottom: 20px;
  background: #ffffff;
  background: -moz-linear-gradient(top,  #ffffff 70%, #f3f3f3 85%, #ededed 100%, #ffffff 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%,#ffffff), color-stop(85%,#f3f3f3), color-stop(100%,#ededed), color-stop(100%,#ffffff));
  background: -webkit-linear-gradient(top,  #ffffff 70%,#f3f3f3 85%,#ededed 100%,#ffffff 100%);
  background: -o-linear-gradient(top,  #ffffff 70%,#f3f3f3 85%,#ededed 100%,#ffffff 100%);
  background: -ms-linear-gradient(top,  #ffffff 70%,#f3f3f3 85%,#ededed 100%,#ffffff 100%);
  background: linear-gradient(to bottom,  #ffffff 70%,#f3f3f3 85%,#ededed 100%,#ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=0 );
}
