/**
 * @file
 * HTML Element Styling
 *
 * Ok, I admit it. I fooled you. This isn't a "reset" stylesheet. Instead this
 * is the place where you should set (not reset) the default styling for all
 * HTML elements.
 *
 * @see http://meiert.com/en/blog/20080419/reset-style-sheets-are-bad/
 * @see http://snook.ca/archives/html_and_css/no_css_reset/
 */


/*
 * Fonts
 *
 * Our font size and line height declarations are based on the following ALA
 * article:
 *   http://www.alistapart.com/articles/howtosizetextincss
 *
 * All modern browsrs use a 16px default font size. Specifying the font-size
 * and line-height in ems (relative to the 16px default font) allows the user
 * to resize the font in the browser and produces the most consistent results
 * across different browsers.
 */
body {
  font-size: 100%; /* Fixes exaggerated text resizing in IE6 and IE7 */
}

#skip-link,
#page-wrapper {
  /*
   * To use a 12px font size on the page, delete the 14px declarations.
   * to use a 14px font size on the page, delete the 12px declarations.
   */

  /* Use a 12px base font size with a 16px line height */
  font-size: 0.75em; /* 16px x .75 = 12px */
  line-height: 1.333em; /* 12px x 1.333 = 16px */

  /* Use a 14px base font size with a 18px line height */
  /*font-size: 0.875em; /* 16px x .875 = 14px */
  /*line-height: 1.286em; /* 14px x 1.286 = 18px */
}

body,
caption,
th,
td,
input,
textarea,
select,
option,
legend,
fieldset {
  /* The following font family declarations are based on the Microsoft core web
   * fonts which are common fonts available on most computer systems. The DejaVu
   * fonts are commonly available on Linux systems where the MS fonts are less
   * common. Tahoma and Helvetica are also widely available.
   *
   * A user's web browser will look at the comma-separated list and will
   * attempt to use each font in turn until it finds one that is available
   * on the user's computer. The final "generic" font (sans-serif or serif)
   * hints at what type of font to use if the web browser doesn't find any
   * of the fonts in the list.

  font-family: "Times New Roman", Times, Georgia, "DejaVu Serif", serif;
  font-family: Times, "Times New Roman", Georgia, "DejaVu Serif", serif;
  font-family: Georgia, "Times New Roman", "DejaVu Serif", serif;

  font-family: Verdana, Tahoma, "DejaVu Sans", sans-serif;
  font-family: Tahoma, Verdana, "DejaVu Sans", sans-serif;
  font-family: Helvetica, Arial, "Nimbus Sans L", sans-serif;
  font-family: Arial, Helvetica, "Nimbus Sans L", sans-serif;

  font-family: "Courier New", "DejaVu Sans Mono", monospace;

   */

  font-family: Helvetica, Verdana, Tahoma, "DejaVu Sans", sans-serif;
}

pre,
code {
  font-size: 1.1em; /* Monospace fonts can be hard to read */
  font-family: "Courier New", "DejaVu Sans Mono", monospace;
}

/*
 * Headings
 */
h1 {
  font-size: 2em;
  line-height: 1.3em;
  margin-top: 0;
  margin-bottom: 0.5em; /* 0.5em is equavalent to 1em in the page's base font.
                           Remember, a margin specified in ems is relative to
                           the element's font-size, not to the pages' base
                           font size. So, for example, if we want a 1em margin
                           (relative to the base font), we have to divide that
                           length by the element's font-size:
                           1em / 2em = 0.5em */
}

h2 {
  font-size: 1.5em;
  line-height: 1.3em;
  margin-top: 0.667em; /* Equivalent to 1em in the page's base font: 1 / 1.5 = 0.667em */
  margin-bottom: 0.667em;
}

h3 {
  font-size: 1.3em;
  line-height: 1.3em;
  margin-top: 0.769em; /* Equivalent to 1em in the page's base font: 1 / 1.3 = 0.769 */
  margin-bottom: 0.769em;
}

h4,
h5,
h6 {
  font-size: 1.1em;
  line-height: 1.3em;
  margin-top: 0.909em; /* Equivalent to 1em in the page's base font: 1 / 1.1 = 0.909 */
  margin-bottom: 0.909em;
}

/*
 * Block-level elements
 */
p,
ul,
ol,
dl,
pre,
table,
fieldset {
  margin: 0 0 1em;
}

blockquote {
  margin: 1em 2em;
}

/*
 * Lists
 *
 * We need to standardize the list item indentation.
 */
ul,
ol {
  margin-left: 0;
  padding-left: 2em; /* LTR */
}

.block ul,
.item-list ul /* Drupal overrides */ {
  margin: 0 0 10px;
  padding: 0 0 0 2em; /* LTR */
}

ul ul, ul ol,
ol ol, ol ul,
.block ul ul, .block ul ol,
.block ol ol, .block ol ul,
.item-list ul ul, .item-list ul ol,
.item-list ol ol, .item-list ol ul {
  margin: 0;
}

li {
  margin: 0;
  padding: 0;
}

.item-list ul li /* Drupal override */ {
  margin: 0;
  padding: 0;
  list-style: inherit;
}

ul.menu li,
li.expanded,
li.collapsed,
li.leaf /* Drupal override */ {
  margin: 0;
  padding: 0;
}

ul          { list-style-type: disc; }
ul ul       { list-style-type: circle; }
ul ul ul    { list-style-type: square; }
ul ul ul ul { list-style-type: circle; }
ol          { list-style-type: decimal; }
ol ol       { list-style-type: lower-alpha; }
ol ol ol    { list-style-type: decimal; }

dt {
  margin: 0;
  padding: 0;
}

dd {
  margin: 0 0 0 2em;
  padding: 0;
}

/*
 * Links
 *
 * The order of link states are based on Eric Meyer's article:
 * http://meyerweb.com/eric/thoughts/2007/06/11/who-ordered-the-link-states
 */
a:link {
}

a:visited {
}

a:hover,
a:focus {
}

a:active {
}

/*
 * Tables
 *
 * Drupal provides table styling which is only useful for its admin section
 * forms, so we override this default CSS. (We set it back in forms.css.)
 */
table {
  border-collapse: collapse;
  width: 100%; /* Prevent cramped-looking tables */
  border: 1px solid #C4C4C4;
}

th,
thead th,
tbody th {
  text-align: left; /* LTR */
  padding: 0;
  color: #7D7D7D;
  background-color: #DDD;
}

tbody {
  border-top: none;
}

table th,
table td {
	padding: 5px 10px;
	color: #555;
}

/*
 * Abbreviations
 */
abbr {
  border-bottom: 1px dotted #666;
  cursor: help;
  white-space: nowrap;
}

abbr.created /* Date-based "abbreviations" show computer-friendly timestamps which are not human-friendly. */ {
  border: none;
  cursor: auto;
  white-space: normal;
}

/*
 * Images
 */
img {
  border: 0;
}

/*
 * Horizontal rules
 */
hr {
  height: 1px;
  border: 1px solid #666;
}

/*
 * Forms
 */
form {
  margin: 0;
  padding: 0;
}

fieldset {
  margin: 1em 0;
  padding: 0.5em;
}


/**
 * @file
 * Layout Styling (DIV Positioning)
 *
 * Define CSS classes to create a table-free, 3-column, 2-column, or single
 * column layout depending on whether blocks are enabled in the left or right
 * columns.
 *
 * This layout is based on the Zen Columns layout method.
 *   http://drupal.org/node/201428
 *
 * Only CSS that affects the layout (positioning) of major elements should be
 * listed here.  Such as:
 *   display, position, float, clear, width, height, min-width, min-height
 *   margin, border, padding, overflow
 */


/*
 * Body
 */
body {
}

#page-wrapper,
.region-page-closure {
  
}

#header,
#main,
#footer,
#admin-menu > ul {
	
}

#header-parent,
#main-parent,
#footer-parent,
#admin-menu > ul {
	margin: 0 auto;
    padding: 0 15px;
    
    width: 1150px; /*
    max-width: 1216px;
    min-width: 964px;*/
}

.iframe #header-parent,
.iframe #main-parent,
.iframe #footer-parent,
.iframe #admin-menu > ul {
	width: 1100px;
}

.header-small #header-parent,
.header-small #main-parent,
.header-small #footer-parent,
.header-small #admin-menu > ul {
	width: 100%;
	padding-left: 0;
	padding-right: 0;
}

#page {
	
}

/*
 * Header
 */
#header {
	height: 115px;
	position: relative;
}

.has-primary-links #header {
	height: 125px;
}

.has-primary-links.admin-menu #header {
	height: 152px;
}

#header .section {
	position: relative;
}

#search-box {
}

.region-header {
  clear: both; /* Clear the logo */
  position: absolute;
  top: 0;
  right: 0;
}

/*
 * Main (container for everything else)
 */
#main-wrapper {
  position: relative;
}

#main {
}

/*
 * Content
 */
#content {
  float: left; /* LTR */
  width: 100%;
  margin-left: 0; /* LTR */
  margin-right: -100%; /* LTR */ /* Negative value of #content's width + left margin. */
  padding: 0; /* DO NOT CHANGE. Add padding or margin to #content .section. */
}

#content .section,
.no-sidebars #content .section {
  margin: 0;
  padding: 0;
}

#main #content .section {
	padding: 0 0 10px;
	min-height: 320px;
}

