/**
 * @file
 * Page Background Styling
 *
 * The default layout method of Zen doesn't give themers equal-height columns.
 * However, equal-height columns are difficult to achieve and totally
 * unnecessary. Instead, use the Faux Columns method described in the following
 * ALA article:
 *   http://www.alistapart.com/articles/fauxcolumns/
 */


body {
/*  background: #6B7DA8;*/
  background: #fff;
}

#page-wrapper-external {
  background-color: white;
}

#page-wrapper-bottom {
/*  background: #fff;
  height: 30px;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#6B7DA8');  for IE 
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#6B7DA8));  for webkit browsers 
  background: -moz-linear-gradient(top,  #ffffff,  #6B7DA8);  for firefox 3.6+  
  background: -o-linear-gradient(top, #ffffff, #6B7DA8);*/

}


#page-wrapper {
  background: #fff;
}

#page {
}


#header {
}

#header .section {
}

#main-wrapper {
}

#main {
}

.region-footer {
}
::selection {
background-color: black;
color: white;
}