.sidebar-first #content .section {
  padding-left: 200px; /* LTR */ /* The width + left margin of .region-sidebar-first. */
  padding-right: 0; /* LTR */
}

.sidebar-second #content .section {
  padding-left: 0; /* LTR */
  padding-right: 200px; /* LTR */ /* The width + right margin of .region-sidebar-second. */
}

.two-sidebars #content .section {
  padding-left: 200px; /* The width + left margin of .region-sidebar-first. */
  padding-right: 200px; /* The width + right margin of .region-sidebar-second. */
}

/*
 * Navigation
 */
#navigation {
  float: left; /* LTR */
  width: 100%;
  margin-left: 0; /* LTR */
  margin-right: -100%; /* LTR */ /* Negative value of #navigation's width + left margin. */
  padding: 0; /* DO NOT CHANGE. Add padding or margin to #navigation .section. */
  height: 2.3em; /* The navigation can have any arbritrary height. We picked one
                    that is the line-height plus 1em: 1.3 + 1 = 2.3
                    Set this to the same value as the margin-top below. */
}

.with-navigation #content,
.with-navigation .region-sidebar-first,
.with-navigation .region-sidebar-second {
  margin-top: 2.3em; /* Set this to the same value as the navigation height above. */
}

#navigation .section {
}

#navigation ul /* Primary and secondary links */ {
  margin: 0;
  padding: 0;
  text-align: left; /* LTR */
}

#navigation li /* A simple method to get navigation links to appear in one line. */ {
  float: left; /* LTR */
  padding: 0 10px 0 0; /* LTR */
}

/*
 * First sidebar
 */
.region-sidebar-first {
  float: left; /* LTR */
  width: 200px;
  margin-left: 0; /* LTR */
  margin-right: -200px; /* LTR */ /* Negative value of .region-sidebar-first's width + left margin. */
  padding: 0; /* DO NOT CHANGE. Add padding or margin to .region-sidebar-first .section. */
}

.region-sidebar-first .section {
  margin: 0 20px 0 0; /* LTR */
  padding: 0;
}

/*
 * Second sidebar
 */
.region-sidebar-second {
  float: right; /* LTR */
  width: 200px;
  margin-left: -200px; /* LTR */ /* Negative value of .region-sidebar-second's width + right margin. */
  margin-right: 0; /* LTR */
  padding: 0; /* DO NOT CHANGE. Add padding or margin to .region-sidebar-second .section. */
}

.region-sidebar-second .section {
  margin: 0 0 0 20px; /* LTR */
  padding: 0;
}

/*
 * Footer
 */
#footer {
	overflow: hidden;
}

#footer .section.box-gray {
	border-style: solid solid none;
	overflow: hidden;
	
	/*box-shadow: 0 6px 10px 1px #CBCBCB;
	-moz-box-shadow: 0 6px 10px 1px #CBCBCB;
	-webkit-box-shadow: 0 6px 10px 1px #CBCBCB;*/
}

#google_conversion {
	position: absolute;
	bottom: 0;
}

#google_conversion iframe {
	height: 1px;
	width: 1px;
	float: left;
}

/*
 * Closure
 */
.region-page-closure /* See also the #page-wrapper declaration above that this div shares. */ {
}

/*
 * Prevent overflowing content
 */
#header,
#content,
#navigation,
.region-sidebar-first,
.region-sidebar-second,
#footer,
.region-page-closure {
  overflow: visible;
  word-wrap: break-word; /* A very nice CSS3 property */
}

#navigation {
  overflow: hidden; /* May need to be removed if using a dynamic drop-down menu */
}

/*
 * If a div.clearfix doesn't have any content after it and its bottom edge
 * touches the bottom of the viewport, Firefox and Safari will mistakenly
 * place several pixels worth of space between the bottom of the div and the
 * bottom of the viewport. Uncomment this CSS property to fix this.
 * Note: with some over-large content, this property might cause scrollbars
 * to appear on the #page-wrapper div.
 */
/*
#page-wrapper {
  overflow-y: hidden;
}
*/

/**
 * @file
 * Block Styling
 */


.block /* Block wrapper */ {
  margin-bottom: 1em;
}

.block.first /* The first block in the region */ {
}

.block.last /* The last block in the region */ {
}

.block.region-odd /* Zebra striping for each block in the region */ {
}

.block.region-even /* Zebra striping for each block in the region */ {
}

.block.odd /* Zebra striping independent of each region */ {
}

.block.even /* Zebra striping independent of each region */ {
}

.region-count-1 /* Incremental count for each block in the region */ {
}

.count-1 /* Incremental count independent of each region */ {
}

.block h2.title /* Block title */ {
}

.block .content /* Block's content wrapper */ {
}

#block-aggregator-category-1 /* Block for the latest news items in the first category */ {
}

#block-aggregator-feed-1 /* Block for the latest news items in the first feed */ {
}

#block-block-1 /* First administrator-defined block */ {
}

#block-blog-0 /* "Recent blog posts" block */ {
}

#block-book-0 /* "Book navigation" block for the current book's table of contents */ {
}

#block-comment-0 /* "Recent comments" block */ {
}

#block-forum-0 /* "Active forum topics" block */ {
}

#block-forum-1 /* "New forum topics" block */ {
}

#block-menu-primary-links /* "Primary links" block */ {
}

#block-menu-secondary-links /* "Secondary links" block */ {
}

#block-node-0 /* "Syndicate" block for primary RSS feed */ {
}

#block-poll-0 /* "Most recent poll" block */ {
}

#block-profile-0 /* "Author information" block for the profile of the page's author */ {
}

#block-search-0 /* "Search form" block */ {
}

#block-statistics-0 /* "Popular content" block */ {
}

#block-user-0 /* "User login form" block */ {
	position: absolute;
	right: 2px;
	top: 8px;
	width: 177px;
	font-size: 11px;
}

#block-user-0 .content {
    padding: 0;
}

#block-user-0 h2.title {
    display: none;
}

#block-user-0 .form-item {
    margin-bottom: 4px;
}

#block-user-0 label,
#block-user-0 .field_error_wrapper {
	display: none;
}

#block-user-0 .form-text {
	height: 26px;
	line-height: 26px;
	width: 147px;
}

#block-user-0 .form-submit {
	height: 24px;
	font-size: 12px;
	float: right;
}

#block-user-0 .request-pass {
	float: left;
	font-weight: normal;
	line-height: 26px;
	margin-left: 1px;
}

#block-user-1 /* "Navigation" block for Drupal navigation menu */ {
}

#block-user-2 /* "Who's new" block for a list of the newest users */ {
}

#block-user-3 /* "Who's online" block for a list of the online users */ {
}

#block-block-1 {
    height: 30px;
    overflow: hidden;
    position: absolute;
    right: 12px;
    top: 104px;
    width: 177px;
}

#block-block-1 .content {
    padding: 0;
}

#block-block-1 .like {
    float: left;
    width: 87px;
}

#block-block-1 .like.gplusone {
    float: right;
    width: 59px;
}

#block-logintoboggan-0 {
	color: #333333;
	float: right;
}

#block-logintoboggan-0 .content {
	padding: 5px;
}

#edit-user-login-block a,
#block-logintoboggan-0 .content a {
/*	font-weight: bold;
	padding-left: 20px;*/
}

/**
 * @file
 * Navigation Styling
 *
 * Default menu styling (ul.menu) is defined in system-menus.css.
 */


/*
 * The active item in a Drupal menu
 */
li a.active {
  color: #000;
}

/*
 * Navigation bar
 */
#navigation {
}

#navigation-wrapper {
	background: #DDD;
	
	position: absolute;
    top: 87px;
	left: 0;
	width: 100%;
}

#navigation-wrapper2 {
	border: 1px solid #DDDDDD;
}

.region-navigation {
}

/*
 * Primary and Secondary menu links
 */
#main-menu {
	margin: 0;
}

#main-menu li {
	display: block;
    float: left;
    padding: 0;
    margin-right: 7px;
}

#main-menu li.first {
	margin-left: 7px;
}

#main-menu li a {
	line-height: 23px;
    padding: 0 8px 2px 0;
    color: #595959;
    font-weight: bold;
    display: inline-block;
}

#main-menu li a:hover,
#main-menu li a.active {
	text-decoration: none;
	color: #1E5B97;
}

#secondary-menu {
	margin: 0 0 12px;
}

#block-menu-menu-userlinks {
	font-size: 11px;
    position: absolute;
    right: 45px;
    top: 2px;
    margin: 0;
}

#block-menu-menu-userlinks .content {
	padding: 0;
}

#block-menu-menu-userlinks li {
	border-style: none;
	padding-right: 7px;
}

#block-menu-menu-userlinks li.last {
	padding-right: 0;
}

#block-menu-menu-userlinks li a {
	color: #D0D0D0;
}

#block-menu-menu-userlinks li a:hover,
#block-menu-menu-userlinks li a.active {
	color: #EFEFEF;
}


/*
 * Menu blocks
 */
.block-menu {
}

.block-menu .menu {
	
}

/***  MENU  ***/
	ul.menu {
		margin: 0;
		padding: 0;
		overflow: hidden;
	}
	
	ul.menu li a {
		text-decoration: none;
		display: block;
		outline: 0;
		line-height: 130%;
	}
	
	ul.menu li {
		float: left;
		margin-right: 8px;
		padding-right: 12px;
		border-color: #CCC;
		border-style: none solid none none;
		border-width: 1px;
		list-style: none;
	}
	
	ul.menu li.has-menu a span.icon {
		margin: 1px 0 0 3px;
		height: 14px;
		width: 14px;
		float: right;
	}
	
	ul.menu li.last,
	ul.menu.menu-right li {
		border-right: none;
		margin-right: 0;
		padding-right: 0;
	}
	
	ul.menu.menu-right li {
		float: right;
		margin-left: 7px;
		padding-left: 7px;
		border-left: 1px solid #999;
	}
	
	ul.menu.menu-right li.last {
		margin-left: 0;
		padding-left: 0;
		border-left: none;
	}
	
	ul.menu li ul {
		display: none;
		position: absolute;
		margin: 0;
		padding: 5px 5px 0;
	}
	
	ul.menu li:hover ul,
	ul.menu li.hover ul {
		display: block;
	}
	
	ul.menu li ul li {
		float: none;
		border-right: none;
		padding-right: 0;
		margin-right: 0;
		margin-bottom: 5px;
	}
	
	ul.menu li ul li ul {
		margin-right: 15px;
		position: relative;
	}
	
	ul.menu li ul li ul li.last {
		margin-bottom: 0px;
	}
	
	ul.menu.box-center {
		text-align: center;
	}
	
	ul.menu.box-center li {
		display: inline-block;
		float: none;
	}
	
	/*** vertical ***/
	ul.menu.vertical li {
		float: none;
		border-style: none none solid none;
		padding: 5px 0;
		margin: 0;
	}
	
	ul.menu.vertical li.last {
		border-style: none;
	}

/*
 * "Menu block" blocks. See http://drupal.org/project/menu_block
 */
.block-menu_block {
}

/**
 * @file
 * Page Styling
 *
 * Style the markup found in page.tpl.php. Also includes some styling of
 * miscellaneous Drupal elements that appear in the $content variable, such as
 * ul.links, .pager, .more-link, etc.
 */


/*
 * Body
 */
body {
	margin: 0;
	padding: 125px 0 0;
}

body.header-small {
	padding-top: 47px;
}

#page-wrapper {
}

#page {
	margin-bottom: 100px;
}

/*
 * The skip navigation link will be completely hidden until a user tabs to the
 * link. See http://www.webaim.org/techniques/skipnav/
 */
#skip-link a,
#skip-link a:visited {
  position: absolute;
  display: block;
  left: 0;
  top: -500px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  text-align: center;
  background-color: #666;
  color: #fff;
}

#skip-link a:hover,
#skip-link a:active,
#skip-link a:focus {
  position: static;
  width: 100%;
  height: auto;
  padding: 2px 0 3px 0;
}

/*
 * Header
 */
#header {
}

#header .section {
}

#logo /* Wrapping link for logo */ {
  float: left; /* LTR */
  position: absolute;
  top: 18px;
  left: 10px;
  margin: 0;
  padding: 0;
}

#logo img {
  vertical-align: bottom;
}

#name-and-slogan /* Wrapper for website name and slogan */ {
}

h1#site-name,
div#site-name /* The name of the website */ {
  margin: 0;
  font-size: 2em;
  line-height: 1.3em;
}

#site-name a:link,
#site-name a:visited {
  color: #000;
  text-decoration: none;
}

#site-name a:hover,
#site-name a:focus {
  text-decoration: underline;
}

#header-wrapper-left {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
}

#header-small {
	background: #FCFCFC;
    border-bottom: 1px solid #C1C1C1;
    height: 46px;
    overflow: hidden;
    position: absolute;
    width: 100%;
    z-index: 10;
    left: 0;
    top: 0;
}

#header-small .content {
	padding: 8px;
	overflow: hidden;
}

#page #header-small #logo {
	float: left;
	margin: 0;
	position: relative;
	top: auto;
	left: auto;
}

#header-small #logo img {
	height: 30px;
	float: left;
}

#header-small #navigation-wrapper {
	background: transparent;
	position: relative;
	top: auto;
	left: auto;
	width: 100%;
	float: left;
	margin-left: 15px;
	margin-bottom: 17px;
	padding-left: 13px;
	border-left: 1px solid #DDD;
}

#header-small #navigation-wrapper #main-menu li {
	margin: 0 10px 0 0;
}

#header-small #navigation-wrapper #main-menu li a {
	color: #595959;
	padding: 4px 8px 3px 0px;
}

#header-small #navigation-wrapper #main-menu li a:hover {
	color: #1E5B97;
}

#header-small #navigation-wrapper2 {
	border: none;
}

#header-small .user-navigation {
	float: right;
	margin: 0 10px 17px 0;
	line-height: 30px;
	color: #666;
}

#header-small .user-navigation a {
	font-weight: bold;
	color: #595959;
}

#header-small .user-navigation a:hover {
	color: #1E5B97;
	text-decoration: none;
}

.build-flyer-wrapper {
  float: right;
  margin-right: 20px;
  margin-top: -8px;
}

.build-flyer-wrapper a {
    background: #D81159;
    color: #FFF;
    height: 17px;
    padding: 15px;
    display: inline-flex;
    line-height: 17px;
    width: 100%;
}

.build-flyer-wrapper a:hover {
  text-decoration: none;
}

/*
 * Main (container for everything else)
 */
#main-wrapper {
}

#main {
}

/*
 * Content
 */
#content {
}

#content .section {
}

a,
a.active,
.link,
.link2 {
	text-decoration: none;
	color: #1E5B97;
	outline: none;
}

.link2 {
	color: #086AFF;
}


a:hover {
	text-decoration: underline;
}

::selection {
	background: #59C1F9;
	color: #FFF;
}

::-moz-selection {
	background: #59C1F9;
	color: #FFF;
}

#mission /* The mission statement of the site (displayed on homepage) */ {
}

.region-content-top /* Wrapper for any blocks placed in the "content top" region */ {
}

.breadcrumb /* The path to the current page in the form of a list of links */ {
  border: 1px solid #DDD;
  padding: 7px 14px;
  margin: 10px 0;
}

h1, h2, h3, h4, h5, h6 {
	text-shadow: 1px 1px 0 #EEEEEE;
	margin: 0 0 5px;
}

h1,
.section h1.title {
	color: #00AFF0;
	font-size: 28px;
	margin-bottom: 5px;
	border-bottom: 1px solid #EFEFEF;
}

h2 {
	color: #73ABC5;
	font-size: 22px;
}

h3 {
	color: #515151;
	font-size: 20px;
}

h4 {
	color: #4A74DC;
	font-size: 18px;
}

h5 {
	color: #82949F;
	font-size: 18px;
}

h6 {
	color: #333;
	font-size: 15px;
	font-weight: bold;
	margin-bottom: 3px;
}

h1.title, /* The title of the page */
h2.title, /* Block title or the title of a piece of content when it is given in a list of content */
h3.title /* Comment title */ {
  margin: 0;
}

tr.even, tr.odd {
	border-color: #C4C4C4;
}

tr.even /* Some tables have rows marked even or odd. */ {
  background-color: #FBFBFB; /* Drupal core uses a #eee background */
}

tr.odd {
  background-color: #F4F4F4; /* Drupal core uses a #eee background */
}

tr.even:hover, tr.odd:hover, td.active {
  background-color: #E7E7E7; /* Drupal core uses a #eee background */
}

div.messages /* Important messages (status, warning, and error) for the user. See also the declarations in messages.css. */ {
}

div.status /* Normal priority messages */ {
}

div.warning,
tr.warning /* Medium priority messages */ {
  /* border: 1px solid #f0c020; */ /* Drupal core uses: 1px solid #f0c020 */
}

div.error,
tr.error /* High priority messages. See also the .error declaration below. */ {
}

.error /* Errors that are separate from div.messages status messages. */ {
  /* color: #e55; */ /* Drupal core uses a #e55 background */
}

.warning /* Warnings that are separate from div.messages status messages. */ {
  /* color: #e09010; */ /* Drupal core uses a #e09010 background */
}

div.tabs /* See also the tabs.css file. */ {
}

.help /* Help text on a page */ {
  margin: 1em 0;
}

.more-help-link /* Link to more help */ {
  font-size: 0.85em;
  text-align: right;
}

#content-area /* Wrapper for the actual page content */ {
}

ul.links /* List of links */ {
  margin: 1em 0;
  padding: 0;
}

ul.links.inline {
  margin: 0;
  display: inline;
}

ul.links li {
  display: inline;
  list-style-type: none;
  padding: 0 0.5em;
}

ul.links li.last {
  padding-right: 0;
}

.pager /* A list of page numbers when more than 1 page of content is available */ {
  clear: both;
  margin: 1em 0;
  text-align: center;
}

.pager a,
.pager strong.pager-current /* Each page number in the pager list */ {
  padding: 0.5em;
}

.feed-icons /* The links to the RSS or Atom feeds for the current list of content */ {
  margin: 1em 0;
}

.more-link /* Aggregator, blog, and forum more link */ {
  text-align: right; /* LTR */
}

.region-content-bottom /* Wrapper for any blocks placed in the "content bottom" region */ {
}

/*
 * First sidebar (on left in LTR languages, on right in RTL)
 *
 * Remember to NOT add padding or margin to your .region-sidebar-first
 * (see the layout.css file.)
 */
.region-sidebar-first {
}

.region-sidebar-first .section {
}

/*
 * Second sidebar (on right in LTR languages, on left in RTL)
 *
 * Remember to NOT add padding or margin to your .region-sidebar-second
 * (see the layout.css file.)
 */
.region-sidebar-second {
}

.region-sidebar-second .section {
}

/*
 * Footer
 */
#footer {
	text-align: right;
}

#footer .section {
	border-top: 1px solid #AAA;
}

#footer-message /* Wrapper for the footer message from Drupal's "Site information"
                   and for any blocks placed in the footer region */ {
	color: #444444;
	font-size: 10px;
	height: 6px;
	line-height: 12px;
	padding: 0;
	text-shadow: 1px 1px 0 #FCFCFC;
}

#footer a {
	
}

.region-footer {
}

/*
 * Closure
 */
.region-page-closure /* Wrapper for any blocks placed in the closure region */ {
}

/*
 * Drupal boxes
 *
 * Wrapper for Comment form, Comment viewing options, Menu admin, and
 * Search results.
 */
.box /* Wrapper for box */ {
}

.box h2 /* Box title */ {
}

.box .content /* Box's content wrapper */ {
}

/*
 * Markup free clearing (See: http://www.positioniseverything.net/easyclearing.html )
 */
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/**
 * Hide elements from all users.
 *
 * Used for elements which should not be immediately displayed to any user. An
 * example would be a collapsible fieldset that will be expanded with a click
 * from a user. The effect of this class can be toggled with the jQuery show()
 * and hide() functions.
 */
.element-hidden {
  display: none;
}

/**
 * Hide elements visually, but keep them available for screen-readers.
 *
 * Used for information required for screen-reader users to understand and use
 * the site where visual display is undesirable. Information provided in this
 * manner should be kept concise, to avoid unnecessary burden on the user. Must
 * not be used for focusable elements (such as links and form elements) as this
 * causes issues for keyboard only or voice recognition users. "!important" is
 * used to prevent unintentional overrides.
 */
.element-invisible {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
}

.masquerade-switch {
	border: 1px solid #DDDDDD;
	padding: 6px 10px 6px 34px;
	color: #555;
}

.masquerade-switch:hover {
	background-color: #E8E8E8;
	text-decoration: none;
}

/*** BUTTONS ***/
	.buttons input.button,
	.buttons a.button {
		margin-right: 5px;
	}
	
	.buttons input.button.last,
	.buttons a.button.last {
		margin-right: 0;
	}
	
	.buttons.right input.button,
	.buttons.right a.button {
		margin-right: 0;
		margin-left: 5px;
	}
	
	input.button,
	a.button,
	a.button:visited {
		color: #1E5B97;
		text-shadow: 1px 1px 0 #CCC;
		text-decoration: none;
		text-align: center;
		font-weight: bold;
		font-size: 16px;
		line-height: 36px;
		height: 36px;
		letter-spacing: 0.5px;
		
		border: 1px solid #B2B2B2;
		padding: 0 18px;
		cursor: pointer;
		white-space: nowrap;
		display: inline-block;
		outline: 0;
		
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
	}
	
	input.button {
		padding: 0 12px 2px;
		height: 38px;
	}
	
	input.button::-moz-focus-inner { 
		border: 0; 
	}
	
	input.button:hover,
	a.button:hover {
		text-shadow: none;
		text-decoration: none;
	}
	
	/*** small ***/
	input.button.small,
	a.button.small,
	a.button.small:visited {
		font-size: 14px;
		height: 28px;
		letter-spacing: 0;
		line-height: 28px;
		padding: 0 9px;
	}
	
	input.button.small {
		padding: 3px 8px 4px;
	}
	
	/*** big ***/
	input.button.big,
	a.button.big,
	a.button.big:visited {
		padding: 8px 16px 9px;
		font-size: 18px;
	}
	
	input.button.big {
		padding: 5px 13px 6px;
	}
	
	/*** lightgray ***/
	input.button.lightgray,
	a.button.lightgray {
		color: #818F9F;
		text-shadow: 1px 1px 0 #FFFFFF;
		border: 1px solid #ACBCCD;
	}
	
	input.button.lightgray:hover,
	a.button.lightgray:hover {
		text-shadow: none;
		color: #6990BA;
	}
	
	/*** gray cancel ***/
	input.button.gray,
	a.button.gray,
	input.button.cancel,
	a.button.cancel {
		color: #666;
		text-shadow: 1px 1px 0 #CCC;
		border: 1px solid #B0B0B0;
	}
	
	input.button.gray:hover,
	a.button.gray:hover,
	input.button.cancel:hover,
	a.button.cancel:hover {
		text-shadow: none;
	}
	
	/*** follow ***/
	input.button.follow,
	a.button.follow {
		color: #111;
		text-shadow: 1px 1px 0 #CCC;
		border-color: #bbbbbb;
	}
	
	input.button.follow:hover,
	a.button.follow:hover {
		text-shadow: none;
	}
	
	input.button.share,
	a.button.share {
		padding: 0 !important;
	}
	
	input.button.share .st_sharethis,
	a.button.share .st_sharethis {
		padding: 5px;
		display: inline-block;
	}
	
	/*** yellow ***/
	input.button.yellow,
	a.button.yellow {
		color: #0A50A1;
		text-shadow: 0 1px 0 #bdb3e2;
		border: 1px solid #999999;
	}
	
	input.button.yellow:hover,
	a.button.yellow:hover {
		text-shadow: none;
	}
	
	/*** next ***/
	a.button.next {
		padding-right: 25px;
	}
	
	/*** disabled ***/
	input.button.disabled,
	a.button.disabled,
	input.button.loading,
	a.button.loading,
	.box-pager .disabled {
		cursor: default;
		filter: alpha(opacity=40);
		filter: progid:DXImageTransform.Microsoft.Alpha(opacity=40);
		-moz-opacity: 0.40;
		opacity:0.4;
	}
	
	a.button.loading {
		padding-left: 25px;
	}
	
	a.button.loading .spinner {
		position: absolute;
		height: 16px;
		width: 16px;
		margin: -2px 0 0 -20px;
		display: none;
	}
	
	a.button.loading .spinner {
		display: block;
	}
	
	/*** with icons ***/
	a.button.has-icon {
		padding-left: 32px;
	}

	a.button.has-icon.big {
		padding-left: 38px;
	}

	a.button.has-icon .icon {
		position: absolute;
		height: 19px;
		width: 19px;
		margin: -3px 0 0 -26px;
	}
	
	a.button.has-icon.big .icon {
		margin-top: 0;
	}
	
	.tools-group a.button.has-icon,
	a.button .stButton .chicklets,
	a.button.no-label {
		padding-right: 0;
	}
	
	a.button .stButton .chicklets {
		margin-left: 1px;
		padding-left: 15px;
	}
	
	.tools-group a.button.has-icon {
		padding-left: 30px;
	}
	
	.tools-group a.button.has-icon .icon {
		margin-left: -23px;
	}
	
	a.button.has-icon.v2 {
		padding-left: 38px;
	}
	
	a.button.has-icon.v2 .icon {
		height: 22px;
		width: 28px;
		margin: -5px 0 0 -36px;
		border-right: 1px solid rgba(96, 96, 96, 0.3);
	}
	
	a.button.has-icon.v2.facebook .icon {
		border-color: rgba(24, 24, 24, 0.3);
	}
	
	.tools-group a.button.has-icon.v2 .icon {
		border-right: none;
	}
	
	/*** upload & mail ***/
	a.button.upload,
	a.button.mail,
	a.button.fullscreen {
		padding-right: 34px;
		position: relative;
	}
	
	a.button.upload .icon,
	a.button.mail .icon,
	a.button.fullscreen .icon {
		position: absolute;
		height: 21px;
		width: 19px;
		margin: -4px 10px 0 0;
		right: 0;
	}
	
	a.button.mail .icon {
		background-position: 0 -60px;
	}
	
	a.button.fullscreen .icon {
		background-position: 0 -80px;
	}
	
	a.button.big.upload {
		padding-right: 40px;
	}
	
	a.button.big.upload .icon {
		margin: -1px 13px 0 0;
	}
	
	/*** edit2, remove2 ***/
	a.button.edit2,
	a.button.remove2 {
		background-position: left -155px;
		padding-left: 22px;
	}
	
	a.button.edit2 .icon,
	a.button.remove2 .icon {
		height: 34px;
		margin: 1px 0 0 -20px;
		width: 36px;
	}
	
	td a.button.edit2,
	td a.button.remove2 {
		margin: 2px 4px 0 0px;
	}
	
	/*** follow ***/
	a.button.follow {
		padding-left: 30px;
	}
	
	a.button.follow .icon,
	a.button.favorite .icon,
	a.button.print .icon {
		position: absolute;
		height: 18px;
		width: 19px;
		margin: -2px 0 0 -23px;
	}
	
	/*** favorite ***/
	a.button.favorite,
	a.button.print {
		padding-left: 32px;
	}
	
	a.button.favorite .icon,
	a.button.print .icon {
		margin-left: -25px;
	}


/***  BOX-GRAY  ***/
	.box-gray {
		border: 1px solid #BABABA;
		position: relative;
	}
	
	.box-gray.box-big {
		font-size: 18px;
	}
	
	.box-gray.box-big .text-small {
		font-size: 14px;
	}
	
	.box-gray .box-title {
		padding: 12px 5px 10px;
		margin: 0 10px;
		border-bottom: 1px solid #BABABA;
	}
	
	.box-gray .box-title.clean {
		border-bottom: none;
		margin: 0;
		padding: 10px 10px 0;
	}
	
	.box-gray.box-big .box-title {
		font-weight: bold;
		font-size: 20px;
	}
	
	/*** v1 ***/
	.box-gray.v1 .box-title {
		margin: 0;
		padding-left: 15px;
		padding-right: 15px;
	}
	
	/*** v2 ***/
	.box-gray.v2 {
		background: transparent;
	}
	
	.box-gray.v2 .box-title {
		margin: 0;
		padding: 0 15px;
		font-size: 16px;
		line-height: 35px;
	}
	
	.box-gray.v1 > .content,
	.box-gray.v2 > .content {
		background: white;
	}
	
	.box-gray.box-curved > .content {
		 
	}
	
	
/***  TOOLTIP  ***/
	.tooltip-description.all .description,
	.tooltip-description > .description,
	.tooltip-description .form-item > .description,
	.tooltip-description .match_left > .description {
		display: none;
	}
	
	.tooltip-description.no-tooltip > .description,
	.tooltip-description .form-item.no-tooltip > .description {
		display: block;
	}
	
	.question {
		display: inline-block;
		height: 18px;
		margin: 0 3px 0 5px;
		width: 18px;
		cursor: pointer;
	}
	
	.question .description {
		display: none;
		position: absolute;
		z-index: 3000;
		border: 1px solid #666;
		background-color: white;
		padding: 5px 9px 6px !important;
		font-size: 11px !important;
		font-weight: normal;
		line-height: 1;
		max-width: 400px;
		margin: -24px 0 0 16px;
		
		filter: alpha(opacity=95);
		filter: progid:DXImageTransform.Microsoft.Alpha(opacity=95);
		-moz-opacity: 0.95;
		opacity:0.95;
	}
	
	.question:hover .description {
		/* display: block; */
	}
	
	
/*** GENERAL ***/
	.block,
	.block-mini,
	.block-big,
	.block-bigger {
		/*overflow: hidden;*/
	}
	
	.block {
		margin-bottom: 10px;
	}
	
	.block-mini {
		margin-bottom: 5px;
	}
	
	.block-big {
		margin-bottom: 20px;
	}
	
	.block-bigger {
		margin-bottom: 40px;
	}
	
	.separator {
		border-bottom: 1px solid #DDD;
		padding-bottom: 5px;
		margin-bottom: 10px;
	}
	
	.separator.v2 {
		border-bottom: 1px dotted #DDDDDD;
		padding-bottom: 10px;
		margin-bottom: 15px;
	}
	
	hr.separator {
		border-style: none none solid;
		padding: 0;
	}
	
	.box-center {
		margin-left: auto;
		margin-right: auto;
	}
	
	.center {
		text-align: center;
	}
	
	.right {
		text-align: right;
	}
	
	.left {
		text-align: left;
	}
	
	.content {
		padding: 10px;
	}
	
	.content-big {
		padding: 20px;
	}
	
	.error {
		color: #990000;
	}
	
	.ads,
	.hide {
		display: none;
	}
	
	.important,
	.highlight {
		background: #EBEBEB;
	}
	
	.bold {
		font-weight: bold;
	}
	
	.smaller {
		font-size: 11px;
		line-height: 14px;
	}
	
	.medium {
		line-height: 22px;
		font-size: 14px;
	}
	
	.large {
		line-height: 24px;
		font-size: 16px;
	}
	
	.larger {
		line-height: 24px;
		font-size: 18px;
	}
	
	.largest {
		line-height: 24px;
		font-size: 22px;
	}
	
	p.medium {
		padding-bottom: 10px;
	}
	
	p.large {
		padding-bottom: 15px;
	}
	
	.relative {
		position: relative;
	}
	
	.relative .top {
		position: absolute;
		top: 0;
	}
	
	.relative .bottom {
		position: absolute;
		bottom: 0;
	}
	
	.relative .left {
		position: absolute;
		left: 0;
	}
	
	.relative .right {
		position: absolute;
		right: 0;
	}
	
	.clickable {
		cursor: pointer;
	}
	
	.not-clickable {
		cursor: default;
	}
	
	li.krumo-footnote {
		display: none;
	}
	
	loading,
	div.loading {
		height: 75px;
		min-width: 75px;
	}

	.sizes a {
		background: #F7F4F4;
		color: #333;
		border: 1px solid #DDDDDD;
		float: left;
		margin: 0 5px;
		padding: 5px 10px;
	}
	
	.sizes a:hover,
	.sizes a.active {
		background: #E6E6E6;
		text-decoration: none;
	}
	
/*** FONTS ***/
	@font-face {
		font-family: 'ComfortaaThin';
		src: url('fonts/Comfortaa_Thin-webfont.eot');
		src: url('fonts/Comfortaa_Thin-webfont.eot?#iefix') format('embedded-opentype'),
			 url('fonts/Comfortaa_Thin-webfont.woff') format('woff'),
			 url('fonts/Comfortaa_Thin-webfont.ttf') format('truetype'),
			 url('fonts/Comfortaa_Thin-webfont.svg#ComfortaaThin') format('svg');
		font-weight: normal;
		font-style: normal;
	}
	
	@font-face {
		font-family: 'ComfortaaRegular';
		src: url('fonts/Comfortaa_Regular-webfont.eot');
		src: url('fonts/Comfortaa_Regular-webfont.eot?#iefix') format('embedded-opentype'),
			 url('fonts/Comfortaa_Regular-webfont.woff') format('woff'),
			 url('fonts/Comfortaa_Regular-webfont.ttf') format('truetype'),
			 url('fonts/Comfortaa_Regular-webfont.svg#ComfortaaRegular') format('svg');
		font-weight: normal;
		font-style: normal;
	}
	
	@font-face {
		font-family: 'ComfortaaBold';
		src: url('fonts/Comfortaa_Bold-webfont.eot');
		src: url('fonts/Comfortaa_Bold-webfont.eot?#iefix') format('embedded-opentype'),
			 url('fonts/Comfortaa_Bold-webfont.woff') format('woff'),
			 url('fonts/Comfortaa_Bold-webfont.ttf') format('truetype'),
			 url('fonts/Comfortaa_Bold-webfont.svg#ComfortaaBold') format('svg');
		font-weight: normal;
		font-style: normal;
	}
	
	@font-face {
		font-family: 'RalewayThin';
		src: url('fonts/raleway_thin-webfont.eot');
		src: url('fonts/raleway_thin-webfont.eot?#iefix') format('embedded-opentype'),
			 url('fonts/raleway_thin-webfont.woff') format('woff'),
			 url('fonts/raleway_thin-webfont.ttf') format('truetype'),
			 url('fonts/raleway_thin-webfont.svg#RalewayThin') format('svg');
		font-weight: normal;
		font-style: normal;
	}
	
	@font-face {
		font-family: 'HelveticaNeue-HeavyExt';
		src: url('fonts/HelveticaNeue-HeavyExt.eot');
		src: url('fonts/HelveticaNeue-HeavyExt.woff') format('woff'),
			 url('fonts/HelveticaNeue-HeavyExt.ttf') format('truetype'),
			 url('fonts/HelveticaNeue-HeavyExt.svg') format('svg');
		font-weight: normal;
		font-style: normal;
	}
	
	@font-face {
		font-family: 'HelveticaNeue-MediumExt';
		src: url('fonts/HelveticaNeue-MediumExt.eot');
		src: url('fonts/HelveticaNeue-MediumExt.woff') format('woff'),
			 url('fonts/HelveticaNeue-MediumExt.ttf') format('truetype'),
			 url('fonts/HelveticaNeue-MediumExt.svg') format('svg');
		font-weight: normal;
		font-style: normal;
	}
	
	@font-face {
		font-family: 'HelveticaNeue-ThinExt';
		src: url('fonts/HelveticaNeue-ThinExt.eot');
		src: url('fonts/HelveticaNeue-ThinExt.woff') format('woff'),
			 url('fonts/HelveticaNeue-ThinExt.ttf') format('truetype'),
			 url('fonts/HelveticaNeue-ThinExt.svg') format('svg');
		font-weight: normal;
		font-style: normal;
	}
	
	.fancy-text {
		font-family: RalewayThin, Tahoma, Helvetica, Arial, sans-serif;
		font-size: 11pt;
	}
	

/***  GRADIENTS  ***/
	.gradient-dark,
	.tipsy-inner {
		background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #323232), color-stop(1, #121212) );
		background: -moz-linear-gradient( center top, #323232 5%, #121212 100% );
		background-image: -o-linear-gradient(top, #323232 5%, #121212 100%);
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#323232', endColorstr='#121212');
		background-color: #121212;
	}
	
	.breadcrumb {
		background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #FFFFFF), color-stop(1, #F5F5F5) );
		background: -moz-linear-gradient( center top, #FFFFFF 5%, #F5F5F5 100% );
		background-image: -o-linear-gradient(top, #FFFFFF 5%, #F5F5F5 100%);
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#F5F5F5');
		background-color: #F5F5F5;
	}
	
	form .form-text,
	form .form-select {
		/*background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #F2F2F2), color-stop(1, #FEFEFE) );
		background: -moz-linear-gradient( center top, #F2F2F2 5%, #FEFEFE 100% );
		background-image: -o-linear-gradient(top,#F2F2F2 5%, #FEFEFE 100%);
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F2F2F2', endColorstr='#FEFEFE');
		background-color: #F2F2F2;*/
	}
	
	.gradient-dark.v2 {
		background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #1E1E1E), color-stop(1, #121212) );
		background: -moz-linear-gradient( center top, #1E1E1E 5%, #121212 100% );
		background-image: -o-linear-gradient(top, #1E1E1E 5%, #121212 100%);
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1E1E1E', endColorstr='#121212');
		background-color: #121212;
	}
	
	input.button,
	a.button,
	a.button:visited {
		/*background: -webkit-gradient( linear, left top, left bottom, color-stop(0.15, #FFFFFF), color-stop(1, #CBCBCB) );
		background: -moz-linear-gradient( center top, #FFFFFF 15%, #CBCBCB 100% );
		background-image: -o-linear-gradient(top,#FFFFFF 15%, #CBCBCB 100%);
		filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#CBCBCB');
		background-color: #CBCBCB;*/
		background: url(../images/layout/buttons.png) repeat-x scroll left -2px white;
	}
	
	input.button:hover,
	a.button:hover {
		/*background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #F9F9F9), color-stop(1, #DEDEDE) );
		background: -moz-linear-gradient( center top, #F9F9F9 5%, #DEDEDE 100% );
		background-image: -o-linear-gradient(top,#F9F9F9 5%, #DEDEDE 100%);
		filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#F9F9F9', endColorstr='#DEDEDE');
		background-color: #DEDEDE;*/
		background-position: left -53px;
	}
	
	input.button:active,
	a.button:active {
		/*background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #EAEAEA), color-stop(1, #F2F2F2) );
		background: -moz-linear-gradient( center top, #EAEAEA 5%, #F2F2F2 100% );
		background-image: -o-linear-gradient(top,#EAEAEA 5%, #F2F2F2 100%);
		filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#EAEAEA', endColorstr='#F2F2F2');
		background-color: #F2F2F2;*/
		background-position: left -104px;
		
		color: white;
		text-shadow: 1px 1px 0 #5B5B5B;
	}
	
	/* blue */
	input.button.blue,
	a.button.blue,
	a.button.blue:visited {
		background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #74D3FF), color-stop(1, #4AB3F4) );
		background: -moz-linear-gradient( center top, #74D3FF 5%, #4AB3F4 100% );
		background-image: -o-linear-gradient(top, #74D3FF 5%, #4AB3F4 100%);
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#74D3FF', endColorstr='#4AB3F4');
		background-color: #4AB3F4;
	}
	
	input.button.blue:hover,
	a.button.blue:hover {
		background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #43bff5), color-stop(1, #0095ef) );
		background: -moz-linear-gradient( center top, #43bff5 5%, #0095ef 100% );
		background-image: -o-linear-gradient(top, #43bff5 5%, #0095ef 100%);
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#43bff5', endColorstr='#0095ef');
		background-color: #43bff5;
	}
	
	input.button.blue:active,
	a.button.blue:active {
		background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #22A3F2), color-stop(1, #3DBAF4) );
		background: -moz-linear-gradient( center top, #22A3F2 5%, #3DBAF4 100% );
		background-image: -o-linear-gradient(top, #22A3F2 5%, #3DBAF4 100%);
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#22A3F2', endColorstr='#3DBAF4');
		background-color: #3DBAF4;
	}
	
	/*** lightgray ***/
	input.button.lightgray,
	a.button.lightgray {
		background:-webkit-gradient( linear, left top, left bottom, color-stop(0.20, #FFFFFF), color-stop(1, #F7F7F7) );
		background:-moz-linear-gradient( center top, #FFFFFF 20%, #F7F7F7 100% );
		background-image: -o-linear-gradient(top,#FFFFFF 20%, #F7F7F7 100%);
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#F7F7F7');
		background-color: #F7F7F7;
	}
	
	input.button.lightgray:hover,
	a.button.lightgray:hover {
		background:-webkit-gradient( linear, left -3px, left bottom, color-stop(0.05, #FFFFFF), color-stop(1, #F7F7F7) );
		background:-moz-linear-gradient( center -3px, #FFFFFF 5%, #F7F7F7 100% );
		background-image: -o-linear-gradient(top,#FFFFFF 5%, #F7F7F7 100%);
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#F7F7F7');
		background-color: #F7F7F7;
	}
	
	input.button.lightgray:active,
	a.button.lightgray:active {
		background:-webkit-gradient( linear, left top, left bottom, color-stop(-0.30, #F7F7F7), color-stop(1, #FFFFFF) );
		background:-moz-linear-gradient( center top, #F7F7F7 -30%, #FFFFFF 100% );
		background-image: -o-linear-gradient(top,#F7F7F7 -30%, #FFFFFF 100%);
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F7F7F7', endColorstr='#FFFFFF');
		background-color: #FFFFFF;
	}
	
	/*** gray cancel ***/
	input.button.gray,
	a.button.gray,
	input.button.cancel,
	a.button.cancel {
		background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #FCFCFC), color-stop(1, #DEDEDE) );
		background: -moz-linear-gradient( center top, #FCFCFC 5%, #DEDEDE 100% );
		background-image: -o-linear-gradient(top,#FCFCFC 5%, #DEDEDE 100%);
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FCFCFC', endColorstr='#DEDEDE');
		background-color: #DEDEDE;
	}
	
	input.button.gray:hover,
	a.button.gray:hover,
	input.button.cancel:hover,
	a.button.cancel:hover {
		background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #F9F9F9), color-stop(1, #DEDEDE) );
		background: -moz-linear-gradient( center top, #F9F9F9 5%, #DEDEDE 100% );
		background-image: -o-linear-gradient(top,#F9F9F9 5%, #DEDEDE 100%);
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F9F9F9', endColorstr='#DEDEDE');
		background-color: #DEDEDE;
	}
	
	input.button.gray:active,
	a.button.gray:active,
	input.button.cancel:active,
	a.button.cancel:active {
		background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #EAEAEA), color-stop(1, #F2F2F2) );
		background: -moz-linear-gradient( center top, #EAEAEA 5%, #F2F2F2 100% );
		background-image: -o-linear-gradient(top,#EAEAEA 5%, #F2F2F2 100%);
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#EAEAEA', endColorstr='#F2F2F2');
		background-color: #F2F2F2;
	}
	
	/*** follow ***/
	input.button.follow,
	a.button.follow {
		background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #fefefe), color-stop(1, #dddddd) );
		background: -moz-linear-gradient( center top, #fefefe 5%, #dddddd 100% );
		background-image: -o-linear-gradient(top,#fefefe 5%, #dddddd 100%);
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fefefe', endColorstr='#dddddd');
		background-color: #dddddd;
	}
	
	input.button.follow:hover,
	a.button.follow:hover {
		background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #F9F9F9), color-stop(1, #DEDEDE) );
		background: -moz-linear-gradient( center top, #F9F9F9 5%, #DEDEDE 100% );
		background-image: -o-linear-gradient(top,#F9F9F9 5%, #DEDEDE 100%);
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F9F9F9', endColorstr='#DEDEDE');
		background-color: #DEDEDE;
	}
	
	input.button.follow:active,
	a.button.follow:active {
		background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #EAEAEA), color-stop(1, #F2F2F2) );
		background: -moz-linear-gradient( center top, #EAEAEA 5%, #F2F2F2 100% );
		background-image: -o-linear-gradient(top,#EAEAEA 5%, #F2F2F2 100%);
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#EAEAEA', endColorstr='#F2F2F2');
		background-color: #F2F2F2;
	}
	
	/*** yellow ***/
	input.button.yellow,
	a.button.yellow {
		background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #fff9c1), color-stop(1, #fed81c) );
		background: -moz-linear-gradient( center top, #fff9c1 5%, #fed81c 100% );
		background-image: -o-linear-gradient(top,#fff9c1 5%, #fed81c 100%);
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9c1', endColorstr='#fed81c');
		background-color: #FFDB2C;
	}
	
	input.button.yellow:hover,
	a.button.yellow:hover {
		background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #FFF59C), color-stop(1, #fed81c) );
		background: -moz-linear-gradient( center top, #FFF59C 5%, #fed81c 100% );
		background-image: -o-linear-gradient(top,#FFF59C 5%, #fed81c 100%);
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF59C', endColorstr='#fed81c');
		background-color: #ffe14c;
	}
	
	input.button.yellow:active,
	a.button.yellow:active {
		background:-webkit-gradient( linear, left top, left bottom, color-stop(-0.30, #FFDF45), color-stop(1, #FFEA83) );
		background:-moz-linear-gradient( center top, #FFDF45 -30%, #FFEA83 100% );
		background-image: -o-linear-gradient(top,#FFDF45 -30%, #FFEA83 100%);
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFDF45', endColorstr='#FFEA83');
		background-color: #FFEA83;
	}
	
	/*** blue2 ***/
	input.button.blue2,
	a.button.blue2 {
		background: -moz-linear-gradient(90deg, #3570b8, #5e9ae2);
	}
	
	
/***  BOX-CURVED  ***/
	.box-curved-small,
	.tipsy-inner,
	.box-pager a,
	.question .description,
	.sizes a,
	.breadcrumb,
	#autocomplete li,
	form .invalid .field_error,
	form .required .field_error,
	.box-pager span {
		border-radius: 3px;
		-moz-border-radius: 3px;
		-khtml-border-radius: 3px;
		-webkit-border-radius: 3px;
	}
	
	.box-curved,
	.follow-us .item,
	.messages-wrapper .messages,
	input.button,
	a.button,
	#tooltip,
	#autocomplete,
	form .form-box {
		border-radius: 5px;
		-moz-border-radius: 5px;
		-khtml-border-radius: 5px;
		-webkit-border-radius: 5px;
	}
	
	.box-curved-top,
	.box-gray.box-curved .box-title {
		border-radius: 5px 5px 0 0;
		-moz-border-radius: 5px 5px 0 0;
		-khtml-border-radius: 5px 5px 0 0;
		-webkit-border-radius: 5px 5px 0 0;
	}
	
	.box-curved-bottom,
	.box-gray.box-curved > .content {
		border-radius: 0 0 5px 5px;
		-moz-border-radius: 0 0 5px 5px;
		-khtml-border-radius: 0 0 5px 5px;
		-webkit-border-radius: 0 0 5px 5px;
	}
	
	loading,
	div.loading,
	.box-curved10 {
		border-radius: 10px;
		-moz-border-radius: 10px;
		-khtml-border-radius: 10px;
		-webkit-border-radius: 10px;
	}
	
	.box-curved10-top,
	#footer .box-gray {
		border-radius: 10px 10px 0 0;
		-moz-border-radius: 10px 10px 0 0;
		-khtml-border-radius: 10px 10px 0 0;
		-webkit-border-radius: 10px 10px 0 0;
	}
	
	.box-curved10-bottom,
	header ul.box-menu li .box-menu {
		border-radius: 0 0 10px 10px;
		-moz-border-radius: 0 0 10px 10px;
		-khtml-border-radius: 0 0 10px 10px;
		-webkit-border-radius: 0 0 10px 10px;
	}
	
	.no-box-curved,
	.box-pager .dropdown ul li a,
	#tooltip.pretty {
		border-radius: 0;
		-moz-border-radius: 0;
		-khtml-border-radius: 0;
		-webkit-border-radius: 0;
	}
	
	
/***  BOX-COLUMNS  ***/
	.columns,
	.columns .column {
		overflow: hidden;
	}
	
	.columns .column {
		width: 50%;
		float: left;
		display: inline;
		margin: 0;
	}
	
	.columns .column.last {
		float: right;
	}
	
	/*.box-gray .content,*/
	.columns .content {
		padding: 10px;
		overflow: hidden;
	}
	
	.box-gray .content-medium {
		padding: 25px 40px 25px 10px;
	}
	
	.columns.wide .column > .content {
		padding: 0 10px 0 0;
	}
	.columns.wide .column.last > .content {
		padding: 0 0 0 10px;
	}
	
	.columns > .content {
		padding: 0;
	}
	
	.columns.divided .column .content,
	.columns.divided .row .content {
		border-width: 1px;
		border-style: none solid none none;
		border-color: #DDD;
	}
	
	.columns.divided .row .content {
		border-style: solid none none;
	}
	
	.columns.divided .column.last .content {
		border-style: none;
	}
	
	.columns.columns3 > .column {
		width: 33.3%;
	}
	
	.columns.columns4 > .column {
		width: 25%;
	}
	
	/* 12 columns, 960px width */
	.columns .column_1 {width: 60px;}
	.columns .column_2 {width: 140px;}
	.columns .column_3 {width: 220px;}
	.columns .column_4 {width: 300px;}
	.columns .column_5 {width: 380px;}
	.columns .column_6 {width: 460px;}
	.columns .column_7 {width: 540px;}
	.columns .column_8 {width: 620px;}
	.columns .column_9 {width: 700px;}
	.columns .column_10 {width: 780px;}
	.columns .column_11 {width: 860px;}
	.columns .column_12 {width: 940px;}
	
	
/*** BOX-SHADOWS ***/
	.breadcrumb {
		box-shadow: 0 1px 0 #FFFFFF inset;
		-moz-box-shadow: 0 1px 0 #FFFFFF inset;
		-webkit-box-shadow: 0 1px 0 #FFFFFF inset;
	}
	
	.tipsy-inner,
	#tooltip {
		box-shadow: 1px 1px 4px -1px #323232;
		-moz-box-shadow: 1px 1px 4px -1px #323232;
		-webkit-box-shadow: 1px 1px 4px -1px #323232;
	}
	
	.no-shadow,
	.box-pager .dropdown a.button .icon,
	.box-pager .dropdown ul a,
	#tooltip.pretty {
		box-shadow: none;
		-moz-box-shadow: none;
		-webkit-box-shadow: none;
	}
	

/* Autocomplete styles */
#autocomplete {
	border-color: #999;
	width: auto !important;
	
	border-radius: 5px;
	-moz-border-radius: 5px;
	-khtml-border-radius: 5px;
	-webkit-border-radius: 5px;
}

#autocomplete ul {
	background: #F5F5F5;
	padding: 1px;
}

#autocomplete li {
	padding: 1px 5px;
	background: transparent;
	color: #333;
}

#autocomplete li.selected {
	background: #466FB0;
}

.social-media {
	
}

.social-media a.button {
	background: url(../images/layout/social_media_icns.png) no-repeat scroll -7px -4px transparent;
	height: 38px;
	width: 40px;
	padding: 0;
	border: none;
}

.social-media a.button.last {
	margin-right: 0;
}

.social-media a.fb {
	background-position: -7px -4px;
}

.social-media a.tw {
	background-position: -53px -4px;
}

.social-media a.lin {
	background-position: -100px -4px;
}

.social-media a.gp {
	background-position: -147px -4px;
}

.social-media a.pin {
	background-image: url("../images/layout/social_media_icns.png");
	background-position: -194px -4px;
}

.social-media .Bg .Qo {

}

.social-media .Qo {
    height: 40px;
    width: 40px;
}

.marketing a img{
  height: 40px;
  background: #fff;
  margin: 0px 10px 10px 0px;
  padding: 5px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -khtml-border-radius: 8px;
  border-radius: 8px;
}

.share-tools {
	
}

.share-tools .column {
	padding-top: 5px;
}

.share-tools .column .link-tools {
	width: 450px;
	position: relative;
}

.share-tools .column .link-tools .form-text {
	width: 400px;
	height: 36px;
	padding: 0 14px;
}

.share-tools .column .link-tools a,
.share-tools .column .link-tools .clip_container {
	float: right;
}

.share-tools .column .link-tools a {
	border-left: 1px solid #666666;
	margin: 0 5px;
	padding-left: 6px;
}

.share-tools .column .link-tools .clip_container {
	position: absolute;
	right: 70px;
}

.share-tools .button,
.share-tools .social-media  {
	float: left;
	margin-right: 10px;
}

.share-tools .social-media {
	margin-right: 0;
}

.node-id {
	background: #FAFAFA;
	border: 1px solid #DDDDDD;
	line-height: 27px;
	margin-bottom: 10px;
	padding: 0 10px;
	position: absolute;
	left: 10px;
	top: 0;

	filter: alpha(opacity=40);
	filter: progid:DXImageTransform.Microsoft.Alpha(opacity=40);
	-moz-opacity: 0.40;
	opacity: 0.4;
}

.node-id:hover {
	filter: alpha(opacity=100);
	filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
	-moz-opacity: 1;
	opacity:1;
}

.node-wrapper-19 h1.title {
	display: none;
}

/*** SIGNUP POPUP ***/
.popup #login-signup {
	/*background: url(../images/layout/items-or.png) no-repeat scroll 437px 20px transparent;*/
}

.popup #login-signup form .field_error {
	top: 5px;
}

.popup #login-signup #contact_information .field_error {
	top: -3px;
}

.popup #login-signup form {
	margin: 10px auto;
    /* width: 380px; */
}

.popup #login-signup form#user_login .form-item {
	float: left;
}

.popup #login-signup form .form-item {
	margin-right: 10px;
	margin-bottom: 20px;
}

.popup #login-signup label {
	font-weight: normal;
}

.popup #login-signup hr {
	background-color: #DDDDDD;
    border: 0 none;
    height: 1px;
}

.popup #login-signup .container-inline {
	padding-bottom: 5px;
}

.popup #login-signup .container-inline .form-item {
	position: relative;
	display: inline-block;
	height: 48px;
	margin-bottom: 3px;
	float: left;
}

.popup #login-signup .col_captcha label {
	position: absolute;
	left: 0px;
	top: 30px;
}

.popup #login-signup .form-text {
	width: 250px;
}

.popup #login-signup .container-inline .form-text {
	width: 190px;
	margin-right: 5px;
}

.popup #login-signup .town.container-inline #edit-field_state {
	width: 40px;
}

.popup #login-signup .town.container-inline #edit-field_zip {
	width: 96px;
}

.popup #login-signup .signup .match_left.buttons {
    float: right;
    left: -217px;
    position: relative;
    top: -5px;
    width: 250px;
}

.popup #login-signup .userpass {
	width: 300px;
	padding-bottom: 0px;
}

.popup #login-signup .col_captcha {
    height: 100px;
    left: 0;
    position: relative;
    top: -1px;
    width: 300px;
}

.popup #login-signup .col_captcha .form-item {
	margin: 0px;
	height: auto;
	overflow: visible;
}

.popup #login-signup .col_captcha label {
	top:84px;
}

.popup #login-signup .container-inline .dropdown {
    width: 208px;
    margin-right: 5px;
}

.popup #login-signup .pwd {
    margin-bottom: 0;
    padding-bottom: 0;
}

.popup .pwd span.field-suffix {
	position: absolute;
    right: 0;
    top: 30px;
}

	.popup #login-signup form .pwd .form-item,
	.popup #login-signup form .userpass .form-item {
		display: block;
		float: none;
	}
	
	#login-signup-popup .container > .content,
	#login-signup-popup .columns,
	#login-signup-popup .columns .column,
	#login-signup-popup .columns .content {
		overflow: visible;
	}
	
.popup p.red {
	text-align: justify;
	width: 700px;
	font-size: 14px;
	color: red;
	font-weight: bold;
}

/* autocomplete styling */
.popup .container-inline .autocomplete-wrapper div, 
.popup form .container-inline .autocomplete-wrapper label {
	display: block;
}

.popup .container-inline .autocomplete-wrapper .autocomplete-clear,
.popup .container-inline .autocomplete-wrapper .autocomplete-container div.results_container {
	display: none;
}

.popup .container-inline .autocomplete-wrapper .autocomplete-autosize .autocomplete-input {
	min-width: 181px;
}

.popup .autocomplete-container div.results_container .description {
	display: none;
}

/*** BRAND WRAP ***/
.brandWrap {}

.brandWrap h1 {
	font-size: 17px;
	border-bottom: none;
	width: 650px;
	margin: auto;
}
.brandWrap p {
	color: #333;
	width: 650px;
	margin: auto;
}
.brandWrap .view-catalogs {
	margin-top: 40px;
}


/*** NAVIGATION ***/
#main-parent .node-type-catalog-cover {
	margin: auto;
    width: 948px;
}
	
.navigation {
	background-image: url(../images/layout/navigation_bar.png);
	width: 931px;
	height: 48px;
	margin: auto;
	margin-bottom: 15px;
	background-repeat: repeat-y;
}

.step1 {
	background-position: center -46px;
}
	
.step2 {
	background-position: center -92px;
}

.step3 {
	background-position: center -139px;
}
	.navigation ul {
		margin: 0px;
	}
	
	.navigation ul li {
		float: left;
		list-style: none;
		height: 48px;
	    line-height: 48px;
	    color: #FFF;
	    font-size: 17px;
	}
		.navigation li.choose {
			width: 310px;
		}
		
		.navigation li.brand {
			width: 320px;
		}
	
		.navigation ul li.current {
			color: #1E5B97;
      		font-weight: bold;
		}

.redemption_form {
	margin: auto;
    width: 400px;
    text-align: center;
}		

.redemption_form form .form-box {
	background-color: transparent;
	background-image: none;
	border: none;
}

	.redemption_form .oneline-fields label.title {
		float: none;
		margin-right: 0px;
		width: 100%;
		margin-bottom: 20px;
		text-align: center;
		border-bottom: none;
		font-size: 18px;
	}
	
	.redemption_form form .input_wrapper, .redemption_form form .match_left {
		margin-left: 0px;
	}
	
	.redemption_form form input.start, .redemption_form form .form-text {
		width: 200px
	}
	
	.redemption_form form .form-text {
		padding: 0px;
	}
	
	.redemption_form form label .form-required {
		float: none;
	}
	
	
/*** USER CATALOGS ***/
.catalogs-list tbody tr.odd td.active {
	background-color: #F4F4F4
}

.catalogs-list tr.even:hover, 
.catalogs-list tr.odd:hover,
.catalogs-list tr.even:hover td.active,
.catalogs-list tr.odd:hover td.active {
	background-color: #E7E7E7
}

.catalogs-list .even, .catalogs-list .even td.active {
	background-color: #FFF
}

.imgcaptcha {
}
	
.inline {
	display: inline;
}

.m_b_10 {
	margin-bottom: 10px;
	height: 40px;
}

/* -----------UBERCART-----------*/
#cart-form-products td.desc .item-list .product-description {
	list-style: none outside none;
    margin: 0;
    padding: 0;
}

#cart-form-products .product-description .first {
	display: none;
}

.add-to-cart .form-content div.attributes, 
.add-to-cart .form-content div.catalog_image {
	float: left;
	width: 45%;
}

.add-to-cart .form-content div.attributes .attribute label {
	display: block;
    float: none;
    width: 160px;
}

.add-to-cart .form-content div.attributes .attribute .input_left {
	margin-left: 0px;
}

.add-to-cart .form-content div.attributes .attribute .input_left .form-file {

}

#cart-form-products .image {
	padding: 0px;
}

.product-description {
	list-style: none outside none;
    margin: 0;
    padding: 0;
}

	.product-description .last {
		display: none;
	}
	
td.product a {
}

#extra_information-pane {
	padding-top: 0
}

	#extra_information-pane legend {
		display: none
	}
	
	#extra_information-pane table {
		margin-top: 0px
	}
	
	#extra_information-pane .fieldset-wrapper,
	.form-content  .fieldset-wrapper {
		border-left: 0px
	}
	
	#edit-panes-extra-information-information-ucxf-ext {
		width: 40px;
	}
	
	.add-to-cart .oneline-fields label.title {
		float: none;
	}
	
	.add-to-cart .form-content .form-required {
		float: none
	}
	
	.add-to-cart div.filefield {
		margin-left: 0;
	}

/* -----------USER BLOCK-----------*/
.region #block-user-0 {
	top: 0px;
}

.new-login-button {
  color: #fff;
  padding: 8px 25px 8px 25px;
  height: initial;
  line-height: initial;
  font-size: 13px;
  font-weight: normal;
  font-family: Helvetica, Arial, sans-serif;
  background: #00A2E1;
  border: none;
  text-shadow: none;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -khtml-border-radius: 3px;
  -webkit-border-radius: 3px;
}
.new-login-button.white {
  background: #ffffff;
  color:#00A2E1;
}

#block-logintoboggan-0 .content div {
	padding: 10px 5px 5px 5px;
	height: 29px;
}

#edit-field-sort-0-value-wrapper {
	display: none;
}

#edit-field-cover-status-value-wrapper {
	display: none;
}

.lpChatBtn {
	display: none;
}

.panel-display .box-gray ul.menu li .hide {
	display: none;
}

#contact-info-display {
	display: block;
	height: 120px;
    overflow: auto;
}

/* supplier wizard form*/
#edit-select-distributor-form .match_left {
	margin-left: 0px;
}

#edit-select-distributor-form #edit-next {
	margin-bottom: 20px;
}

#edit-adduser {
	display: block;
	margin-top: 0px;	
}

#edit-select-catalog-form .form-radios {
}

#edit-select-catalog-form .form-radios .form-item {
	height: 135px;
	float: left;
	margin-left: 10px;
}

#edit-select-catalog-form .form-radio {
	float: left;
}

#edit-select-catalog-form .form-item .option div {
	margin-left: 10px;
	float: left;
}

#edit-select-catalog-form .form-item .option div span {
	display: block;
}

#edit-select-catalog-form .match_left {
	clear: both;
}

#node-admin-filter dl.multiselect dd .form-item {
	width: 25em;
}

#node-admin-filter dl.multiselect dd .form-item .container-inline {
	margin-bottom: 2px;
}

#node-admin-filter dl.multiselect dd.b input {
    width: 20.8em;
}

dl.multiselect dd.b, dl.multiselect dd.b .form-item, dl.multiselect dd.b select,
#node-admin-filter dl.multiselect dd.b select {
    width: 24em;
}

#node-admin-buttons {
    margin-left: 3em;
}

#edit-select-catalog-form #edit-next {
	display: none;
}

a.ci-wrapper {
	width: 155px;
	display: block;
	background-color: #1E5B97;
	color: white;
	padding: 5px;
	text-align: center;
	margin-top: 10px;
}

	a.ci-wrapper:hover {
		text-decoration: none;
	}
	
.attach-logo-custom .filefield-element .imagefield-preview {
	max-width: 150px;
}

/* Locale block */
#block-locale-0 {
  float: right;
}

#block-locale-0 .languages-block {
	padding: 25px 5px 8px 15px;
	overflow: hidden;
}

.logged-in #block-locale-0 .languages-block {
	padding-top: 15px;
}

#block-locale-0 .content {
	padding: 0px; margin: 0px;
}

#block-locale-0 ul,
#block-locale-0 li {
	margin: 0px;
	padding: 0px;
	list-style: none;
}

#block-locale-0 li {
	float: left;
	margin-right: 5px;
}

#block-locale-0 li.active a {
	color: #000;
	text-decoration: underline
}

#block-locale-0 li a {
	display: block;
}

#block-locale-0 li.en {
	margin-right: 5px;
}

body.admin-menu {
    margin-top: 22px !important;
}

#admin-menu {
    font-size: 10px;
    height: 22px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

#admin-menu li li {
	filter:Alpha(opacity=100);
	opacity: 1;
}

li.nosc {
  padding-left: 10px !important;
  border-left: 1px solid #E6E6E6;
}

li.nosc-first {
  padding-right: 10px !important;
  border-right: 1px solid #E6E6E6;
}

.uppercase {
	text-transform: uppercase;
}
