@media all
{
 /*------------------------------------------------------------------------------------------------------*/

 /**
  * @section browser reset
  * @see     http://www.yaml.de/en/documentation/css-components/base-stylesheet.html
  */

  /* (en) Global reset of paddings and margins for all HTML elements */
  /* (de) Globales Zurücksetzen der Innen- und Außenabstände für alle HTML-Elemente */
  * { margin:0; padding: 0; }

  /* (en) Correction: margin/padding reset caused too small select boxes. */
  /* (de) Korrektur: Das Zurücksetzen der Abstände verursacht zu kleine Selectboxen. */
  option { padding-left: 0.4em; }

 /**
  * (en) Global fix of the Italics bugs in IE 5.x and IE 6
  * (de) Globale Korrektur des Italics Bugs des IE 5.x und IE 6
  *
  * @bugfix
  * @affected   IE 5.x/Win, IE6
  * @css-for    IE 5.x/Win, IE6
  * @valid      yes
  */
  * html body * { overflow:visible; }
  * html iframe, * html frame { overflow:auto; }
  * html frameset { overflow:hidden; }

  /* (en) Forcing vertical scrollbars in Netscape, Firefox and Safari browsers */
  /* (de) Erzwingen vertikaler Scrollbalken in Netscape, Firefox und Safari Browsern */
  /* html { height: 100%; } */
  body {
    /* (en) Fix for rounding errors when scaling font sizes in older versions of Opera browser */
    /* (de) Beseitigung von Rundungsfehler beim Skalieren von Schriftgrößen in älteren Opera Versionen */
    font-size: 100.01%;

    /* (en) Standard values for colors and text alignment */
    /* (de) Vorgabe der Standardfarben und Textausrichtung */
    color: #000;
    background: #fff;
    text-align: left;
  }

  /* (en) Clear borders for <fieldset> and <img> elements */
  /* (de) Rahmen für <fieldset> und <img> Elemente löschen */
  fieldset, img { border: 0 solid; }

  /* (en) new standard values for lists, blockquote and cite */
  /* (de) Neue Standardwerte für Listen & Zitate */
  ul, ol, dl { margin: 0 0 1em 1em }
  li { margin-left: 0;}

  dt { font-weight: bold; }
  dd { margin: 0 0 1em 2em; }

  blockquote { margin: 0 0 1em 1.5em; }

 /*------------------------------------------------------------------------------------------------------*/

 /**
  * @section base layout | Basis Layout
  * @see     http://www.yaml.de/en/documentation/css-components/base-stylesheet.html
  *
  * |-------------------------------|
  * | #header                       |
  * |-------------------------------|
  * | #col1   | #col3     | #col2   |
  * | 200 px  | flexible  | 200px   |
  * |-------------------------------|
  * | #footer                       |
  * |-------------------------------|
  */

  #header { position:relative; }

  /* (en) Text Alignment for #topnav content */
  /* (de) Textausrichtung für #topnav Inhalte */
  #topnav { text-align: right; } 

  /* (en) Absolute positioning only within #header */
  /* (de) Absolute Positionierung erfolgt nur innerhalb von #header */
  #header #topnav {
    position:absolute;
    top: 10px;
    right: 10px;
  }

  /* (en) Backup for correct positioning */
  /* (de) Absicherung korrekte Positionierung */
  #header, #nav, #main, #footer { clear:both; }

  /* (en/de) Standard: 200 Pixel */
  #col1 { float: left;  }
  /* (en/de) Standard: 200 Pixel */
  #col2 { float:right; width: 200px }
  /* (en) Standard: center column with flexible width */
  /* (de) Standard: Flexible mittlere Spalte */
  #col3 { width:auto; margin: 0 200px }

  /* (en) Preparation for absolute positioning within content columns */
  /* (de) Vorbereitung für absolute Positionierungen innerhalb der Inhaltsspalten */
  #col1_content, #col2_content, #col3_content { position:relative; }

 /*------------------------------------------------------------------------------------------------------*/

 /**
  * @section generic classes for layout switching | Generische Klassen zur Layoutumschaltung
  * @see     http://www.yaml.de/en/documentation/css-components/base-stylesheet.html
  *
  * .hidecol1 -> 2-column-layout (using #col2 and #col3)
  * .hidecol2 -> 2-column-layout (using #col1 and #col3)
  * .hideboth -> single-column-layout (using #col3)
  */

  .hideboth #col3 { margin-left: 0; margin-right: 0; }
  .hidecol1 #col3 { margin-left: 0; margin-right: 200px; }
  .hidecol2 #col3 { margin-left: 200px; margin-right: 0; }

  .hideboth #col1, .hideboth #col2, .hidecol1 #col1, .hidecol2 #col2 { display:none; }

 /*------------------------------------------------------------------------------------------------------*/

 /**
  * @section clearing methods
  * @see     http://yaml.de/en/documentation/basics/general.html
  */

  /* (en) clearfix method for clearing floats */
  /* (de) Clearfix-Methode zum Clearen der Float-Umgebungen */
   .clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }

  /* (en) essential for Safari browser !! */
  /* (de) Diese Angabe benötigt der Safari-Browser zwingend !! */
  .clearfix { display: block; }

  /* (en) overflow method for clearing floats */
  /* (de) Overflow-Methode zum Clearen der Float-Umgebungen */
  .floatbox { overflow:hidden; }

  /* (en) IE-Clearing: Only used in Internet Explorer, switched on in iehacks.css */
  /* (de) IE-Clearing: Benötigt nur der Internet Explorer und über iehacks.css zugeschaltet */
  #ie_clearing { display: none; }

 /*------------------------------------------------------------------------------------------------------*/

 /**
  * @section subtemplates
  * @see     http://www.yaml.de/en/documentation/practice/subtemplates.html
  */

  .subcolumns { width: 100%; overflow:hidden; }

  /* (en) alternative class for optional support of old Mozilla/Netscape browers */
  /* (de) Alternative Klasse zur optionalen Unterstützung alter Mozilla/Netscape-Brower */
  .subcolumns_oldgecko { width: 100%; float:left; }

  .c50l, .c25l, .c33l, .c38l, .c66l, .c75l, .c62l {float: left; }
  .c50r, .c25r, .c33r, .c38r, .c66r, .c75r, .c62r {float: right; margin-left: -5px; }

  .c25l, .c25r { width: 25%; }
  .c33l, .c33r { width: 33.333%; }
  .c50l, .c50r { width: 50%; }
  .c66l, .c66r { width: 66.666%; }
  .c75l, .c75r { width: 75%; }
  .c38l, .c38r { width: 38.2%; }
  .c62l, .c62r { width: 61.8%; }

  .subc  { padding: 0 0.5em; }
  .subcl { padding: 0 1em 0 0; }
  .subcr { padding: 0 0 0 1em; }

 /*------------------------------------------------------------------------------------------------------*/

 /**
  * @section hidden elements | Versteckte Elemente
  * @see     http://www.yaml.de/en/documentation/basics/skip-links.html
  *
  * (en) skip links and hidden content
  * (de) Skip-Links und versteckte Inhalte
  */

  /* (en) classes for invisible elements in the base layout */
  /* (de) Klassen für unsichtbare Elemente im Basislayout */
  .skip, .hideme, .print {
    position: absolute;
    top: -1000em;
    left: -1000em;
    height: 1px;
    width: 1px;
  }

  /* (en) make skip links visible when using tab navigation */
  /* (de) Skip-Links für Tab-Navigation sichtbar schalten */
  .skip:focus, .skip:active {
    position: static;
    top: 0;
    left: 0;
    height: auto;
    width: auto;
  }
}



/* CONTENT.CSS */
html {
    overflow-y: auto;
    _overflow-x: hidden;
}
html.height {
    height: 100%;
    overflow: hidden;
}
body {
    background: none repeat scroll 0 0 #FFFFFF;
    color: #333333;
    font: 13px/1.231 Verdana,Geneva,sans-serif;
}
body#login { height: auto; background-color: #F3F3F3; }
#page_margins {
    margin: 0 auto;
}
#page_margins {
    width: auto;
    min-width: 740px;
    height: 100%;
}
#page {
    margin: 0;
    position: relative;
    min-height: 100%;
    _height: 100%;
    min-width: 1009px;
}
#header,
#browse-nav {
    background-color: #5E5E5E;
    color: white;
    font-family: 'Lato', Verdana, Geneva, sans-serif;
    text-transform: uppercase;
    z-index: 502;
    #z-index: 40;
    width: 100%;
    min-width: 1009px;
    _width: expression(document.body.clientWidth < 1009? "1009px": "auto" );
    position: fixed;
    top: 0;
    #width: 100%;
}
.ie6 #header, .ie7 #header, .ie8 #header {
    font-family: Verdana, Geneva, sans-serif;
}
#header {
    height: 44px;
    padding: 0;
}
#headerCenter {
    background: none repeat scroll 0 0 #5E5E5E;
    position: relative;
    z-index: 10;
    *height: 44px;
}
#header #nav {
    display: inline-block;
    vertical-align: top;
    zoom: 1;
    *display: inline;
    *float: none;
    _display: none;
    _width: 800px;
}
body.detail #main {
    background-color: #E4E4E4;
    padding-bottom: 0;
    margin-top: 44px;
/*    padding-top: 20px;*/
}
body.detail #filterbar-nav {
    display:none;
}
body.detail #col3 .detail_head {
	position: relative;
	padding: 0 0 0 60px;
	min-height: 50px;
}
body.detail #col3 h2 {
    font-size: 20px;
    font-weight: bold;
    margin: 0 185px 3px 0;
    line-height: 1.1;
}
body.detail #col3 h2 small {
    font-size: 12px;
    font-weight: normal;
}
body.detail #col3 h2 small img {
    position: inherit;
}
body.detail #col3 h2 img {
    position: absolute;
    left: 0;
    top: 0;
    border: 1px solid #898787;
}
body.detail #col3 .breadcrumb {
	 float: left;
	 width: 100%;
}
body.detail #col3 .breadcrumb a {
	text-decoration: underline;
	font-weight: normal;
	line-height: normal;
}

#main {
    background-color: #FFFFFF;
    _display: none;
    font-size: 12px;
    position: relative;
}
#main p {
    line-height: 19px;
    margin-top: 8px;
}
#footer, footer.footer {
    padding: 15px 0;
    width: 100%;
    color: #3F3F3F;
    text-align: center;
    background-color: #BFBFBF;
    border-top: 1px solid #A4ACAF;
	position: relative;
    bottom: 0;
    _display: none;
}
#col1 {
    float: left;
    margin: 0;
    clear: both;
    font-size: 0.813em;
    background-color: #FFFFFF;
    border: 1px solid #D0D5D7;
    margin: 10px 0 10px 10px;
    padding: 4px;
    width: 199px;
}
#col2 {
    float: none;
    margin: 0;
    padding: 25px 18px 10px 20px;
    #padding-top: 70px;
    display: inline-block;
    vertical-align: top;
    zoom: 1;
    *display: inline;
}
.filedetail #col2 {
	width: 202px;
}
.filedetail #col2 #col2_content {
/*	overflow: hidden;*/
}
#col2_home {
    position: absolute;
    top: 15px;
    right: 0;
    width: 220px;
    margin-right: 20px;
}
#col2_home .widget {
	background:none repeat scroll 0 0 #F5F5F5;
	padding:20px;
}
.widget + .widget {
	margin-top:20px;
}
.widget h3 {
	font-family:'Lato',Verdana,Geneva,sans-serif;
	font-style:normal;
	font-weight:normal;
	font-size: 13px;
	line-height:1;
	text-transform:uppercase;
	word-spacing:3px;
	margin-bottom:20px;
}
.widget h3 a, .widget h3 a:hover {
	color: #333333 !important;
}
#col3 {
    width: auto;
    margin: 0;
    z-index: 10;
}
.home {
}
#col1_content { }
#col2_content { font-size: 0.75em }
#col3_content { padding: 10px 15px; }
#col3 #col3_content.home { padding: 10px 15px; min-height: 800px; padding-right: 250px !important; }
#col3.activecat {
    margin-left: 229px;
    z-index: 1;
    min-height: 1015px;
    #min-height: 1030px;
}
#col3.activedet {
    /*padding: 25px 0 25px 34px;*/
    padding: 25px 0 25px 18px;
    #padding-top: 70px;
    overflow: hidden;
    background-color: #E4E4E4;
    position: relative;
}

* {
    margin: 0;
    padding: 0;
}
img { border: none }
address,
caption,
cite,
code,
dfn,
em,
h1,
h2,
h3,
h4,
h5,
h6,
th,
var {
    font-style: normal;
    font-weight: normal;
}
a {
    color: #3462A4;
    font-weight: bold;
    text-decoration: none;
}
::-moz-selection{ background: #69AB15; color:#fff; text-shadow: none; }
::selection { background:#69AB15; color:#fff; text-shadow: none; }

/* j.mp/webkit-tap-highlight-color */
a:link { -webkit-tap-highlight-color: #69AB15; }

a:hover { color: #4D4D4D }
ul,
li h1,
h2,
h3,
h4,
h5,
h6,
p,
form {
    margin: 0;
    padding: 0;
}
ul,
li {
    list-style-type: none;
    list-style-image: none;
    list-style-position: outside;
}
ol {
    margin: 0 0 1em 22px;
    #margin-left: 26px;
}
ol li { list-style-type: decimal }
button { cursor: pointer }
abbr { cursor: help }
.clear { clear: both }
.float { float: left }
.floatr { float: right }
.hidden { display: none }
.overflow { overflow: auto }
.center { text-align: left }
h1,
h2. h3,
h4,
h5,
h6 { line-height: normal }
h2 { font-size: 1.714em }
h2.detail { font-size: 1.714em }
h2.margin { margin-left: 15px }
h3 {
    font-size: 1.5em;
    font-weight: bold;
}
h4 {
    font-weight: bold;
}
h5 {
    font-size: 1em;
    font-weight: bold;
}
.sprite {
    background: transparent url(/images/sprites/base.png) no-repeat left top;
    _background: transparent url(/images/sprites/base.gif) no-repeat left top;
}
.sprite_con {
	background: transparent url(/images/sprites/controls.png) no-repeat left top;
	_background: transparent url(/images/sprites/controls.gif) no-repeat left top
}

i.icons-mini {
    width: 16px;
    height: 16px;
    display: inline-block;
    position: static;
    vertical-align: middle;
}
i.icons-normal {
    margin: 1px 0 0 -3px;
    position: absolute;
    width: 32px;
    height: 32px;
    z-index: 9;
}
i.mlibrary { background-position: -32px -64px }
i.id { background-position: -133px -117px }
i.size { background-position: -10px -138px }
.mflagvip { background-position: -85px -117px }
.mflagfree { background-position: -109px -117px }
.thumb .mflagvip,
.thumb .mflagfree { margin: -2px 3px 0 }
.mspain { background-position: -177px -43px }
.menglish { background-position: -198px -43px; }
.mfavorite { background-position: -61px -165px; }
.mdownload { background-position: -38px -165px; }
.mzoom { background-position: -85px -165px; }
.mclose { background-position: -108px -165px; }
.madd { background-position: -132px -165px;}
.mdelete { background-position: -13px -189px;}
.mlock { background-position: -39px -190px;}
.munlock { background-position: -62px -190px;}
.munlockmini { background-position: -111px -143px;}
.mfolder { background-position: -87px -92px;}
.medit { background-position: -129px -187px;}
.marrowleft { background-position: -90px -144px;}


.alert {
    border: 1px solid;
    margin: 15px 0 20px;
    padding: 14px 10px 10px 10px;
}
.anotice {
    background-color: #FFF5CA;
    border-color: #F1DF95;
}
.asuccess {
    background-color: #E6EFC2;
    border-color: #C6D880;
/*    color: #4B8F00;*/
}
.aerror {
    background-color: #FBE3E4;
    border-color: #FBC2C4;
/*    color:#D12F19;*/
}
.alert h3.margin {
    padding-left: 40px;
    line-height: 32px;
    font-size: 1.2em;
    font-weight: normal;
}
.alert ul { margin: 7px 0 0 37px }
.alert ul li {
    list-style-type: square;
    margin-bottom: 11px;
}
.alert a {
    font-weight: normal;
    text-decoration: underline;
}
#header h1 {
    background: none repeat scroll 0 0 transparent;
    border-right: 1px solid #737373;
    float: left;
    height: 44px;
    margin: 0;
    position: static;
    width: auto;
    cursor: pointer;
    display: inline-block;
    vertical-align: top;
    zoom: 1;
    *display: inline;
    *float: none;
    _display: inline;
    _width: 95px;
}
#header h1 a {
    display: block;
    height: 44px;
    outline: medium none;
    text-indent: -9999px;
    width: 145px;
}
#header h1:hover { background-color: #373737 }
#header li.drop { z-index: 100 }
#header .drop a.active {
    opacity: 1;
    background-color: #FFFFFF;
    color: #333333;
    height: 22px;
    position: relative;
    z-index: 3;
}
#header .search {
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid #3E3E3E;
    background-color: #AFAFAF;
    display: block;
    float: left;
    height: 18px;
    margin: 7px 20px 0;
    _margin-left: 15px;
    padding: 5px 0;
    position: relative;
    width: 190px;
    _width: 187px;
    color: #333333;
}
.ie #header .search {
    _position: absolute;
    _left: -10px;
}
#header .hover {
	background-color: #CFCFCF;
	color: #000000;
}
#header .focused {
	background-color: #FFFFFF;
	color: #000000;
}
form#search { margin: 0 }
#header .search .inputText {
    background: none repeat scroll 0 0 transparent;
    border: medium none;
    font: 99% arial, helvetica, clean, sans-serif;
    height: 20px;
    *line-height: 20px;
    outline: medium none;
    padding: 0 5px;
    width: 181px;
}
#header .search .inputText::-webkit-input-placeholder { color:#6B6B6B; }
#header .search .inputText:-moz-placeholder { color:#6B6B6B; }
#header .search label {
    background: none repeat scroll 0 0 transparent;
    cursor: text;
    font: 99% arial, helvetica, clean, sans-serif;
    padding: 3px 5px 2px;
    position: absolute;
    top: 4px;
    width: 199px;
    text-transform: capitalize;
	text-indent: -9999px;
}
.ie #header .search label {
	text-indent: 0;
    display: block;
}
.search input:focus { color: black }
#header .search button {
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    background-color: #2B2B2B;
    background-position: 5px -179px;
    border: 1px solid #2B2B2B;
    cursor: pointer;
    height: 28px;
    padding: 0;
    position: absolute;
    right: -33px;
    top: 0px;
    width: 29px;
    z-index: 2;
}
html.ie7 #header .search button { top: 1px }
#header .search button span { display: none }
.search_form {
    margin: 20px 0 7px;
    text-align: left;
}
.search_form #s_qtext {
    height: 21px;
    vertical-align: middle;
    font: 17px arial, sans-serif;
}
.chrome .search_form #s_qtext { height: 23px }
.search_form button {
    height: 1.83em;
    margin-right: 3px;
    font: 15px arial, sans-serif;
    vertical-align: middle;
}
.chrome .search_form button,
.firefox .search_form button,
.safari .search_form button {
    -webkit-appearance: button;
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(white), to(#DDD));
    background: -moz-linear-gradient( center bottom, rgb(221, 221, 221) 0%, rgb(255, 255, 255) 100%);
    border: 1px solid #999999;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    padding: 0 8px;
}
.opera .search_form button {
    padding: 0 8px;
    padding-top: 3px;
}
.ie8 .search_form button { padding: 0 8px }
.search_form small a {
    vertical-align: middle;
    text-decoration: underline;
    color: blue;
    padding-bottom: 2px;
    outline: none;
    font-weight: normal;
    font-size: 11px;
}
.advanced {
    font-size: 12px;
    margin: 4px 0 8px;
}
.advanced input {
    margin-right: 2px;
    #width: auto;
    #background: none;
    #border: none;
    #margin-bottom: 0;
    #padding: 0;
}
.advanced label { margin-right: 5px }
#search_results_info {
    float: right;
    font-size: 12px;
    font-weight: normal;
    margin: 3px 15px 0 0;
}
.ie7 #search_results_info {
    position: absolute;
    right: 15px;
    top: 15px;
    margin: 0;
}
#main #breadcrumb {
    clear: both;
    margin: 15px 15px 10px 15px;
    overflow: auto;
}
#main #breadcrumb ul li {
    float: left;
    font-size: 0.857em;
    margin-right: 5px;
}
#main #breadcrumb ul.margin { margin-top: 8px }
#main #info {
    background-color: #304E61;
    color: #FFFFFF;
}

#main .inner { background-color: #FFFFFF }
#main #col3_content .filters {
    background-color: white;
    border: 1px solid #D0D5D7;
    font-size: 1.114em;
    font-weight: bold;
    padding: 4px;
    position: relative;
    #z-index: 50;
}
#main #col3_content .filters .inner {
    background-color: #DDEAEF;
    font: bold 16px/1.2 'lucida grande', verdana, sans-serif;
    height: 27px;
    padding: 8px 0 0 15px;
    width: auto;
}
#main #col3_content .filters .inner.active {
    padding-left: 140px;
    padding-left : 150px\9;
}
#main #col3 #col3_content #tabs {
    position: absolute;
    right: 10px;
    top: 7px;
}

.home .loading {
    background: url("/images/spinner-submit-l.gif") no-repeat scroll center center transparent;
    height: 120px;
}

#main #col3 #col3_content .register { margin: 0 }
#main #plans_ajax { width: 897px }
#main div.plans {
    border: 1px solid #D0D5D7;
    margin: 10px 0 10px;
    overflow: auto;
    padding: 0;
    #padding-bottom: 4px;
    width: 855px;
}
#vip #main div.plans #payments li { width: 132.5px }
#main div.plans li {
    background: none repeat scroll 0 0 #CDE3B0;
    border: 1px solid #7F9265;
    float: left;
    margin: 4px;
    padding: 0 0 20px;
    width: 112px;
    display: block;
    text-align: center;
}
#main div.plans #payments li { cursor: pointer }
#main div.plans #payments li:hover {
    -moz-box-shadow: 0 -5px 12px rgba(0, 0, 0, 0.4) inset, 0 1px 3px #000000 inset, 0 1px rgba(255, 255, 255, 0.4);
    -webkit-box-shadow: 0 -5px 12px rgba(0, 0, 0, 0.4) inset, 0 1px 3px #000000 inset, 0 1px rgba(255, 255, 255, 0.4);
}
#main div.plans li.active {
    background: none repeat scroll 0 0 #EDF5E1;
    border: 1px solid #E1EECF;
}
#main div.plans li h4 {
    background: none repeat scroll 0 0 #3F3F3F;
    color: #FFFFFF;
    height: 27px;
    padding: 7px 0 5px 0;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}
#main div.plans li h4.free {
    background-color: #CDE4B0;
    color: #1F323F;
}
#main div.plans li p.price {
    font: bold 22px 'lucida grande', sans-serif;
    padding: 17px 0 0 0;
    border-top: none;
    margin-top: 0;
    text-align: center;
}
#main div.plans li p.description {
    background: url("/images/bg_plandesc_active.jpg") repeat-x scroll left bottom transparent;
    color: #4E7022;
    font-size: 11px;
    margin: 0 7px 8px;
    padding: 0 0 8px 20px;
    text-transform: uppercase;
}
#main div.plans li.active p.description {
    background: url("/images/bg_plandesc.jpg") repeat-x scroll left bottom transparent;
    text-transform: uppercase;
}
.ie #main div.plans li p.description { margin: 0 0 8px }
.ie #main div.plans li.active p.description { margin: 0 0 8px }
#main div.plans ul.special {
    width: 100%;
    overflow: auto;
}
#main div.plans ul.special li {
    text-align: center;
    padding: 10px 0;
    margin-bottom: 0;
}
#main div.plans ul.special li.free {
    background: none repeat scroll 0 0 #EDF5E1;
    border: 1px solid #E1EECF;
    padding: 11px 0;
}
#main div.plans ul.special li.vip { width: 723px }
#vip #main div.plans ul.special li.vip { width: 845px }
#main div.plans ul.special li.vip p {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
}
div.numbered-section {
    padding-left: 40px;
    padding-top: 0;
    position: relative;
    margin-top: 30px;
}
div.numbered-section:first-child {
    margin-top: 0;
}
div.numbered-section div.step {
    background: url("/images/sprites/order-steps.png") repeat scroll 0 0 transparent;
    height: 25px;
    left: 0;
    position: absolute;
    top: 0;
    width: 25px;
    border: 1px solid #9F9F9F;
}
div.step.one,  div.step.two, div.step.three, div.step.four, div.step.five, div.step.six, div.step.seven { border: 1px solid #FFFFFF !important; }
div.numbered-section div.step.one { background-position: -1px -1px }
div.numbered-section div.step.one_dis { background-position: -29px -1px }
div.numbered-section div.step.two { background-position: -1px -28px }
div.numbered-section div.step.two_dis { background-position: -29px -28px }
div.numbered-section div.step.three { background-position: -1px -55px }
div.numbered-section div.step.three_dis { background-position: -29px -55px }
div.numbered-section div.step.four { background-position: -1px -82px }
div.numbered-section div.step.four_dis { background-position: -29px -82px }
div.numbered-section div.step.five { background-position: -1px -109px }
div.numbered-section div.step.five_dis { background-position: -29px -109px }
div.numbered-section div.step.six { background-position: -1px -136px }
div.numbered-section div.step.six_dis { background-position: -29px -136px }
div.numbered-section div.step.seven { background-position: -1px -164px }
div.numbered-section div.step.seven_dis { background-position: -29px -164px }

.payment_provider {
    clear: both;
    margin-top: 15px;
    padding-bottom: 5px;
}
.payment_provider input { vertical-align: middle }
.payment_provider img {
    margin-left: 2px;
    margin-right: 15px;
    vertical-align: middle;
    cursor: pointer;
}
#payment-step-three h2 {
    border-bottom: 1px solid #EFEFEF;
    padding-bottom: 10px;
}
#payment-step-three p {
    margin: 0;
    font-size: 12px;
}
#payment-step-three p.last { margin: 0 0 14px 0 }
#vip_info { width: 897px; padding-left: 40px; }
#main #col3 #col3_content .register #currency { :  }
#main #col3 #col3_content .register #currency select {
    font-size: 13px;
    float: right;
}
#main #col3 #col3_content .register #vip_info h4,
#main #col3 #col3_content .register .paymethod h4 {
    margin-top: 15px;
    font-weight: bold;
    font-size: 12px;
}
#main #col3 #col3_content .register .paymethod h4 { margin: 0 }
#main #col3 #col3_content .register .paymethod p,
#main #col3 #col3_content .register #vip_info p {
    font-size: 12px;
    margin: 0;
    width: 800px;
    color: #888899;
}
#main #col3 #col3_content .register #congratulations {
    font-size: 15px;
    margin-bottom: 15px;
}
#main #col3 #col3_content .register #congratulations .success {
    background: #529214 none repeat scroll 0 0;
    color: white;
    -moz-border-radius: 8px;
    border-radius: 8px;
    padding: 10px;
    font-weight: inherit;
    line-height: inherit;
    width: inherit;
    #width: auto;
    margin: inherit;
    text-align: left;
}
#main #col3 #col3_content .register h2#title { float: left }
#main #col3 #col3_content .register select#country,
#countries { text-align: left }
#main #col3 #col3_content .register #country { text-align: right }
#main #col3 #col3_content .register #country img { margin: -3px 3px }
#main #col3 #col3_content .register #country_methods ul { margin-left: 1em }
#main #col3 #col3_content .register #country_methods ul li { list-style-type: disc }
#main #col3 #col3_content .register .methods {
    margin: 0 25px 15px 0;
    clear: both;
}
#main #col3 #col3_content .register .methods h3 {
    font-size: 16px;
    font-weight: bold;
    color: #13587A;
}
#main #col3 #col3_content .register .methods img { margin-top: 10px }
#main #col3 #col3_content .register .methods p.legend {
    display: block;
    font-size: 10px;
}
#main #col3 #col3_content .register #payinfo {
    clear: both;
    overflow: auto;
}
#main #col3 #col3_content .register #payinfo ol.instructions { :  }
#main #col3 #col3_content .register #payinfo ol li,
.alert ol li {
    margin: 0 0 10px 0;
    _margin: 0 0 10px 30px;
    font-size: 14px;
    font-weight: bold;
    position: relative;
}
#main #col3 #col3_content .register #payinfo ol li h3 {
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: bold;
}
#main #col3 #col3_content .register #payinfo ol li p,
.alert ol li p {
    font-size: 12px;
    font-weight: normal;
}
#main #col3 #col3_content .register #payinfo ol li em {
    background: red;
    width: 180px;
    height: 45px;
    position: absolute;
    top: -85px;
    left: -15px;
    text-align: center;
    padding: 20px 12px 10px;
    font-weight: normal;
    font-style: normal;
    z-index: 2;
    display: none;
    border: red 2px solid;
}
#main #col3 #col3_content .register #payinfo #msgtotal {
    float: right;
    width: 20%;
    margin-top: 10px;
    background: #EFEFEF none repeat scroll 0 0;
    border: 1px solid #DEDEDE;
    color: #222222;
}
#main #col3 #col3_content .register #payinfo #msgtotal h3 {
    margin: 0;
    font-size: 14px;
    font-weight: bold;
    padding: 4px;
}
#main #col3 #col3_content .register #payinfo #msgtotal p { padding: 4px }
#main #col3 #col3_content .register #payinfo #msgtotal div#total {
    width: 100%;
    background-color: #666666;
    color: #FFFFFF;
    overflow: auto;
    text-align: right;
    font-size: 14px;
    line-height: 22px;
    margin-top: 8px;
}
#main #col3 #col3_content .register #payinfo #msgtotal div#total span {
    float: left;
    margin-left: 4px;
}
.form-submit {
    border: 0 none;
    color: #777777;
    text-align: center;
    height: 28px;
}
.form-submit.loading { background-position: center center }
#thumbs {
    position: relative;
    margin-bottom: 20px;
    z-index: 50;
}
.thumb {
    max-width: 200px;
    position: relative;
    text-align: left;
    margin: 0 0 15px;
}
body.favorites .thumb {
/*	z-index: 101;*/
	z-index: auto;
}
html.ie7 body.favorites .thumb {
	z-index: -1;
/*	max-width: 212px;*/
}
html.ie9 body.favorites .thumb {
	z-index: auto;
/*	max-width: 212px;*/
}
#main .shadow {
    -moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.6);
    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.6);
    display: inline-block;
    zoom: 1;
    *display: inline;
    position: relative;
}
.ie #main .shadow { border: 1px solid #D9D9D9 }
#main .shadow:hover {
    -moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.6);
    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.6);
}
#main .shadow a img {
    max-width: 200px;
    float: left;
}
.ie7 .favorites #main .shadow a img {
	
}
.thumb a.thumb-title {
    width: 200px;
    overflow: hidden;
    display: block;
    margin-top: 4px;
    font-weight: normal;
}
.thumb small {
    display: block;
    font-size: 10px;
    overflow: hidden;
}
.thumb small a {
    width: 100%;
    overflow: hidden;
    height: 14px;
    color: #4D4D4D;
    font-size: 11px;
    font-weight: normal;
}
.thumb small a:hover { text-decoration: underline }
#thumbs .banner {
    border: 1px solid #D9D9D9;
    display: inline-block;
    margin: 0 0 20px;
    position: relative;
}
#thumbs .banner img { padding-top: 24px }
#thumbs .banner .close {
    position: absolute;
    right: 20px;
    top: 7px;
}
#thumbs .banner .close i { margin: -10px 0 0 -20px }
.thumb .shad {
    /*border: 6px solid #FFFFFF;
    margin: 5px 0 -11px;*/
   /* opacity: 1;
    filter: alpha(opacity = 100);
    zoom: 1;
    position: relative;
    top: -5px;*/
}
.thumb:hover .shad {
    /*background: #000000;
    border: 6px solid #000000;
    margin: 5px 0 -11px;
    opacity: 0.60;
    filter: alpha(opacity = 60);
    zoom: 1;
    top: -5px;*/
}
.thumb .shad {
	background-color: #000000;
	display: block;
	float: left;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
    filter: alpha(opacity = 0);
}
.thumb a.img:hover .shad, .thumb .shadow a.hover .shad {
	background-color: #000000;
	opacity: .6;
    filter: alpha(opacity = 60);
}
.thumb .tooltip {
    background-color: rgba(255, 255, 255, 0.9);
    left: 0;
    bottom: -1px;
    color: black;
    font-size: 12px;
    line-height: 22px;
    margin: 0 6px 6px;
    opacity: 0;
    filter: alpha(opacity = 0);
    zoom:1;
    padding: 3px;
    position: absolute;
    width: 182px;
    z-index: 3;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    cursor: pointer;
}
.ie7 .thumb .tooltip,
.ie8 .thumb .tooltip {
	background: transparent;
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#E5FFFFFF,endColorstr=#E5FFFFFF)"; /* IE8 */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#E5FFFFFF,endColorstr=#E5FFFFFF);   /* IE6 & 7 */
	zoom: 1;
	display: none;
}
.ie #main .thumb a.tooltip { border: none }
#col3 .thumb .tooltip a,
#col3 .thumb .tooltip a:hover {
    color: white;
    font-weight: normal;
    display: block;
}
#col3 .thumb .tooltip span {
    margin-right: 8px;
    text-transform: capitalize;
}
#pagination {
    text-align: center;
    margin: 10px 0;
    line-height: 35px;
    vertical-align: middle;
}
#pagination a {
    display: inline-block;
    font-size: 16px;
    margin: 0 4px 0 0;
    border: 1px solid #D0D5D7;
    padding: 8px;
    background-color: #5E5E5E;
}
#pagination a .inner {
    padding: 0;
    color: white;
    display: block;
    cursor: pointer;
    position: relative;
    line-height: normal;
    font-weight: lighter;
    background-color: transparent;
}
#pagination a:hover {
    background-color: #2B2B2B;
    color: white;
}
#pagination a:active {
    background-color: #151515;
    color: white;
}
#pagination a.active {
    background-color: #151515;
    color: white;
}
#pagination a:focus { outline: none }
#pagination a#left .inner { padding-left: 25px }
#pagination a#left .inner i {
    font-size: 0;
    line-height: 0%;
    width: 0;
    border-top: 5px solid #5E5E5E;
    border-right: 8px solid #FFFFFF;
    border-bottom: 5px solid #5E5E5E;
    position: absolute;
    left: 9px;
    top: 5px;
}
html.ie #pagination a#left .inner i {
    top: 2px;
    border-color: #5E5E5E #FFFFFF #5E5E5E #5E5E5E;
    border-style: solid;
    border-width: 6px 6px 6px 0;
    font-size: 1px;
    height: 0;
    width: 0;
}
#pagination a#right .inner { padding-right: 25px }
#pagination a#right .inner i {
    font-size: 0;
    line-height: 0%;
    width: 0;
    border-bottom: 5px solid #5E5E5E;
    border-left: 8px solid #FFFFFF;
    border-top: 5px solid #5E5E5E;
    position: absolute;
    right: 9px;
    top: 5px;
}
html.ie #pagination a#right .inner i {
    top: 2px;
    border-color: #5E5E5E #5E5E5E #5E5E5E #FFFFFF;
    border-style: solid;
    border-width: 6px 0 6px 6px;
    font-size: 1px;
    height: 0;
    width: 0;
}
#pagination a#left,
#pagination a#left .inner {
    -moz-border-radius: 15px 0 0 15px;
    -webkit-border-radius: 15px 0 0 15px;
    border-radius: 15px 0 0 15px:;
}
#pagination a#right,
#pagination a#right .inner {
    -moz-border-radius: 0 15px 15px 0;
    -webkit-border-radius: 0 15px 15px 0;
    border-radius: 0 15px 15px 0;
}
#pagination a.without,
#pagination a.without:hover,
#pagination a.without:active {
    background-color: #CFCFCF;
    color: #9F9F9F;
    cursor: default;
}
#pagination a#left.without i,
#pagination a#left.without:hover i,
#pagination a#left.without:active i,
#pagination a#right.without i,
#pagination a#right.without:hover i,
#pagination a#right.without:active i {
    border-top-color: #CFCFCF;
    border-right-color: #FFFFFF;
    border-left-color: #FFFFFF;
    border-bottom-color: #CFCFCF;
}
.ie #pagination a#left.without i,
.ie #pagination a#left.without:hover i,
.ie #pagination a#left.without:active i { border-color: #CFCFCF #FFFFFF #CFCFCF #CFCFCF }
.ie #pagination a#right.without i,
.ie #pagination a#right.without:hover i,
.ie #pagination a#right.without:active i { border-color: #CFCFCF #CFCFCF #CFCFCF #FFFFFF }
#pagination a#left:hover i,
#pagination a#right:hover i {
    border-top-color: #2B2B2B;
    border-right-color: #FFFFFF;
    border-left-color: #FFFFFF;
    border-bottom-color: #2B2B2B;
}
.ie #pagination a#left:hover i { border-color: #2B2B2B #FFFFFF #2B2B2B #2B2B2B }
.ie #pagination a#right:hover i { border-color: #2B2B2B #2B2B2B #2B2B2B #FFFFFF }
#pagination a#left:active i,
#pagination a#right:active i {
    border-top-color: #233A48;
    border-right-color: #FFFFFF;
    border-left-color: #FFFFFF;
    border-bottom-color: #233A48;
}
.ie #pagination a#left:active i { border-color: #151515 #FFFFFF #151515 #151515 }
.ie #pagination a#right:active i { border-color: #151515 #151515 #151515 #FFFFFF }
#main #col3 #col3_content ul.category-list {
    width: auto;
    display: block;
    #padding-bottom: 40px;
}
#main #col3 #col3_content ul.category-list li {
    #float: left;
    background: none repeat scroll 0 0 white;
    border: 1px solid #D0D5D7;
    display: inline-block;
    margin-bottom: 10px;
    overflow: hidden;
    padding: 6px;
    width: 30%;
}
#main #col3 #col3_content ul.category-list li.hover { background-color: #3F3F3F }
#main #col3 #col3_content ul.category-list .nospace { margin-right: 0% }
#main #col3 #col3_content ul.category-list li a {
    background-color: white;
    border: 1px solid #D9DFE2;
    display: block;
    padding: 5px 0;
}
#main #col3 #col3_content ul.category-list li a span.category-list-item-title {
    padding-left: 4px;
    height: 18px;
    display: inline-block;
    cursor: pointer;
    line-height: 18px;
    font-weight: normal;
    width: 83%;
}
#main #col3 #col3_content ul.category-list li a span.category-list-item-count {
    color: #6FB523;
    display: inline-block;
    cursor: pointer;
    height: 18px;
    font-weight: bold;
    line-height: 18px;
    text-align: right;
    width: 15%;
}
#main #col3 #col3_content ul.category-list li.column-3 { margin: 0 2.7% 10px }
#main #col3 #col3_content ul.subcategory-list {
    width: auto;
    margin: 0 0 20px 0;
    display: block;
    overflow: auto;
}
#main #col3 #col3_content ul.subcategory-list li {
    margin-right: 2.7%;
    margin-bottom: 0;
    border-bottom: 1px solid #DFDFDF;
    float: left;
    width: 30%;
    _width: 29%;
    height: 38px;
    overflow: hidden;
}
* html #main #col3 #col3_content ul.subcategory-list li { margin-right: 2% }
#main #col3 #col3_content ul.subcategory-list .nospace { margin-right: 0% }
#main #col3 #col3_content ul.subcategory-list li a {
    color: #626d74;
    display: block;
    height: 18px;
    padding: 10px 0;
}
#main #col3 #col3_content ul.subcategory-list li a:hover {
    background-color: #E9E9E9;
    _background-color: none;
    color: #D54E21;
}
#main #col3 #col3_content ul.subcategory-list li a span.subcategory-list-item-title {
    float: left;
    padding-left: 4px;
    height: 18px;
    display: block;
    cursor: pointer;
    line-height: 22px;
    font-weight: normal;
    width: 76%;
}
#main #col3 #col3_content ul.subcategory-list li a span.subcategory-list-item-count {
    float: right;
    padding-top: 3px;
    color: #626d74;
    display: block;
    cursor: pointer;
    font-size: 1.188em;
    font-weight: normal;
    height: 18px;
}
#main #col3 #col3_content ul.category-list li a:hover span.subcategory-list-item-count { _color: #D54E21 }
#main #col3 #col3_content ul.subcategory-list li.column-3 { margin-right: 0% }
body.detail #main #col3 { :  }
body.detail #main table {
	border-collapse: collapse;
	width: 100%;
}
body.detail #main table tr {
	vertical-align: top;
}
body.detail #main table td.filedetail {
	width: 200px;
	background-color: #FFFFFF;
	border-right: 1px solid #B3BCBF;
}
.detail .bannerTop { background-color: #FFFFFF; }
body.detail #main #info {
    height: 68px;
    position: relative;
}
body.detail #main #info h1 { margin-bottom: 5px }
body.detail #filterbar-nav h2 small {
    font-size: 15px;
    font-weight: normal;
}
body.detail #filterbar-nav h2 span { font-weight: bold }
body.detail #main #info .inner { padding: 0 }
body.detail #main #info .breadcrumb {
    display: inline-block;
    margin-left: 145px;
    font-size: 11px;
}
body.detail #main #info .breadcrumb ul { padding: 7px 0 0 0 }
body.detail #main #info .breadcrumb ul li {
    display: inline;
    width: auto;
    float: none;
    padding: 0;
}
body.detail #main #info .breadcrumb ul li a {
    text-decoration: underline;
    color: white;
    font-weight: normal;
}
body.detail #main .inner {
    padding: 10px;
    background-color: #F2F2F2;
}
body.detail #col3 {
    vertical-align: top;
    zoom: 1;
/*    *display: inline;*/
}
body.detail #main #col3_content { padding: 0; }
body.detail #options { position: relative }
body.detail #options .inner {
    padding: 3px 5px;
    height: 31px;
}
#filterbar-nav ul li a.download,
#download a.download {
    display: block;
    outline: none;
    height: 38px;
    padding: 0;
    width: 150px;
    text-indent: -9999px;
}
.es #download a.download {
	background-position: 0 -185px;
}
.es #download a.download:hover {
	background-position: 0 -223px;
}
.en #download a.download {
	background-position: 0 -261px;
}
.en #download a.download:hover {
	background-position: 0 -299px;
}
#filterbar-nav ul li a.download:hover,
#download a.download:hover { background-position: 0 -38px }
#filterbar-nav ul li a.download span {
    line-height: 13px;
    cursor: pointer;
}
#filterbar-nav ul li a.download .btn {
    background-position: -201px -219px;
    display: block;
    float: left;
    height: 16px;
    margin-right: 10px;
    margin-top: 1px;
    width: 16px;
    _display: none;
}
#filterbar-nav ul a.cantDownload {
    background-color: #5E5E5E;
    border: 1px solid #737373;
    color: white;
    display: block;
    font: 12px/1.231 'helvetica neue', helvetica, arial, clean, sans-serif;
    padding: 7px;
    position: absolute;
    right: 0;
    text-transform: none;
    width: 300px;
    display: none;
    top: 30px;
    height: auto;
}
.inner a.download {
    right: 0;
    top: 0;
}
#options .alert { margin: 0 }
.alert a.download {
    top: 6px;
    right: 10px;
}
a.download:hover { background-position: 0 -158px }
a.download:active { background-position: 0 -194px }
body.detail #image {
    -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    display: inline-block;
    margin: 20px 0 0 0;
    position: relative;
}
body.detail #image, body.detail #imagezoom {
	position: relative;
	margin: 20px 0 16px;
}
#image_zoom_off, #image_zoom_on {
	/*
	position: absolute;
	left: 10px;
	top: 442px;
	*/
	padding: 5px;
	z-index: 501;
}
#image #image_zoom_off, #image #image_zoom_on {
	top: inherit;
	bottom: 10px;
}
body.detail #image img {
    cursor: pointer;
    float: left;
    display: none;
    *border: 1px solid #D9D9D9;
}
body.detail #image .shad {
    border: 1px solid #000000;
    margin: 1px 0 -1px;
    opacity: 0.25;
    filter: alpha(opacity = 25);
    pointer-events: none;
    position: relative;
    top: -1px;
    *display: none;
}
body.detail #col2 a.simplebtn {
	margin: 12px 0;
    padding: 4px 8px 4px 40px;
    line-height: 11px;
    display: block;
    position: relative;
}
body.detail #col2 a.simplebtn strong  {
    font-family: Trebuchet MS, Verdana, sans-serif;
    font-size: 15px;
    line-height: 22px;
    font-weight: normal;
}
body.detail #col2 a.simplebtn strong.und  {
    border-bottom: 1px solid;
}
body.detail #col2 a.simplebtn strong.und #favorite_delete:hover  {
    color: red;
    border-bottom: 1px solid red;
}
body.detail #col2 a.simplebtn:hover  {
   text-decoration: none;
}
body.detail #col2 a.simplebtn i  {
	position: absolute !important;
	left: 11px;
	top: 7px;
}
body.detail #col2 a.simplebtn small, a.specialbtn small {
    font-size: 11px;
    font-weight: normal;
    color: #DAF4CD;
}
body.detail #col2 a.simplebtn small span, a.specialbtn small span {
	color: #FFFFFF;
	font-size: 9px;
	padding: 0 4px 1px;
	text-transform: uppercase;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
}
body.detail #col2 a#dldlnk.simplebtn strong, a.specialbtn strong  {
    font: 18px Trebuchet MS,sans-serif !important;
	font-weight: normal;
}
body.detail #col2 a#dldlnk.simplebtn:hover  {
    text-decoration: none;
}
body.detail #col2 a#dldlnk i, a.specialbtn i {
	width: 22px;
	height: 22px;
}
body.detail #col2 #favorite a.simplebtn i  {

}
body.detail #col2 #favorite.marked a.simplebtn  {
	background-color: #E4E4E4;
	width: 100%;
	border-left: 1px solid #B3BCBF;
	border-top: 1px solid #B3BCBF;
	border-bottom: 1px solid #B3BCBF;
}
body.detail #col2 #favorite.marked a.simplebtn:hover strong  {
/*	color: red;*/
}
body.detail #col2 #favorite.marked a.simplebtn:hover i  {
/*	background-position: -108px -165px;*/
}
body.detail #col2 h3 {
    border-top: 1px dotted #E4E4E4;
    margin: 10px 0 0 0 !important;
    padding: 5px 0 5px 0 !important;
}
body.detail #col2 h4 {
    border-top: 1px dotted #E4E4E4;
    margin: 10px 0 0 0 !important;
    padding: 5px 0 5px 0 !important;
    font-size: 1.5em;
}
body.detail #col2 p {
	margin: 0 0 10px 0;
	font-size: 12px;
	min-height: 15px;
}
body.detail #related h3.module {
    border-bottom: 1px solid #D6D6D6;
    margin: 0 35px 20px;
}
body.detail #main .description,
body.detail #main .extras {
    font-size: 12px;
    overflow: auto;
}
.borderradius body.detail #main .description {
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
body.detail #main .description p { margin: 0 }
body.detail #main .extras { margin-top: 8px }
body.detail #main .extras ul li { padding: 10px 0 }
body.detail #main .extras ul li.extension {
    height: 15px;
    padding-top: 0;
}
body.detail #main .extras ul li.size { padding-bottom: 0 }
body.detail #embed {
    margin-top: 10px;
    height: 34px;
    clear: both;
}
body.detail #embed a.lang {
	margin-left: 28px;
}
body.detail #embed a.lang span {
	height: 24px;
	margin-top: -7px;
	position: absolute;
	width: 24px;
}
.gecko .body.detail #embed a.lang span {
	left: 0;
}
body.detail #social { float: right }
body.detail ul.tags li {
	float: left;
	margin: 0;
	font-size: 11px;
	line-height: 1;
}
body.detail ul.tags li a {
	float: left;
	margin: 0 6px 6px 0;
	padding: 3px 6px 4px 6px;
	font-weight: normal;
	text-decoration: none;
	white-space: nowrap;
	color: #777;
	border: 1px solid #CCC;
	-webkit-border-radius: 4px;
	-moz-border-radius: 5px;
	border-radius: 4px;
	background: #e5e5e5; /* Old browsers */
	background: -moz-linear-gradient(top, #e5e5e5 0%, #d1d1d1 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e5e5e5), color-stop(100%,#d1d1d1)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #e5e5e5 0%,#d1d1d1 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #e5e5e5 0%,#d1d1d1 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #e5e5e5 0%,#d1d1d1 100%); /* IE10+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e5e5e5', endColorstr='#d1d1d1',GradientType=0 ); /* IE6-9 */
	background: linear-gradient(top, #e5e5e5 0%,#d1d1d1 100%); /* W3C */
}
body.detail ul.tags li a:hover {
    text-decoration: none;
    color: #555;
    border-color: #bbb;
    background: #E5E5E5;
}
body.detail ul.tags li a:active {
    color: #E5E5E5;
    border-color: #444;
    background: #555;
}
#main #related {
    padding: 30px 0 100px;
}
#related .arrows {
    padding: 0;
    position: relative;
}
#related .arrows a#arrow_left,
#related .arrows a#arrow_right {
    position: absolute;
    top: 225px;
    cursor: pointer;
    background-color: #848487;
    height: 56px;
    overflow: hidden;
    z-index: 99;
    width: 25px;
}
#related .arrows a#arrow_left:hover,
#related .arrows a#arrow_right:hover { background-color: #6F6F6F }
#related .arrows a#arrow_left.disabled:hover,
#related .arrows a#arrow_right.disabled:hover { background-color: #D1D1D2 }
#related .arrows a#arrow_left {
    left: 0;
    -moz-border-radius: 0 8px 8px 0;
    -webkit-border-radius: 0 8px 8px 0;
}
#related .arrows a#arrow_right {
    right: 0;
    _right: 15px;
    -moz-border-radius: 8px 0 0 8px;
    -webkit-border-radius: 8px 0 0 8px;
}
#related .arrows a#arrow_left span,
#related .arrows a#arrow_right span {
    height: 50px;
    width: 25px;
}
#related .arrows a#arrow_left span {
    float: left;
    background-position: 8px -616px;
}
#related .arrows #arrow_right span {
    float: right;
    background-position: 13px -653px;
}
#related .arrows a#arrow_left.disabled,
#related .arrows a#arrow_right.disabled { background-color: #D1D1D2; display: none; }
body.detail #thumbs_container {
    background: transparent url(/images/zoom_loader.gif) no-repeat center center;
    min-height: 500px;
}
body.detail #thumbs {
    padding: 0;
    margin: 10px 40px 0 35px;
    background: none #E4E4E4;
}

body.detail #thumbs.masoned {
    background: #E4E4E4 none;
}
body.detail #thumbs.center { text-align: center }
body.detail .thumb.right { margin-right: 0 }
body.detail .thumb-vert {
    width: auto;
    padding: 0;
    vertical-align: middle;
}
body.detail .shadow {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}
#main #subaccount {
    margin: 15px;
    clear: both;
}
#main #subaccount ul { overflow: auto }
#main #subaccount ul li {
    position: relative;
    display: inline;
}
#main #subaccount ul li a {
    background-color: #E9E9E9;
    border: 1px solid #6598B4;
    padding: 5px 8px 5px 28px;
    height: 17px;
    float: left;
    display: inline;
    margin-right: 7px;
    position: relative;
    outline: none;
}
#main #subaccount ul li a:hover { border-color: #D25836 }
#main #subaccount ul li a.selected,
#main #subaccount ul li a:hover.selected {
    background-color: white;
    border: none;
    color: #39444D;
    cursor: default;
}
#categories_dropdown { margin: 0 12px 0 0 }
#categories_dropdown a {
    width: 142px;
    float: left;
    height: 0;
    outline-style: none;
    overflow: hidden;
    padding-top: 26px;
    position: relative;
    z-index: 3;
}
#categories_dropdown a { background-position: 3px 2px }
#categories_dropdown a:hover { :  }
.files {
    width: 33px;
    height: 15px;
    position: absolute;
}
.dwg { background-position: -13px -44px; background-color: #EA4E4E; border: 1px solid #C44040; }
.ds { background-position: -46px -44px; background-color: #E38C26; border: 1px solid #C97C24; }
.max { background-position: -79px -44px; background-color: #4B7AC7; border: 1px solid #3F6AAF; }
.dxf { background-position: -112px -44px; background-color: #3C7C2A; border: 1px solid #326622; }
.pat { background-position: -13px -59px; background-color: #6B5454; border: 1px solid #564444; }
.lsp,
.LSP { background-position: -46px -59px; background-color: #42B28C; border: 1px solid #3C9E7B; }
.bmp { background-position: -79px -59px; background-color: #9D29D8; border: 1px solid #9026C9; }
.pdf { background-position: -112px -59px; background-color: #8C6E04; border: 1px solid #7A5E02; }
.zip { background-position: -13px -74px; background-color: #E33FD6; border: 1px solid #D63BC9; }
.xls { background-position: -46px -74px; background-color: #2A4D8F; border: 1px solid #26457F; }
.txt, .doc { background-position: -79px -74px; background-color: #796B6B; border: 1px solid #6B5F5F; }
#footer a {
    color: #3F3F3F;
    font-weight: normal;
    font-size: 0.85em;
    text-decoration: underline;
	margin-right: 20px;
}
#footer a:hover { text-decoration: underline }
#footer a.social {
    position: absolute;
    right: 53px;
    top: 6px;
    opacity: 0.6;
    filter: alpha(opacity = 60);
    display: none;
}
#footer a.social:hover {
    opacity: 1;
    filter: alpha(opacity = 100);
}
#main #col3 #col3_content #login_ad strong {
    background: #FEFFD0 none repeat scroll 0% 0%;
    color: #777777;
    display: block;
    font-size: 12px;
    margin-bottom: 20px;
    padding: 13px 10px;
    text-align: center;
}
#main #col3 #col3_content #login_ad strong a { font-size: 18px }
#main #col3 #col3_content #col2 .banner,
#main #col3 #col3_content .banner {
    position: relative;
    text-align: center;
}
.login {
    width: 620px;
    margin: 50px auto;
    border: 6px solid;
}
body#login a {
    color: #3366CC;
    text-decoration: none;
    font-weight: normal;
}
body#login #header a { position: static }
body#login a:hover { text-decoration: underline }
body#login #header {
    min-width: inherit;
    position: static;
    width: auto;
}
body#login #header,
body#login #browse-nav { min-width: auto }
.login #headerCenter { overflow: auto }
.login .alert {
    border: none;
    margin: 0;
}
body#login #logo {
    position: static;
    margin: 0 auto 0;
    width: 145px;
    border-right: none;
}
body#login #main {
    -moz-border-radius: 10px 10px 10px 10px;
    border-radius: 10px;
    margin: 0 auto;
    overflow: visible !important;
    position: relative;
    width: 620px;
    font-size: 12px;
    padding: 0;
}
body#login #info { padding: 0 }
body#login #info h1 {
    font-size: 1.5em;
    padding: 20px 40px;
}
body#login .inner { background-color: white }
body#login fieldset {
    color: #646466;
    margin: 0;
    padding: 1em 40px 4px !important;
    overflow: hidden;
    #width: 100%;
    #display: inline;
    #padding-top: 40px !important;
    zoom: 1;
    #position: relative;
    #width: 538px;
    border: none;
}
body#login fieldset legend {
    -moz-border-radius: 3px 3px 3px 3px;
    border-radius: 3px;
    background: none repeat scroll 0 0 transparent;
    color: #000000;
    display: block;
    font-size: 1.3em;
    font-weight: bold;
    margin-left: -0.5em;
    padding: 0.2em 0.4em;
    text-shadow: none;
    #position: absolute;
    #top: 0;
    #left: 33px;
}
body#login .form-row { margin-top: 0 !important }
body#login .form-row .form-label { width: 140px }
body#login .form-row .form-label label,
body#login .form-row .form-label {
    color: #000000;
    text-align: right;
    font-weight: bold;
    font-size: 12px;
}
body#login .form-row .form-field,
body#login .form-row .form-error,
body#login .form-row .form-text { margin-left: 160px }
body#login .form-row .form-field input,
body#login .form-row .form-field textarea,
body#login .form-submit input {
    font: 1em/1.4 'Helvetica Neue', Arial, Helvetica, sans-serif;
    margin: 0 0 0.3em;
    padding: 10px 9px;
    margin-right: 5px;
}
select#lmethod { margin: 0 0 5px }
body#login input#remember { margin-right: 0 }
body#login .form-buttons, .abox .buttons {
    background: url("/images/spinner-submit-l.gif") no-repeat scroll center -500px transparent;
    border: 0 none;
    color: #777777;
/*    margin: -20px -40px 0 !important;*/
	padding: 7px 7px 12px 202px;
    text-align: left;
    background-color:#F3F3F3;
    border-top:1px solid #CCCCCC;
}
body#login .form-buttons a, body#login .form-buttons a:hover {
	color: #333333;
	font-weight: bold;
	text-decoration: none;
}
body#login .form-buttons.loading { background-position: center center; padding-left: 7px; }

.login form { margin-bottom: 0 }
.register .inner-table {
    border: 1px solid #D0D5D7;
    padding: 4px;
    margin-bottom: 20px;
    margin-top: 10px;
}
#main #col3 #col3_content .register #tables table {
    border-collapse: collapse;
    border-left: 1px solid #666666;
    width: 100%;
    #margin-top: 15px;
}
#main #col3 #col3_content .register #tables table caption {
    background: none repeat scroll 0 0 #1F323F;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: bold;
    padding: 7px 0 5px;
    text-align: center;
}
#main #col3 #col3_content .register #tables table th,
#main #col3 #col3_content .register #tables table td {
    padding: 5px 6px;
    border-right: 1px solid #7F9265;
}
#main #col3 #col3_content .register #tables table thead th {
    background: none repeat scroll 0 0 #CDE3B0;
    font-size: 13px;
    font-weight: bold;
    line-height: 30px;
    padding-top: 0;
    padding-bottom: 0;
}
#main #col3 #col3_content .register #tables table tbody th { font-weight: bold }
#main #col3 #col3_content .register #tables table tbody th,
#main #col3 #col3_content .register #tables table tbody td,
#main #col3 #col3_content .register #tables table thead td {
    border-bottom: 1px solid #7F9265;
    background: none repeat scroll 0 0 #EDF5E1;
    color: #1F323F;
}
#main #col3 #col3_content .register #tables table thead th.rowspan { border-bottom: 1px solid #7F9265 }
#main #col3 #col3_content .register #tables table tfoot {
    background-color: #1F323F;
    color: #FFFFFF;
}
#main #col3 #col3_content .register #tables table tfoot td { text-align: right }
.list_icon {
    border-left: 1px solid #afb0b2;
    border-right: 1px solid #afb0b2;
    float: left;
    height: 237px;
    margin: 7px;
    position: relative;
    text-align: center;
    width: 202px;
}
.list_icon_content {
    border-bottom: 1px solid #afb0b2;
    border-top: 1px solid #afb0b2;
    height: 227px;
    left: -5px;
    position: absolute;
    top: 4px;
    width: 212px;
}
.list_icon_content img { border: none }
.list_icon_content .image {
    border: none;
    height: 145px;
    padding-top: 18px;
}
.list_icon_content .info {
    background: #ededed;
    border-top: 1px solid #dfdfdf;
    height: 58px;
    margin: 0 5px;
    padding-top: 5px;
}
.list_icon_content .info .data {
    font-size: 0.75em;
    width: 148px;
}
#themes { clear: both }
#themes hr {
    background-color: #dddddd;
    color: #dddddd;
    height: 2px;
    width: 90%;
}
#themes h3 {
    font-size: 1.5em;
    font-weight: normal;
}
#themes h4 {
    font-size: 1.2em;
    font-weight: bold;
}
#themes ul li { margin-left: 1em }
.tooltip { :  }
.tooltip table {
    color: white;
    font-size: 10px;
    margin: 0 auto;
}
.tooltip table tr { height: 17px }
.tooltip table th {
    font-weight: bold;
    padding: 0 4px 0 0;
    text-align: right;
}
.tooltip table td {
    line-height: 16px;
    text-align: left;
    vertical-align: middle;
}
.tooltip .files {
    position: static;
    display: inline-block;
    vertical-align: middle;
}
.thumb .tooltip .files { margin: 4px 0 0 5px }
.tooltip table td i.icons-mini {
    margin: 0;
    display: inline-block;
    position: static;
    vertical-align: middle;
}
.bannerTop {
    text-align: center;
    padding: 20px 20px 16px;
    background-color: #FFFFFF;
    _display: none;
    height: 90px;
    margin: 0 auto;
    width: 800px;
}
.fixed .bannerTop {
    width: 980px;
    margin: 25px auto 15px;
}
#tooltip,
#preview {
    position: absolute;
    color: #ffffff;
    font-size: 10px;
    border: 1px solid #333333;
    background: #2F2F2F;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    padding: 8px;
    display: none;
    max-width: 280px;
    #width: 280px;
}
#tooltip img,
#preview img { margin-bottom: 10px }
#signup div.numbered-section {
    padding-left: 0;
    margin-top: 10px;
}
#progress div {
    position: relative;
    margin-right: 20px;
    display: inline-block;
    zoom: 1;
    *display: inline;
}
#progress div.step { margin-right: 5px }
#progress div span {
    display: inline-block;
    height: 27px;
    vertical-align: super;
    #vertical-align: middle;
}
#progress div span.active { font-weight: bold }
#list { width: 669px }
#filters {
    font-size: 11px;
    font-weight: bold;
    height: 40px;
    overflow: hidden;
    position: relative;
}
.myworks #filters ul {
    position: absolute;
    left: 87px;
    top: 0;
}
.myworks #filters { font-size: 14px }
.myworks #filters span {
    position: absolute;
    top: 8px;
    font-weight: normal;
    font-size: 11px;
}
.myworks #filters span.right {
    position: absolute;
    right: 0;
    font-size: 12px;
}
.myworks .table {
    border: 1px solid #D0D5D7;
    padding: 4px;
}
.myworks .table div {
    background-color: #EEF4F7;
    padding: 15px;
    height: 119px;
    overflow: hidden;
    font-size: 11px;
}
.myworks .table div.grey {
    background-color: #E2EBEF;
    color: black;
}
.myworks .table div .image {
    width: 150px;
    float: left;
}
.myworks .table div div.detail {
    width: 479px;
    float: left;
    background: none;
    padding: 0;
}
.myworks .table div div.detail h4 {
    font-size: 14px;
    margin-bottom: 0;
}
.myworks #main .table div div.detail p {
    margin: 7px 0 10px;
    line-height: normal;
}
.myworks .table div div.detail ul.statistics {
    height: 50px;
    margin-bottom: 0;
}
.myworks .table div div.detail ul.statistics li {
    width: 50%;
    #width: 49%;
    margin-left: 0;
    float: left;
}
.myworks .table div div.detail ul.statistics li span {
    color: #666666;
    margin-right: 5px;
    float: left;
}
.myworks .table div div.detail ul.statistics li div {
    height: auto;
    padding: 0;
}
.myworks .table div .optimize {
    width: 110px;
    float: left;
}
.myworks .table div .btorange {
    float: right;
    _width: 56px;
}
.myworks #optimize ul.list {
    overflow: auto;
    background-color: #F4F3F3;
}
.myworks #optimize ul.list li.first {
    width: 300px;
    _width: 297px;
    text-align: left;
}
.myworks #optimize ul.list li.first blockquote { margin: 0 0 5px }
.myworks #optimize ul.list li.first label {
    width: 100%;
    display: block;
    text-align: left;
    margin: 5px 0 4px;
}
.myworks #optimize ul.list li.first label.critique {
    width: auto;
    display: inline;
    float: left;
}
.myworks #optimize ul.list li.first input,
.myworks #optimize ul.list li.first .textarea { width: 100% }
.myworks #optimize ul.list li.first input#title { font-size: 15px }
.myworks #optimize ul.list li.first input.auto { width: auto }
.myworks #optimize ul.list li.first br { height: 4px }
.myworks #optimize ul.list li.third {
    width: 130px;
    height: 318px;
    _height: 328px;
    background-color: #F4F3F3;
}
.myworks #optimize ul.list li.third .options { background-color: #F4F3F3 }
.myworks #optimize ul.list li.third .options .right {
    margin-right: 0;
    margin-right: 20px !important;
}
.myworks #optimize ul.list li.third .options .btorange {
    _width: 58px;
    _left: 20px;
    _text-align: center;
}
body.cond #col3.activecat { min-height: 400px }
.conditions {
    min-width: 500px;
    width: 60%;
    font-size: 12px;
}
#main .conditions p { margin-top: 15px }
#main .conditions p: first-child { margin-top: 0 }
body.error404 h2 { font: bold 26px Helvetica Neue, Helvetica, Arial, sans-serif }
body.error404 form { margin: 0 }
body.error404 fieldset {
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    background: none repeat scroll 0 0 #8F8F8F;
    border-color: #CCCCCC;
    border-style: solid;
    border-width: 1px;
    margin: 15px 0 10px;
    padding: 15px;
    width: 500px;
}
body.error404 input.medium {
    vertical-align: middle;
    width: 200px;
}
body.error404 fieldset input,
body.error404 fieldset textarea {
    -moz-border-radius: 5px 5px 5px 5px;
    border: 1px solid #CCCCCC;
    margin: 0;
    padding: 5px;
}
body.error404 fieldset textarea {
    width: 200px;
    height: 150px;
    display: block;
    margin: 10px 0 5px;
}
body.error404 fieldset button {
    -moz-border-radius: 5px 5px 5px 5px;
    background-color: #B2F942;
    padding: 3px;
}
body.error404 fieldset button.contact { margin-left: 163px }
body.error404 #search { overflow: visible }



#modal_cat ul.list, #modal_ext ul.list {
	height:231px;
	margin-right:15px;
	overflow:auto;
	padding:10px 0 0 15px;
}
.ff3 #modal_cat ul.list, .ff3 #modal_ext ul.list {
	height:233px !important;
}
.webkit #modal_cat ul.list, .webkit #modal_ext ul.list {
	height:231px !important;
}

ul#tabs {
	position: fixed;
	bottom: 23%;
	_top: 35%;
	right: 0;
	_right: 15px;
	_position: absolute;
}
ul#tabs li a {
	background:none repeat scroll 0 0 #8F8F8F;
	border-color:#5E5E5E;
	border-style:solid none solid solid;
	border-width:3px;
	display:block;
	height:45px;
	margin-right:-9px;
	width:45px;
}
ul#tabs li a span {
	display: block;
	text-indent: -5000px;
	z-index: 999;
	cursor: pointer;
	overflow: hidden;
	width: 45px;
	height:24px;
	margin:11px 4px 0;
}
ul#tabs li a#feedback_tab {}
ul#tabs li a#feedback_tab:hover { background: #6F6F6F; }
ul#tabs li a#feedback_tab span {
	background-color:white;
	background-position:0 -704px;
	height:20px;
	width:27px;
	margin-top:12px;
}
ul#tabs li a#feedback_tab:hover span { background-color: #FFFFCF; }

ul#tabs li a#twitter_tab {
    border-bottom-style:none;
}
ul#tabs li a#twitter_tab:hover { background: #5b74a8; }
ul#tabs li a#twitter_tab span { background-position: 0 -300px; }

#pagination a.rss {
    position: absolute;
    right: 15px;
    bottom: 25px;
    border: none;
    background-color: transparent;
    padding: 0;
}
.addthis_toolbox .custom_images a {
    width: 32px;
    height: 32px;
    margin: 0;
    padding: 0;
    display: block;
    float: left;
    margin-left: 5px;
}
.addthis_toolbox .custom_images a img { opacity: 1.0 }
.addthis_toolbox .custom_images a:hover img { opacity: 0.75 }
.tipsy {
    padding: 5px;
    font: bold 11px/14px 'Lucida Grande', sans-serif;
    position: absolute;
    z-index: 100000;
}
.tipsy-inner {
    padding: 8px;
    background-color: black;
    color: white;
    max-width: 200px;
    width: expression(this.offsetWidth>200?200:'');
    text-align: center;
}
.tipsy-inner {
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}
.tipsy-arrow {
    position: absolute;
    background: url('/images/sprites/tipsy.gif') no-repeat top left;
    width: 9px;
    height: 5px;
}
.tipsy-n .tipsy-arrow {
    top: 0;
    left: 50%;
    margin-left: -4px;
}
.tipsy-nw .tipsy-arrow {
    top: 0;
    left: 10px;
}
.tipsy-ne .tipsy-arrow {
    top: 0;
    right: 10px;
}
.tipsy-s .tipsy-arrow {
    bottom: 0;
    left: 50%;
    margin-left: -4px;
    background-position: bottom left;
}
.tipsy-sw .tipsy-arrow {
    bottom: 0;
    left: 10px;
    background-position: bottom left;
}
.tipsy-se .tipsy-arrow {
    bottom: 0;
    right: 10px;
    background-position: bottom left;
}
.tipsy-e .tipsy-arrow {
    top: 50%;
    margin-top: -4px;
    right: 0;
    width: 5px;
    height: 9px;
    background-position: top right;
}
.tipsy-w .tipsy-arrow {
    top: 50%;
    margin-top: -4px;
    left: 0;
    width: 5px;
    height: 9px;
}
/* FORMS
   ================================================== */
form { margin: 0 0 1.5em }
form fieldset {
    border-bottom: 1px solid #DFDFDF;
    margin: 1em 0 1.5em;
    overflow: hidden;
    position: relative;
/*    padding: 1em 0 2em;*/
}
form fieldset legend {
    color: #000000;
    display: block;
    font-size: 1.14em;
    font-weight: bold;
}
.form-row {
    display: block;
    margin: 0.5em 0 1.2em;
    overflow: hidden;
}
#signup .form-row {
    overflow: hidden;
/*    padding: 0.5em 0 0.75em;*/
}
.form-label {
    float: left;
    margin-right: -150px;
    padding: 0.5em 0 0.25em 0.5em;
    width: 140px;
}
#signup .form-label,
#vip .form-label,
#login .form-label {
    margin-right: 0;
    padding: 12px 0 0;
    width: 225px;
    text-align: right;
}
.form-field {
    margin-left: 150px;
    padding: 0.25em 0;
    position: relative;
}
#signup .form-field,
#vip .form-field {
    margin-left: 240px;
/*    padding: 0;*/
    position: relative;
}
.placeholder { color: #777777 }
.form-row.last { margin: 0 !important }
.form-buttons {
    border: 1px solid #C5D0C9;
    overflow: hidden;
    padding: 0.5em;
    text-align: center;
}
.form-buttons.loading {
    background-position: center center;
    text-indent: -9999px;
}
.form-buttons button,
.form-buttons input,
.form-buttons .button-alt { vertical-align: middle }
.button-alt { font-size: 1em }
.button-alt a:link,
.button-alt a:visited,
.button-alt a:active {
    color: #EE0000;
    text-decoration: underline;
}
#signup fieldset input,
#signup fieldset textarea,
.register #signup input,
#account fieldset input,
#account fieldset textarea,
#account input,
#vip fieldset input {
    font: bold 14px 'Helvetica Neue',Arial,Helvetica,sans-serif;
    padding: 5px 4px;
    border: 1px solid #BDC7D8;
}
#signup fieldset input.file {
    font: bold 1em 'Helvetica Neue',Arial,Helvetica,sans-serif;
    padding: 5px 4px;
}
#signup fieldset select,
#account fieldset select {
    padding: 0;
    width: 263px;
    font-size: 11px;
}
.form-submit {
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;
    border-radius: 7px;
    padding: 7px;
    text-align: left;
    background-color:#F3F3F3;
    margin: 1.5em 0 0.75em;
    overflow: hidden;
}
.ie7 .form-submit,
.ie8 .form-submit {
/*    margin-bottom: 80px;*/
    padding: 10px 0 22px;
}
.submit-but {
    font-size: 1.35em;
    padding:2px 6px;
    text-align:center;
    background-repeat: repeat;
    border: 1px solid #838383;
    font-weight: bold;
    cursor: pointer;
}
.buttonGreen {
	font-size:13px;
	color:#FFFFFF;
	background-color:#69A74E;
	background-position:0 -96px;
	border-color:#3B6E22 #3B6E22 #2C5115;
}
.ie8 .submit-but { padding: 5px 10px }


.uiButton,
.uiButtonSuppressed:active,
.uiButtonSuppressed:focus,
.uiButtonSuppressed:hover,
#saveForm,
.ZebraDialog_Button0,
.ZebraDialog_Button1{border:1px solid #999;border-bottom-color:#888;box-shadow:0 1px 0 rgba(0, 0, 0, .1);-moz-box-shadow:0 1px 0 rgba(0, 0, 0, .1);-webkit-box-shadow:0 1px 0 rgba(0, 0, 0, .1);color:#333;cursor:pointer;display:-moz-inline-box;display:inline-block;font-size:11px;font-weight:bold;line-height:normal !important;padding:2px 6px;*position:relative;text-align:center;text-decoration:none;vertical-align:top;white-space:nowrap; background-repeat: repeat;}
.uiButton + .uiButton{margin-left:4px}
.uiButton:hover{text-decoration:none}
.uiButton:active,
.uiButtonDepressed{background:#ddd;border-bottom-color:#999;box-shadow:0 1px 0 rgba(0, 0, 0, .05);-moz-box-shadow:0 1px 0 rgba(0, 0, 0, .05);-webkit-box-shadow:0 1px 0 rgba(0, 0, 0, .05); outline:none;}
.uiButton .img{vertical-align:top}
.uiButtonMedium .img{margin-top:2px}
.uiButtonLarge .img{margin-top:4px}
.uiButton .customimg{margin-top:0}
.uiButton .uiButtonText,
.uiButton input{background:none;border:0;color:#333;cursor:pointer;display:-moz-inline-box;display:inline-block;font-family:'Lucida Grande', Tahoma, Verdana, Arial, sans-serif;font-size:11px;font-weight:bold;margin:0;outline:none;padding:1px 0 2px;white-space:nowrap;_width:0}
.uiButton input{*overflow:visible;*padding-bottom:0}
.ff3.mac .uiButtonMedium .uiButtonText,
.ff3.mac .uiButtonMedium input{margin-bottom:-1px}
.uiButton input::-moz-focus-inner{border:0;padding:0}
.uiButtonDepressed,
.uiButtonDepressed input{cursor:default}
.uiButtonSpecial{background-color:#69a74e;background-position:0 -96px;border-color:#3b6e22 #3b6e22 #2c5115;color:#fff}
.uiButtonSpecial:active{background:#609946;border-bottom-color:#3b6e22}
.uiButtonSpecial.uiButtonDisabled,
.uiButtonSpecial.uiButtonDisabled:active{background:#69a74e;border-bottom-color:#3b6e22}
.uiButtonConfirm, #saveForm{background-color:#5b74a8;background-position:0 -48px;border-color:#29447e #29447e #1a356e;color:#fff}
.uiButtonConfirm:active, #saveForm:active{background:#4f6aa3;border-bottom-color:#29447e}
.uiButtonConfirm.uiButtonDisabled,
.uiButtonConfirm.uiButtonDisabled:active{background:#5b74a8;border-bottom-color:#29447e}
.uiButtonSpecial .uiButtonText,
.uiButtonConfirm .uiButtonText,
.uiButtonSpecial input,
.uiButtonConfirm input{color:#fff}
.uiButtonRemove{background: none #D80404;border-color:#B70000 #B70000 #910000;color:#fff}
.uiButtonRemove:active{background:#C10000;border-bottom-color:#29447}
.uiButtonDisabled,
.uiButtonDisabled:active,
.uiButtonDisabled .img{cursor:default;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity = 50)";filter:alpha(opacity = 50);opacity:.5;box-shadow:none;-moz-box-shadow:none;-webkit-box-shadow:none}
.uiButtonDisabled,
.uiButtonDisabled:active{background:#f2f2f2}
.uiButtonDisabled input{cursor:default}
.uiButtonDefault.uiButtonDisabled,
.uiButtonDefault.uiButtonDisabled:active{border-color:#c8c8c8;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity = 100)";filter:alpha(opacity = 100);opacity:1}
.uiButtonDefault.uiButtonDisabled input,
a.uiButtonDisabled .uiButtonText{color:#b8b8b8}
#saveForm,
.uiButtonLarge,
.uiButtonLarge .uiButtonText,
.uiButtonLarge input{font-size:16px}
.uiButtonLarge input{*margin-top:-1px;*padding:0}
.uiButtonSuppressed{background:none;border-color:transparent;_border-color:#fff;box-shadow:none;-moz-box-shadow:none;-webkit-box-shadow:none}
.uiButtonNoText .img{margin-left:-1px;margin-right:-1px}
a.uiButton:hover {color:#333333;}
a.uiButtonSpecial:hover {color:#FFFFFF;}
a.uiButtonConfirm:hover {color:#FFFFFF;}
a.uiButtonRemove:hover {color:#FFFFFF;}
.webkit .uiButton,
.webkit .uiButtonSuppressed:active,
.webkit .uiButtonSuppressed:focus,
.webkit .uiButtonSuppressed:hover,
.webkit #saveForm {padding-bottom: 4px;}
.gecko a.uiButtonLarge, .ie7 a.uiButtonLarge, .gecko div.uiButtonLarge, .ie7 div.uiButtonLarge {line-height:22px !important;}
.webkit a.uiButtonLarge, .opera a.uiButtonLarge, .webkit div.uiButtonLarge, .opera div.uiButtonLarge {line-height:18px !important;}
.safari.win a.uiButtonLarge, .safari.win div.uiButtonLarge {padding: 4px 6px;}
.chrome.win a.uiButtonLarge, .chrome.win div.uiButtonLarge {padding: 3px 6px;}
.opera.win a.uiButtonLarge, .opera.win div.uiButtonLarge {padding: 3px 6px 2px;}
.ie7 a.uiButtonLarge, .ie7 div.uiButtonLarge {padding: 3px 6px;}
.ie6 a.uiButtonLarge, .ie6 div.uiButtonLarge {_line-height:22px; padding: 4px 6px 5px;}
.ie6 a.uiButtonLarge:hover, .ie6 div.uiButtonLarge:hover {text-decoration: none;}


input.error,
textarea.error {
/*    background: #FBE3E4;*/
    color: #D12F19;
    border: 1px solid red !important;
}
input.disabled {
	border-color: #BFBFBF !important;
	background-color: #DFDFDF !important;
}
.form-field .message {
    display: inline;
    padding: 0 8px;
    background: transparent none repeat scroll 0 0;
    border: medium none;
    font-size: 12px;
    position: absolute;
    top: 5px;
}
.form-field .message.error { color: #D12F19 }
#signup .register a {
    color: #3366CC;
    font-weight: normal;
    text-decoration: underline;
}
.signup-overview {
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;
    border-radius: 7px;
    background-color: #F3FFF0;
    border: 2px solid #CFE6CC;
    margin: 1.5em 0;
    padding: 1.5em 1.5em 1.7em;
}
.signup-overview h2 {
    line-height: 1;
    margin: 0;
    font-size: 1.35em;
    font-weight: bold;
}
.signup-overview h2 span { color: #669955 }
.signup-overview h3 {
    color: #7E898C;
    font-weight: normal;
    margin: 0.5em 0 0;
    font-size: 1.05em;
}
.layerForm {
	background-color:#FFFFFF;
	border-color:#A4ACAF;
	border-style:solid;
	border-width:1px 1px 1px 5px;
	padding:14px 10px 13px;
	position:absolute;
	
}
#changeLayer {
	left:498px;
	top:10px;
	width:180px;
	display: none;
}
.webkit #changeLayer, .ie #changeLayer {
	top:26px;
}
.opera #changeLayer {
	left: 504px;
	top:28px;
}
/* NAV
   ================================================== */
:focus { outline: 0 none }
#header {
}
#header #nav_main {
    border-left: 1px solid #737373;
    height: 44px;
    margin-left: 263px;
    _margin-left: 258px;
}
#nav_main ul li {
    border-right: 1px solid #737373;
    float: left;
    height: 44px;
    position: relative;
    font-size: 10px;
    
}
#header ul.nav ul li {
	font-size: 11px;
}
#nav_main ul li a {
    color: #FFFFFF;
    display: block;
    padding: 16px 8px 0;
    text-decoration: none;
    font-weight: normal;
    height: 28px;
    letter-spacing: 1px;
    text-shadow: 0 1px 1px #000;
    position: relative;
    z-index: 10200;
}
.webkit #nav_main ul li a { text-shadow: none }
#nav_main ul li a.space { padding-right: 23px }
.win.safari #nav_main ul li a.space,
.ie6 #nav_main ul li a.space { font-weight: normal }
.safari #nav_main ul li a#browse { min-width: 62px; }
#nav_main ul li a:hover,
#nav_main ul li a.selected,
#nav_main ul li a.subcategories:hover,
#nav_main ul li a.subcategories.selected {
    background-color: #2B2B2B;
    outline: medium none;
}
#nav_main ul li a.selected {
	background-color: #444444;
    outline: medium none;
}
#nav_main ul li a.subcategories { background-color: #3F3F3F }
#header ul.nav li ul li a span {
    width: 24px;
    height: 24px;
    position: absolute;
    left: 8px;
    *top: 0px;
}
#header ul.nav .lang i {
	cursor: pointer;
	display: block;
	position: absolute;
	left: 7px;
	top: 10px;
	width: 22px;
}
#header ul.nav li ul li a span.profile { background-position: -9px -89px }
#header ul.nav li ul li a span.favorites { background-position: -33px -209px }
#header ul.nav li ul li a span.vip { background-position: -33px -89px }
#header ul.nav li ul li a span.settings { background-position: -57px -89px }
#header ul.nav li ul li a span.news { background-position: -81px -89px }
#header ul.nav li ul li a span.logout { background-position: -105px -89px }
#header ul.nav li ul li a span.upload { background-position: -128px -89px }
#header ul.nav li ul li a span.myworks { background-position: -9px -113px }
#header ul.nav li ul li a span.spanish, a span.spanish, i.spanish { background-position: -33px -113px }
#header ul.nav li ul li a span.english, a span.english, i.english { background-position: -57px -113px }

#header ul.nav li ul li a span, #header ul.nav li ul li a:hover span {
	background-color: transparent;
}
/*#header ul.nav li ul li a:hover span.profile { background-position: -9px -209px }
#header ul.nav li ul li a:hover span.vip { background-position: -33px -137px }
#header ul.nav li ul li a:hover span.settings { background-position: -57px -137px }
#header ul.nav li ul li a:hover span.news { background-position: -81px -137px }
#header ul.nav li ul li a:hover span.logout { background-position: -105px -137px }
#header ul.nav li ul li a:hover span.upload { background-position: -128px -137px }
#header ul.nav li ul li a:hover span.myworks { background-position: -9px -161px }*/

#header ul.nav li a.social { padding: 12px 4px 4px 8px }
#header ul.nav span.twitter {
    background-position: 0 -300px;
    width: 30px;
    height: 35px;
    _height: 26px;
    display: block;
    cursor: pointer;
}
#header ul.nav li.collections { position: static }
#header ul.nav #collections {
    /*column-count: 4;
    column-width: 180px;*/
    float: left;
    height: 250px;
    left: 106px;
    padding: 8px;
}
.webkit #header ul.nav #collections,
.opera #header ul.nav #collections,
.ie #header ul.nav #collections { width: 724px }
html.opera ul.nav #collections { height: 290px }
#header ul.nav #collections li {
    margin-right: 0px;
    overflow: hidden;
}
#header ul.nav #collections ul {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-bottom: medium none;
    border-right: 1px solid #404040;
    height: 250px;
    margin: 0;
    padding: 0;
    position: static;
    left: 0;
    float: left;
    width: 180px;
}
#header ul.nav #collections ul:last-child { border-right: none }
#header ul.nav #collections ul.collectionsTop li { border-right: none }
#header ul.nav li.collections ul li a {
    padding: 0 8px;
    width: auto;
}
#header ul.nav li.collections ul li a.active {
    background: -moz-linear-gradient(center bottom , #7D7D7D 14%, #999999 57%) repeat scroll 0 0 transparent;
    background: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0.14, rgb(125,125,125)),
        color-stop(0.57, rgb(153,153,153))
    );
    filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#7D7D7D', EndColorStr='#999999');
}
#header ul.meta {
    position: absolute;
    top: 0;
    right: 0;
    border-right: none;
}
#header ul.meta li {
    border: none;
    border-left: 1px solid #737373;
    text-indent: 0;
    height: 44px;
}
#header ul.meta li a.lang {
	width: 32px;
}
#header ul.meta li a.lang span {
	padding-left: 23px;
}
/* ===[ Menu -> Buttons ]=== */
a.space span {
    display: block;
    height: 12px;
    position: absolute;
    right: 6px;
    top: 17px;
    width: 12px;
    cursor: pointer;
}
a.space span.drop { background-position: 0 -211px }
a.space span.special { background-position: 0 -253px }
a.space span.normal { background-position: 0 -232px }
a.space span.change {
    background-position: 0 -274px;
    height: 16px;
    width: 11px;
    top: 16px;
}
a.lang i {
/*	background-position: -57px -137px;*/
	position: absolute;
	height: 23px;
	width: 23px;
	top: 12px;
	right: 8px;
}
a.space span.new {
/*	background-image: url(/images/others/menu_new.png);*/
	width: 24px;
	height: 10px;
	position: absolute;
	top: 5px;
	left: 8px;
	text-indent: -9999px;
	display: none;
}
/* ===[ End Menu -> Buttons ]=== */
/* ===[ Menu -> Dropdown ]=== */
ul.nav { z-index: 10000 }
ul.nav li:hover a,
ul.nav li.sfHover a { background: #2B2B2B }
ul.nav li:hover ul a:hover,
ul.nav li.sfHover ul a:hover { background: #2B2B2B }
ul.nav ul {
    background-color: #2B2B2B;
    border-bottom: 1px solid #000;
    position: absolute;
    top: -999em;
    left: 0;
    z-index: 101;
    padding: 6px 0;
    -webkit-box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.2), 0px 0px 2px rgba(0, 0, 0, 0.2), 0px 1px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.2), 0px 0px 2px rgba(0, 0, 0, 0.2), 0px 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.2), 0px 0px 2px rgba(0, 0, 0, 0.2), 0px 1px 1px rgba(0, 0, 0, 0.2);
}
/*.opera #header ul.nav ul,
.opera #header ul.nav ul#collections { padding-bottom: 45px }*/
ul.nav li:hover ul,
ul.nav li.sfHover ul { top: 44px }
#nav_main ul.nav ul li {
    border: 0;
    float: none;
    position: relative;
    z-index: 102;
    height: 25px;
}
.webkit #nav_main ul.nav ul#collections li,
.opera #nav_main ul.nav ul#collections li,
.ie #nav_main ul.nav ul#collections li {
    float: left;
    width: 180px;
}
.ie #collections li a {
    font-family: 'helvetica neue',helvetica,arial;
    letter-spacing: normal;
}
#nav_main ul.nav ul hr {
    height: 1px;
    background-color: #3F3B3B;
    border: 0;
    border-top: 1px solid #6F6F6F;
    margin: 5px 0;
}
.ie8 #nav_main ul.nav ul hr { display: none }
.ie7 #nav_main ul.nav ul li.hr,
.ie8 #nav_main ul.nav ul li.hr {
    border-bottom: 1px solid #6F6F6F;
    margin: 0 0 5px 0;
    height: 30px;
}
#nav_main ul.nav ul li a {
    height: 25px;
    line-height: 25px;
    padding: 0 8px 0 38px;
    text-transform: none;
    position: relative;
    width: 150px;
    white-space: nowrap;
    font-family: 'Helvetica Neue';
    letter-spacing: 0;
}
.win #nav_main ul.nav ul li a { font-family: 'helvetica neue',helvetica,arial }
.ie #nav_main ul.nav ul li a { letter-spacing: normal }
#nav_main ul.nav ul li a:hover {
    background: -moz-linear-gradient(-90deg, #518FA1, #39798D) repeat scroll 0 0 transparent;
    background: -webkit-gradient(linear, left top, left bottom, from(#518FA1), to(#39798D));
    background-color: #39798D;
    filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#518FA1', EndColorStr='#39798D');
}
#header ul.meta ul {
    -moz-border-radius-bottomright: 0;
    -webkit-border-bottom-right-radius: 0;
    border-bottom-right-radius-: 0;
}
#header ul.meta ul li a { width: 59px }
/* ===[ End Menu -> Dropdown ]=== */
#header .green { color: #B2F942 }
#header .yellow { color: yellow }
#header .red { color: red }
#header #browse-nav {
    background-color: #2B2B2B;
    display: block;
    overflow: hidden;
    padding: 0;
    margin: 0;
    position: relative;
}
#browse-nav .subnav {
    display: block;
    float: left;
    height: 350px;
    width: 166px;
}
#browse-nav .subnav li {
    border-bottom: 1px solid #404040;
    display: block;
    float: left;
    height: 69px;
    line-height: 70px;
    padding: 0 0 0 25px;
    width: 141px;
    cursor: pointer;
}
#browse-nav .items {
    -moz-column-count: 1;
    -moz-column-gap: 0;
    -moz-column-width: 210px;
    -webkit-column-count: 4;
    -webkit-column-gap: 0px;
    -webkit-column-width: 211px;
    border-left: 1px solid #404040;
    color: #CECECE;
    display: block;
    float: left;
    height: 350px;
}
.ie #browse-nav .items {
    height: 313px;
    width: 840px;
    _width: 836px;
}
body.subcategory #browse-nav .items {
    border-left: 1px solid #404040;
    color: #CECECE;
    display: block;
    float: left;
    height: 350px;
}
.ie body.subcategory #browse-nav .items {
    height: 280px;
    width: 840px;
    _width: 836px;
}
.webkit #browse-nav .items { width: 844px }
#browse-nav .items ul {
    margin: 0;
    padding: 0;
}
body.subcategory #browse-nav .items ul.collectionsTop {
    width: 100%;
    position: static;
    display: none;
    height: auto;
    margin: 0;
}
body.subcategory #browse-nav .items ul {
    display: block;
    height: 316px;
    margin: 0;
    padding: 0;
}
body.subcategory #browse-nav .items ul#collections,
body.detail #browse-nav .items ul#collections { margin: 70px 0 0 }
.ie body.subcategory #browse-nav .items ul#collections,
.ie body.detail #browse-nav .items ul#collections { margin: 0 }
#browse-nav .items li {
    border-bottom: 1px solid #404040;
    border-right: 1px solid #404040;
    display: block;
    height: 34px;
    line-height: 34px;
    margin: 0;
    padding: 0;
    text-transform: capitalize;
    width: 210px;
}
.ie #browse-nav .items li,
.opera #browse-nav .items li {
    float: left;
    width: 209px;
}
#browse-nav .items li.all,
#browse-nav .items li.active {
    float: left;
    /*width: 449px;*/
}
#header #browse-nav .items li.all a,
#header #browse-nav .items li.active a {
    font-weight: bold;
    text-shadow: 0 1px 1px #000000;
}
#header #browse-nav .items li a {
    color: #CECECE;
    display: block;
    font-family: 'helvetica neue',helvetica,arial;
    font-size: 15px;
    font-weight: lighter;
    height: 34px;
    line-height: 34px;
    padding: 0 0 0 25px;
    letter-spacing: 0px;
    overflow: hidden;
}
#browse-nav .items li a:hover { background-color: #1A1A1F }
#browse-nav .subnav li:hover,
#browse-nav li.selected { background-color: #1A1A1F }
#header #browse-nav .items li a.active { font-weight: bold }

#filterbar-nav {
    font-family: 'Helvetica Neue';
    font-size: 24px;
    font-weight: bold;
    line-height: 40px;
    margin-top: 44px;
    #margin-top: 38px;
    padding: 0 15px;
    position: relative;
    /*    _display: none;*/
    _height: 40px;
    _margin-top: 0;
	background-position: 0 -335px;
	background-repeat: repeat;
    border-bottom: 1px solid #B3BCBF;
}
body.favorites #filterbar-nav {
	background-position: 0 -1px;
	-webkit-box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.5));
	box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.5);
	z-index: 1;
}
.ie7 #filterbar-nav { padding-top: 2px }
.win #filterbar-nav { font-family: 'helvetica neue',helvetica,arial }
.subcategory #filterbar-nav {
    padding-bottom: 15px;
    text-transform: capitalize;
}
.login #filterbar-nav { margin-top: 0 }
#filterbar-nav,
#filterbar-nav h2 {
    font-size: 24px;
    font-weight: bold;
    line-height: 40px;
}
body.detail #filterbar-nav {
    padding-bottom: 15px;
    background-position: 0 -471px;
    background-repeat: repeat-x;
    border-bottom: 1px solid #B3BCBF;
    margin-top: 44px;
    _margin-top: 0;
}
#filterbar-nav .breadcrumb {
    line-height: 0;
    font-size: 12px;
}
#filterbar-nav .breadcrumb {
    #position: absolute;
    #top: 34px;
    #left: 15px;
    #line-height: normal;
}
.ie8 #filterbar-nav .breadcrumb {
    position: absolute;
    top: 40px;
}
#filterbar-nav .breadcrumb a {
    text-decoration: underline;
    font-weight: normal;
    /*    text-transform: none;*/
}
#filterbar-nav h2 {
    display: inherit;
    font-size: 24px;
    /*    padding-right: 130px;*/
}
.detail #filterbar-nav h2 { text-transform: none }
#filterbar-nav .splitter {
    font-size: 13px;
    position: absolute;
    right: 15px;
    top: 11px;
    #top: 13px;
    _top: 10px;
    line-height: normal;
}
#filterbar-nav .splitter ul {
    display:inline;
    line-height:normal;
}
#filterbar-nav .splitter ul li {
    margin-right: 3px;
    float: left;
}
#filterbar-nav .splitter ul li a {
    padding: 2px 10px;
    color: #333333;
    display: block;
}
#filterbar-nav .splitter ul li a:hover {
    background-color: #979696;
    color: #FFFFFF;
    -moz-border-radius: 10000px;
    -webkit-border-radius: 1000px;
    border-radius: 1000px;
    text-shadow: 0 1px rgba(0, 0, 0, 0.4);
}
.ie #filterbar-nav .splitter ul li a:hover { border: 1px solid #979696 }
#filterbar-nav .splitter ul li a:active {
    -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4) inset, 0 1px rgba(255, 255, 255, 0.4);
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4) inset, 0 1px rgba(255, 255, 255, 0.4);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4) inset, 0 1px rgba(255, 255, 255, 0.4);
    background-color: #6F6E6E;
    color: #FFFFFF;
    -moz-border-radius: 10000px;
    -webkit-border-radius: 1000px;
    border-radius: 1000px;
    text-shadow: 0 1px rgba(0, 0, 0, 0.4);
}
.ie #filterbar-nav .splitter ul li a:active { border: 1px solid #696868 }
#filterbar-nav .splitter ul li.selected-1 a,
#filterbar-nav .splitter ul li.selected-2 a {
    -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4) inset, 0 1px rgba(255, 255, 255, 0.4);
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4) inset, 0 1px rgba(255, 255, 255, 0.4);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4) inset, 0 1px rgba(255, 255, 255, 0.4);
    background-color: #8F8F8F;
    color: #FFFFFF;
    cursor: default;
    -moz-border-radius: 10000px;
    -webkit-border-radius: 1000px;
    border-radius: 1000px;
    text-shadow: 0 1px rgba(0, 0, 0, 0.4);
}
.win.chrome #filterbar-nav .splitter ul li.selected-1 a,
#filterbar-nav .splitter ul li.selected-2 a { -webkit-box-shadow: none }
.ie #filterbar-nav .splitter ul li.selected-1 a,
.ie #filterbar-nav .splitter ul li.selected-2 a { border: 1px solid #696868 }
#filterbar-nav a.titleReturn {
	padding: 7px 8px 7px 26px;
	text-decoration: none;
	font-weight: normal !important;
	font-size: 12px;
	margin: 7px 0;
	-moz-border-radius-topleft: 8px;
	-moz-border-radius-topright: 0px;
	-moz-border-radius-bottomright: 0px;
	-moz-border-radius-bottomleft: 8px;
	-webkit-border-radius: 8px 0px 0px 8px;
	border-radius: 8px 0px 0px 8px;
	position: relative;
}
#filterbar-nav a.titleReturn span {
	width: 5px;
	height: 9px;
	display: block;
	position: absolute;
	left: 12px;
	top: 9px;
}
#alert {
    background: none repeat scroll 0 0 #CBE188;
    border-top: 1px solid #A4ACAF;
    bottom: 0;
    position: fixed;
    width: 100%;
    z-index: 100;
    text-align: center;
    _display: none;
}
#alert h2 {
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 19px;
    text-shadow: 0 1px 1px #FFFFFF;
}
#alert h2 a {
    color:#333333;
    display:block;
    padding:20px 0;
    position: relative;
}
#alert h2 a:hover,
#alert h2 a.hover {
    background-color: #B9CF74;
}
#alert a.close {
    position: absolute;
    top: 0;
    right: 0;
    _right: 15px;
    padding: 5px;
    font-size: 11px;
    font-weight: normal;
    text-shadow: none;
    background-color: #333333;
    color: #FFFFFF;
}
#alert a.close:hover {
	background-color: #333333;
	color: #FFFFFF;
    text-decoration: underline;
}
#alert.new {
	bottom: 0;
	position: fixed;
	width: 100%;
	z-index: 100;
	text-align: center;
	background: url(http://www.premiumpixels.com/wp-content/themes/premium/images/hellow_bg.gif) repeat-x;
	height: 40px;
	overflow: hidden;
}
#alert.new h2 {
color: #F2F2F2;
float: left;
font-family: Georgia, 'Times New Roman', Times, serif;
font-size: 14px;
font-style: italic;
padding: 10px 0px 0px;
text-align: center;
text-shadow: rgba(0, 0, 0, 0.398438) 0px 1px 1px;
width: 960px;
}
#alert.new h2 a {
    color: #FFF799;
}
#alert.new h2 a:hover {
    color: #FFF799;
    text-decoration: underline;
}

.adv_filtr {
    padding: 0 0 16px;
    overflow: auto;
    border-bottom: 1px solid #C9C9C9;
    margin-bottom: 20px;
    _height: 144px;
}
.adv_filtr ul {
    margin-right: 55px;
    display: inline-block;
    float: left;
}
.adv_filtr ul li { }
.adv_filtr ul li a,
.adv_modal ul li a { font-weight: normal }
.adv_filtr ul li a.active {
    text-decoration: underline;
    font-weight: bold;
}
.adv_filtr ul li a.active:hover { color: #3462A4 }
.adv_filtr ul li span.title {
    font-size: 11px;
    font-weight: bold;
}
.adv_modal ul li span.title {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 2px;
}
.adv_filtr ul li span.total,
.adv_modal ul li span.total {
    color: #7F7F7F;
    font-size: 11px;
}

/* ===[ Colorbox ]=== */
#colorbox,
#cboxOverlay,
#cboxWrapper {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    overflow: hidden;
}
#cboxOverlay {
    position: fixed;
    width: 100%;
    height: 100%;
}
#cboxMiddleLeft,
#cboxBottomLeft { clear: left }
#cboxContent {
    position: relative;
    overflow: hidden;
}
#cboxLoadedContent { overflow: auto }
#cboxLoadedContent iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}
#cboxTitle { margin: 0 }
#cboxLoadingOverlay,
#cboxLoadingGraphic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
#cboxPrevious,
#cboxNext,
#cboxClose,
#cboxSlideshow { cursor: pointer }

#cboxOverlay { background-color: #5E5E5E; }
#colorbox { border: 6px solid;  }
/*.ff3 #colorbox, .ff3 #cboxWrapper, .ff3 #cboxLoadedContent, .ff3 #cboxContent { height:340px !important; }
.webkit #colorbox, .webkit #cboxWrapper, .webkit #cboxLoadedContent, .webkit #cboxContent { height:336px !important; }
.opera #colorbox, .opera #cboxWrapper, .opera #cboxLoadedContent, .opera #cboxContent { height:336px !important; }
.ie #colorbox, .ie #cboxWrapper, .ie #cboxLoadedContent, .ie #cboxContent { height:336px !important; }*/

#cboxContent { background: #fff }
#cboxLoadedContent { /*margin-bottom: 28px*/ }
#cboxTitle {
    position: absolute;
    bottom: 4px;
    left: 0;
    text-align: center;
    width: 100%;
    color: #949494;
}
#cboxCurrent {
    position: absolute;
    bottom: 4px;
    left: 58px;
    color: #949494;
}
#cboxSlideshow {
    position: absolute;
    bottom: 4px;
    right: 30px;
    color: #0092ef;
}
#cboxPrevious {
    position: absolute;
    bottom: 0;
    left: 0px;
    width: 25px;
    height: 25px;
    text-indent: -9999px;
}
#cboxPrevious.hover { background-position: -75px -25px }
#cboxNext {
    position: absolute;
    bottom: 0;
    left: 27px;
    width: 25px;
    height: 25px;
    text-indent: -9999px;
}
#cboxNext.hover { background-position: -50px -25px }
#cboxLoadingOverlay { background: url(/images/colorbox/images/loading_background.png) center center no-repeat }
#cboxLoadingGraphic { background: url(/images/colorbox/images/loading.gif) center center no-repeat }
#cboxClose {
    bottom:12px;
    position:absolute;
    right:15px;
    display: none;
}
.ie #cboxClose, .win.webkit #cboxClose {
   bottom: 11px;
}
.webkit.mac #cboxClose, .opera.mac #cboxClose {
   bottom: 13px;
}
.safari.win #cboxClose {
   bottom: 9px;
}
.cboxIE { padding: 0 !important; }
#cboxTopCenter { display:none; }

.twitter-share-button { margin-top: -1px }
.FBConnectButton_Small,
.FBConnectButton_RTL_Small { vertical-align: top }

/* ===[ Features ]=== */
#features {
	border-top: 1px solid #737373;
	border-bottom:1px solid #1px solid #737373;
	background: url("/images/others/features_text.png") repeat scroll 0 0 transparent;
	margin-top:44px;
	_margin-top: 0;
}
#features .features_div {
/*	background-color:#3F3F3F;*/
	padding: 15px;
}
#features .features_div h2 {
	font:36px/36px Helvetica Neue,Arial,sans-serif;
	letter-spacing:-1px;
	text-shadow: 0 2px 2px #000000;
	color: #EEE6DB;
}
#features .features_div h2 strong {
	font-weight:bold;
/*	text-shadow:0 2px 3px #000000, 0 0 10px rgba(0, 0, 0, 0.5), 0 0 30px rgba(120, 175, 32, 0.7), 0 0 75px rgba(178, 249, 65, 0.8);*/
	text-shadow: 0 2px 3px #000000, 0 0 10px rgba(0, 0, 0, 0.5), 0 0 30px rgba(207, 207, 207, 0.7), 0 0 75px rgba(239, 239, 239, 0.8);
	color: #C4D984;
}
#features .features_div p.tagline {
	color: #AFAFAF;
	font:300 15px/27px Helvetica Neue,Arial,sans-serif;
	margin-bottom: 20px;
	/*overflow: hidden;
	height: 23px;*/
}
#features .features_div h2, #features .features_div p.tagline {
	width: 918px;
}
#features .features_div div.img {
	width: 925px;
}
#features .features_div div.img a.ad {
	background-image: url(/images/sprites/features.png);
	display:inline-block;
	#display: inline;
	#float: left;
	margin-right:15px;
	width:290px;
	height: 70px;
	text-align: center;
	color: #FFFFFF;
	text-indent: -9999px;
	border:1px solid transparent;
	_border: 1px solid #3F3F3F;
}
#features .features_div div.img a.ad:hover {
	border:1px solid #9F9F9F;
}
#features .features_div div.img a.ad:last-child {
	margin-right: 0;
}
#features .features_div div.img a.ad.join {
	background-position: 0;
}
#features .features_div div.img a.ad.contribute {
	background-position: -290px 0;
}
#features .features_div div.img a.ad.vip {
	background-position: -580px 0;
	margin-right: 0;
}

/* ===[ Features section ]=== */
.features {
	width: 980px;
}
.features .section {
	margin:0 auto;
	margin-bottom: 50px;
	overflow:hidden;
	_height: 260px;
}
.features .section .img, .features .section .text {
	display:inline;
	float:left;
	margin:0 10px;
}
.features .section div:first-child {
	margin-left: 0;
}
.features .section .img {
	width: 540px;
	height: 240px;
	border: 5px solid #BFBFBF;
	background-color: #E0DEDE;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}
.features .section .text {
	width: 300px;
	padding-bottom: 10px;
}
.features .section .text h4 {
	color:#2C2C2C;
	font-size:18px;
	letter-spacing:-0.01em;
	margin:6px 0 0;
	padding:4px 0 0;
}
.features .section .text p {
	margin:0 0 15px;
}

/* ===[ Blog RSS section ]=== */

#blog_rss {
	font-size:11px;
	line-height:1.5;
}
#blog_rss ul {
	margin-bottom: 20px;
}
#blog_rss a.more {
	font-weight: normal;
}
#blog_rss li.image a {
	background-color: #000000;
	display: inline-block;
}
#blog_rss li.image img {
	width: 180px;
	float: left;
}
#blog_rss li.image img:hover {
	opacity: 0.9;
	filter: alpha(opacity = 90);
}
#blog_rss a {
	color: #2494DB;
	font-weight: normal;
}
#blog_rss a:hover {
	color: #4D4D4D;
}

/* ===[ Contact form section ]=== */

#ctf {
	
}
.abox div.header {
	background: #5e5e5e;
	color: #fff;
	font-family: 'Lato',Verdana,Geneva,sans-serif;
	font-size: 12px;
	padding: 6px 10px;
	text-shadow: 0 1px 1px black;
	background: url(/images/others/naeckcu.png) repeat;
}
.abox form, #ctf_form_ok {
	background: #FFFFFF;
	color: #333;
	padding: 20px 10px 0 10px;
	width: 479px;
	margin: 0;
}
#ctf_form div {
/*	width: 100%;*/
}
.abox label {
	display: block;
	padding: 0 0 2px 0;
	color: #777;
	font-weight: bold;
	font-size: 11px;
}
.abox label span {
	color: red;
	padding: 0 3px;
}
.abox input, .abox textarea{
	border: 1px solid #5E5E5E;
	padding: 4px;
	width: 471px;
	margin-bottom: 5px;
}
.abox div.buttons {
	bottom: 0px;
	position: relative;
	left: -10px;
	margin-top: 20px;
	padding: 7px 10px 7px 0 !important;
	text-align: right;
	width: 490px;
}
#ctf_form_ok {
	
}
#ctf_form_ok h2 {
	
}
#ctf_form_ok p {
	
}
.abox .alert {
	margin: 0 0 10px 0 !important;	
}
#ctf_form_error h2 {
	
}
#ctf_form_error p {
	
}



.ZebraDialog {
    background: #FFF;
    padding: 0px;
    width: 350px;
    padding: 10px 10px 0;
    *border: 1px solid #666;    /* IE6 & 7 */
    border: 1px solid #666\9;   /* IE8 */
}

.ZebraDialog .ZebraDialog_Title {
    margin: 0;
    font-weight: normal;
    font-size: 17px;
    text-align: left;
}

.ZebraDialog .ZebraDialog_Title i {
	margin-top: -5px;
	margin-right: 8px;
}

.ZebraDialog .ZebraDialog_Body {
	background-repeat: no-repeat;
	background-position: 10px 10px;
	margin: 10px 0;
	text-align: left
}

.ZebraDialog .ZebraDialog_Icon              { padding: 10px 10px 10px 68px; min-height: 48px; _height: 48px }

.ZebraDialog .ZebraDialog_Confirmation      {  }
.ZebraDialog .ZebraDialog_Error             {  }
.ZebraDialog .ZebraDialog_Information       {  }
.ZebraDialog .ZebraDialog_Question          {  }
.ZebraDialog .ZebraDialog_Warning           {  }

.ZebraDialog .ZebraDialog_Buttons {
	background: #F2F2F2;
	margin: 0 -10px;
	padding: 8px 10px 8px 10px;
	position: relative;
	text-align: right;
	border-top: 1px solid #CCC;
}
.ZebraDialog .ZebraDialog_Buttons a {
	margin-left: 4px;
}

.ZebraDialogOverlay { background: #000; }



/********** 2011-07-30 Gustavo **********/

.profile_detail h3 {
	font-size:1.3em;
}

.profile_detail .name, .profile_content .name {
	text-transform:capitalize;
}

.profile_about {
	background-color:#fefefe;
	border:1px solid #aaa;
	color:#333;
	margin:0 10px 10px 0;
	padding:10px;
	border-radius:9px 9px 9px 9px;
}

.profile_about .title {
	font-weight:bold;
}

body.detail #col3 .profile_content h2 {
	font-size:16px;
	font-weight:bold;
	margin:0 185px 3px 0;
}


.profile_pagination {
	line-height:20px;
	margin:10px 0 10px 0;
	text-align:center;
	vertical-align:middle;
}

.profile_pagination a {
	background-color: #5E5E5E;
	border: 1px solid #D0D5D7;
	display: inline-block;
	font-size: 14px;
	margin: 0 4px 0 0;
	padding: 8px;
}

.profile_pagination a#left, .profile_pagination a#left .inside {
	border-radius:15px 0 0 15px;
}

.profile_pagination a#right, #pagination a#right .inside {
	border-radius: 0 15px 15px 0;
}

.profile_pagination a#left .inside {
	padding-left: 10px;
}

.profile_pagination a#right .inside {
	padding-right: 10px;
}

.profile_pagination a .inside {
	background-color: transparent;
	color: white;
	cursor: pointer;
	font-weight: lighter;
	line-height: normal;
	padding: 0;
	position: relative;
}

.profile_pagination a.active {
	background-color:#151515;
	color:white;
}

.profile_pagination a:hover {
	background-color: #2B2B2B;
	color: white;
}

.profile_pagination a.without, .profile_pagination a.without:hover, .profile_pagination a.without:active {
	background-color: #cfcfcf;
	color: #9f9f9f;
	cursor:default;
}


#profile_edit_form .row {
	clear:both;
	height:30px;
}

#profile_edit_form .row label {
	float:left;
	font-weight:bold;
	width:8em;
}

#profile_edit_form .row span {
	float:left;
	font-weight:bold;
	padding-left:4px;
	padding-right:10px;
}

#profile_edit_form .row input, #profile_edit_form .row textarea {
	float:left;
}

#profile_edit_form div.alert {
	background-color:#FAF3C7;
	font-size:110%;
	margin:5px 0 6px;
	padding:10px 2px 10px;
}

#profile_edit_form p.warning {
	color:#901C00;
	font-weight:bold;
	text-align:center;
}


#user_image img {
	border:1px solid #ccc;
}


.profile_blk {
	background:#ddd;
	border:1px solid #ccc;
	display:inline-block;
	height:110px;
	margin:6px;
	vertical-align:top;
	width:128px;
}

.profile_blk:hover {
	background:#fff;
}

.profile_blk .profile_blk_container {
	text-align:center;
}

.profile_blk .name {
	font-size:90%;
	margin-top:4px;
	text-align:center;
	text-transform:capitalize;
}

.profile_blk img {
	margin-top:4px;
	width:64px;
}


/************************ ADD FAVORITES */
#favorites_add_summary {
	overflow: hidden;
}
#favorites_add_thumb {
	float:left;
	width:200px;
}
.favorites_text {
	padding-left: 210px;
}
#favorites_add_text span {
	margin-bottom: 5px;
	display: block;
	overflow: hidden;
}
#favorites_add_text .title {
	font-weight:bold;
	font-size: 12px;
}
#favorites_add_text .desc {
	font-size: 11px;
}
#favorites_add_text .comment {
	margin-top: 10px;
}
#favorites_add_text label {
	display: none;
}
.ie #favorites_add_text label {
	font-size: 11px;
	padding: 2px 0;
	display: block;
	width: 100%;
	color: #919191;
}
#favorites_add_text textarea {
	height: 14px;
	line-height: 13px;
	display: block;
	width: 284px;
	font-family: Verdana;
	font-size: 11px;
	padding: 2px;
	resize: none;
	border: 1px solid #AAAAAA;
}
#favorites_add_text input.text {
	line-height: 13px;
	display: block;
	font-family: Verdana;
	font-size: 11px;
	padding: 2px;
	resize: none;
	border: 1px solid #AAAAAA;
	width: 284px;
	height: 14px;
	/*margin-right: 11px;
	margin-bottom: 5px;
	float: left;*/
}
#favorites_add_text textarea:focus, #favorites_add_text input.text:focus { border-color: #8b8b8b; }
#favorites_add_summary .folder {
	margin-top: 10px;
	position: relative;
	height: 21px;
}
#favorites_add_summary .new_folder {
	margin-top: 10px;
}
#favorites_add_summary  #new_folder_access {
	font-size: 11px;
	position: relative;
	margin-left: 18px;
	border-bottom: 1px #3462A4 dashed;
	font-weight: normal;
	margin-top: 10px;
}
#favorites_add_summary  #new_folder_access i {
	position: absolute;
	left: -18px;
	top: 0;
}
#favorites_add_summary  #new_folder_access span {
	display: inline;
}
#favorites_add_summary span.select {
	font-family: Verdana;
	font-size: 11px;
	padding: 1px 2px;
	background: url(/images/others/form_select.png) no-repeat;
	padding: 4px 24px 4px 8px;
	position: absolute;
	width: 134px;
}
.ie7 #favorites_add_summary span.select, .ie8 #favorites_add_summary span.select {
	display: none;
}
#favorites_add_summary select {
	opacity: 0;
	filter: alpha(opacity=100);
	width: 165px;
	height: 21px;
}

#favorites_add_form_new_legend {
	cursor:pointer;
	padding-left:20px;
	margin: 0;
	position: absolute;
	right: 0;
	top: 0;
}
#favorites_add_form_new_legend i {
	position: absolute;
	left: 2px;
	top: 1px;
}
#favorites_add_form_new_legend.collapsed {
/*	background:url(/images/add2.png) no-repeat left center;*/
}
#favorites_add_form_new_legend.expanded i {
	background-position: -13px -189px;
}

/* ===[ Favorites page ]=== */
body.favorites table  {
	width: 100%;
}
body.favorites table tr {
	vertical-align: top;
}
body.favorites table td.sidebar {
	width: 180px;
	background-color: #E4E4E4;
	height: 600px;
	border-right: 1px solid #B3BCBF;
	border-top: 1px solid #F4F4F4;
	position: relative;
	z-index: 51;
}
body.favorites table td.sidebar #col2 {
	padding: 0 0 25px 15px;
	width: 165px;
}
body.favorites table td {
	background-color: #FFFFFF;
	padding-top: 10px;
}
body.favorites table td #col3 {
	padding: 0 0 25px 18px;
}
body.favorites table td #col3_content {
	padding-top: 31px;
}
body.favorites table td #col3_content h2 {
	padding-bottom: 25px;
	font-weight: bold;
}
body.favorites table td.sidebar #col2 h3 {
	font-size: 14px;
	margin-bottom: 15px;
}
#favlistfolders {
	margin-left: 15px;
}
#favlistfolders .favitem {
	position: relative;
	margin-bottom: 20px;
}
#favlistfolders .favitem .crop {
	background-color: #2C3635;
	-webkit-box-shadow: 2px 2px 6px 1px rgba(0, 0, 0, 0.4);
	-moz-box-shadow: 2px 2px 6px 1px rgba(0, 0, 0, 0.4);
	box-shadow: 2px 2px 6px 1px rgba(0, 0, 0, 0.4);
	vertical-align: middle;
	display:inline-block;
	display: table-cell;
	text-align: center;
	overflow: hidden;
	width: 122px;
	height: 122px;
}
.ie7 #favlistfolders .favitem .crop, .ie8 #favlistfolders .favitem .crop {
	border: 1px solid #d9d9d9;
}
#favlistfolders .favitem .crop a {
	float: left;
	width: 122px;
}
#favlistfolders .favitem .crop img {
	overflow: hidden;
	max-width: 122px;
	max-height: 122px;
	vertical-align: middle;
}
#favlistfolders .favitem .munlockmini {
	position: absolute;
	left: 7px;
	top: 7px;
	background-color: white;
	background-position: -106px -139px;
	padding: 2px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}
#favlistfolders .favitem .title {
	position: absolute;
	left: 0px;
	bottom: 0px;
	width: 116px;
	display: block;
	padding: 1px 3px;
	background-color: #414141;
	opacity: 0.7;
	filter: alpha(opacity=70);
}
html.ie7 #favlistfolders .favitem .title {
	left: 1px;
	bottom: 1px;
}
html.ie8 #favlistfolders .favitem .title {
	left: 3px;
	bottom: 3px;
}
html.ie9 #favlistfolders .favitem .title {
	left: 2px;
}
#favlistfolders .favitem .title a {
	font-size: 11px;
	font-weight: normal;
	color: white;
	opacity: 1;
}
#favlistfolders .favitem .favitem_data {
	display: none;
}
.favMenu {
	position: absolute;
	top: 0;
	right: 0;
}
.ie .thumb .favMenu {
	right: -1px;
}
.favMenu a.favMenuGradient {
	width: 20px;
	height: 20px;
	display: block;
	-moz-border-radius-topleft: 6px;
	-moz-border-radius-topright: 0px;
	-moz-border-radius-bottomright: 0px;
	-moz-border-radius-bottomleft: 6px;
	-webkit-border-radius: 6px 0px 0px 6px;
	border-radius: 6px 0px 0px 6px;
	border: 1px solid #B3BCBF;
	border-right: none;
	background: #f3f1f1; /* Old browsers */
	background: -moz-linear-gradient(top, #f3f1f1 0%, #e2e2e2 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f3f1f1), color-stop(100%,#e2e2e2)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #f3f1f1 0%,#e2e2e2 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #f3f1f1 0%,#e2e2e2 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #f3f1f1 0%,#e2e2e2 100%); /* IE10+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3f1f1', endColorstr='#e2e2e2',GradientType=0 ); /* IE6-9 */
	background: linear-gradient(top, #f3f1f1 0%,#e2e2e2 100%); /* W3C */
	overflow: auto;
	border-width: 1px !important;
	float: none !important;
	position: relative;
	z-index: 4;
}
.favMenu a.favMenuGradient:hover {
	background: #e8e8e8;*/ /* Old browsers */
	background: -moz-linear-gradient(top, #e8e8e8 0%, #d6d6d6 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e8e8e8), color-stop(100%,#d6d6d6)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #e8e8e8 0%,#d6d6d6 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #e8e8e8 0%,#d6d6d6 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #e8e8e8 0%,#d6d6d6 100%); /* IE10+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e8e8e8', endColorstr='#d6d6d6',GradientType=0 ); /* IE6-9 */
	background: linear-gradient(top, #e8e8e8 0%,#d6d6d6 100%); /* W3C */
}
.favMenu.active a.favMenuGradient {
	background-color: #4F4F4F;
	background-image: none;
	filter: none;
}
.favMenu a.favMenuGradient span.medit {
	text-indent: -9999px;
	display: block;
	width: 20px;
	height: 20px;
	cursor: pointer;
}
.favMenu ul.favMenuPopup {
	position: absolute;
	top: 22px;
	left: 0;
	padding: 2px;
	background-color: #FFFFFF;
	border: 1px solid #adacac;
	z-index: 902;
	width: 100px;
}
.ie7 .favMenu ul.favMenuPopup {
	right: 0;
	left: auto;
}
table td.sidebar .favMenu ul.favMenuPopup {
	z-index: 102;
}
.favMenu ul.favMenuPopup li a {
	padding: 4px;
	background: #f2efef;
	display: block;
	font-size: 11px;
	font-weight: normal;
	cursor: pointer;
}
.favMenu ul.favMenuPopup li a:hover {
	background: #646564;
	color: white;
}


/* ===[ Classes ]=== */
html.classes {
	background: #E1E1E1 url("http://bibliocad.com/images/others/background_texture.jpg") repeat scroll 0 0;
}
html.classes body {
	background: none transparent;
}
html.classes #header {
	background-color: rgb(94,94,94); /* Old browsers */
	background-image: -moz-linear-gradient(top, rgba(94,94,94,1) 0%, rgba(51,51,51,1) 100%); /* FF3.6+ */
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(94,94,94,1)), color-stop(100%,rgba(51,51,51,1))); /* Chrome,Safari4+ */
	background-image: -webkit-linear-gradient(top, rgba(94,94,94,1) 0%,rgba(51,51,51,1) 100%); /* Chrome10+,Safari5.1+ */
	background-image: -o-linear-gradient(top, rgba(94,94,94,1) 0%,rgba(51,51,51,1) 100%); /* Opera11.10+ */
	background-image: -ms-linear-gradient(top, rgba(94,94,94,1) 0%,rgba(51,51,51,1) 100%); /* IE10+ */
/*	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5e5e5e', endColorstr='#333333',GradientType=0 ); /* IE6-9 *!/*/
	background-image: linear-gradient(top, rgba(94,94,94,1) 0%,rgba(51,51,51,1) 100%); /* W3C */
}
html.classes.ie #header {
	background-position: 0 -615px;
	background-repeat: repeat-x;
	left: 0;
}
html.classes #headerCenter {
	width: 1000px;
	margin: 0 auto;
	background-color: transparent;
}
html.classes #header h1:hover {
	background-color: transparent;
}
html.classes #header h1 a:hover, html.classes #header ul.nav li a:hover, html.classes #header ul.nav li a.selected, html.classes #header ul.nav li a.subcategories:hover, html.classes #header ul.nav li a.subcategories.selected {
	#background: transparent;
	background-color: rgba(255, 255, 255, 0.1);
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#19FFFFFF,endColorstr=#19FFFFFF)"; 
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#19FFFFFF,endColorstr=#19FFFFFF);    
	zoom: 1;
}
html.classes #header h1 a {
	margin-left: -15px;
}
html.classes #header .search {
	width: auto;
	height: auto;
	background: none;
	margin: 10px 0 0 20px;
	padding: 0;
	border: none;
	border-radius: 0;
}
html.classes #header .hover {
    background-color: transparent;
}
html.classes #header .focused {
	background-color: transparent;
}
html.classes #header .search form {
	margin: 0;
	background-color: #e7e7e7;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	border: 1px solid #3E3E3E;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	width: 100px;
	color: #515151;
	-webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.3);
}
html.classes #header .hover form {
    background-color: #f4f4f4;
    color: #000000;
}
html.classes #header .focused form {
	width: 170px;
	background-color: #FFFFFF;
	color: #000000;
}
html.classes #header .search label {
    top: 5px;
    left: 5px;
    padding: 0;
    width: auto;
    color: #515151;
}
html.classes #header .search label:hover {
    color: #000000;
}
html.classes #header .search .inputText {
    height: auto;
	padding: 4px 5px;
	width: 74px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	font: 12px Verdana;
}
html.classes #header .focused .inputText {
	width: 144px;
}
html.classes #header .search button {
	background-color: transparent;
    background-position: 0 -184px;
    height: 14px;
    width: 14px;
    border: none;
    right: 6px;
    top: 6px;
}
html.classes #header #nav_main {
	margin-left: 31px;
	float: left;
}
html.classes #header ul.nav li:hover a {
	background: transparent;
	background-color: rgba(255, 255, 255, 0.1);
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#19FFFFFF,endColorstr=#19FFFFFF)"; /* IE8 */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#19FFFFFF,endColorstr=#19FFFFFF);   /* IE6 & 7 */
	zoom: 1;
}
html.classes #header ul.nav li:hover ul li a {
	background-color: transparent;
}
html.classes #header ul.nav li:hover ul li a:hover {
	background-color: rgba(255, 255, 255, 0.1);
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#19FFFFFF,endColorstr=#19FFFFFF)"; /* IE8 */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#19FFFFFF,endColorstr=#19FFFFFF);   /* IE6 & 7 */
	zoom: 1;
}
html.classes #header ul.nav ul {
	background-color: #494949;
	filter: none;
}
#nav_main ul li a:hover, #nav_main ul li a.selected, #nav_main ul li a.subcategories:hover, #nav_main ul li a.subcategories.selected {
    background-color: #2B2B2B;
    outline: medium none;
}
html.classes #header h1, html.classes #header .search, html.classes #nav_main ul li { border-right: none; }
html.classes #header #nav_main, html.classes #header ul.meta li { border-left: none; }
html.classes #header ul.meta {
	top: 10px;
}
html.classes #header ul.meta li {
	border: none;
	height: auto;
	margin: 0 0 0 11px;
	font-size: 10px;
}
html.classes #header ul.meta li a {
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	font-size: 9px;
	letter-spacing: 1px;
	padding: 5px 10px 7px 9px;
	height: auto;
	*overflow: hidden; /* IE7 PRINT GRADIENT*/
	border: 1px solid #353535;
	background: rgb(107,113,119); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(107,113,119,1) 0%, rgba(36,36,36,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(107,113,119,1)), color-stop(100%,rgba(36,36,36,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, rgba(107,113,119,1) 0%,rgba(36,36,36,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, rgba(107,113,119,1) 0%,rgba(36,36,36,1) 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, rgba(107,113,119,1) 0%,rgba(36,36,36,1) 100%); /* IE10+ */
	background: linear-gradient(top, rgba(107,113,119,1) 0%,rgba(36,36,36,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6b7177', endColorstr='#242424',GradientType=0 ); /* IE6-9 */
}
.classes.ie9 #header ul.meta li a {
	border-radius: 0px;
}
html.classes #header ul.meta li a:hover {
	background: rgb(91,96,102); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(91,96,102,1) 0%, rgba(20,20,20,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(91,96,102,1)), color-stop(100%,rgba(20,20,20,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, rgba(91,96,102,1) 0%,rgba(20,20,20,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, rgba(91,96,102,1) 0%,rgba(20,20,20,1) 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, rgba(91,96,102,1) 0%,rgba(20,20,20,1) 100%); /* IE10+ */
	background: linear-gradient(top, rgba(91,96,102,1) 0%,rgba(20,20,20,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5b6066', endColorstr='#141414',GradientType=0 ); /* IE6-9 */
}
html.classes #header ul.meta li a.lang:hover, html.classes #header ul.meta li.sfHover a.lang {
	background: none white;
	border: 1px solid #bfbfbf;
	border-bottom: #FFFFFF;
	-moz-border-radius-topleft: 3px;
	-moz-border-radius-topright: 3px;
	-moz-border-radius-bottomright: 0px;
	-moz-border-radius-bottomleft: 0px;
	-webkit-border-radius: 3px 3px 0px 0px;
	border-radius: 3px 3px 0px 0px; 
	height: 13px;
	color: black;
	text-shadow: none;
}
html.classes #header ul.meta li a.lang {
	width: 32px;
	height: 11px;
}
html.classes.ie #header ul.meta li a.lang {
	width: 35px;
}
html.classes #header ul.meta li a.lang i {
	left: 7px;
	top: -3px;
}
html.classes #header ul.meta li a.lang span {
	padding-left: 23px;
}
html.classes #header ul.meta ul {
	background: none white;
	border: 1px solid #bfbfbf;
	border-top: none;
	-moz-border-radius-topleft: 3px;
	-moz-border-radius-topright: 0px;
	-moz-border-radius-bottomright: 3px;
	-moz-border-radius-bottomleft: 3px;
	-webkit-border-radius: 3px 0px 3px 3px;
	border-radius: 3px 0px 3px 3px;
	top: -999em;
	box-shadow: none;
	padding-bottom: 2px;
}
html.classes #header ul.meta ul li {
	margin-left: 0 !important;
}
html.classes #header ul.meta ul li a {
	padding: 0 0 0 38px !important;
	background: none;
	border: none;
	font-size: 11px;
	color: black;
	text-shadow: none;
	border-radius: 0;
	border-top: 1px solid white;
	border-bottom: 1px solid white;
}
html.classes #header ul.meta ul li a:hover, html.classes #header ul.meta li:hover ul li a:hover {
	background: none #baeaac;
	border-top: 1px solid #5bc63a;
	border-bottom: 1px solid #5bc63a;
}
html.classes #header ul.meta li a.space span {
	display: none;
}
html.classes #filterbar-nav {
	display: none;
}
html.classes #main {
	background-color: transparent;
	width: 1000px;
	margin: 64px auto 0;
}
html.classes #footer {
	background-color: transparent;
	border: none;
	width: 1000px;
	margin: 0 auto;
	text-shadow: 1px 1px 0 white;
	text-align: left;
}
html.classes #footer a {
	text-decoration: none;
	color: #666;
	font-size: 10px;
	letter-spacing: 1px;
	text-transform: uppercase;
}
html.classes #footer a:hover {
	text-decoration: underline;
}
html.classes #footer .first {
	color: #666;	
	padding-left: 12px;
}
html.classes #footer .last {
	margin: 6px 0;
	font-size: 11px;
	color: #888;
	line-height: 180%;
	letter-spacing: 1px;
	padding-left: 12px;
}
html.classes #col3_content {
	padding: 0;
}
div.col-content {
	width: 700px;
	float: left;
}
/*.boxshadow {
	-webkit-box-shadow: 0px 1px 4px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 1px 4px rgba(0,0,0,0.3);
	-o-box-shadow: 0px 1px 4px rgba(0,0,0,0.3);
	box-shadow: 0px 1px 4px rgba(0,0,0,0.3);
}
.ie .boxshadow {
	border-top: 1px solid #cacaca;
	border-left: 1px solid #cacaca;
	filter:progid:DXImageTransform.Microsoft.Shadow(color='#b6b6b6',direction='120',strength='4');
	*overflow: auto;
}*/

div.classes, div.books {
	overflow: auto;
	background: white;
	margin: 0 20px 20px 0;
}
.classes .desc {
	padding: 20px 36px;
	background-color: #F7F7F7;
	-moz-box-shadow: inset 0 10px 16px rgba(0,0,0,0.1);
	-webkit-box-shadow: inset 0 10px 16px rgba(0,0,0,0.1);
	box-shadow: inset 0 10px 16px rgba(0,0,0,0.1);
	border-bottom: 1px solid #E8E8E8;
	line-height: 19px;
}
.classes .desc h2 {
	font-weight: bold;
}
.classes .desc p {
	margin-top: 0 !important;
}
.classes .books div {
	padding: 40px 36px;
	overflow: auto;
}
.classes .books div h4 {
	font-size: 20px;
    margin: 0 0 20px;
}
.classes .books div a {
	display: block;
	width: 100px;
	float: left;
	margin-right: 27px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.classes.ie .books div a {
	margin-right: 26px;
}
.classes .books div a.last {
	margin-right: 0;
}
.classes .books div a img {
	margin-bottom: 8px;
	-moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.66);
	-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.66);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.66);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	filter:progid:DXImageTransform.Microsoft.Shadow(color='#b6b6b6',direction='120',strength='2');
}
.classes .books div a img:hover {
	margin-bottom: 8px;
	-moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.99);
	-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.99);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.99);
	filter:progid:DXImageTransform.Microsoft.Shadow(color='#9b9b9b',direction='120',strength='2');
}
.classes .books div a span {
	display: block;
	font-weight: normal;
}
.classes .col-sidebar {
	width: 300px;
	float: right;
}
.classes .col-sidebar .module {
	background: white;
	margin: 0 0 20px 0;
}
.classes .col-sidebar .module h3 {
	padding: 20px 14px;
	background: #5A5A5A;
	box-shadow: inset 0 10px 16px rgba(255,255,255,0.3);
	text-shadow: 0 1px 0 RGBA(0,0,0,0.9);
	color: white;
	line-height: 20px;
}
.classes .col-sidebar .module div {
	padding: 14px;
}
.classes .col-sidebar .module span {
	background: white url('http://www.zerply.com/img/ooc/zeply-grid-pattern.gif') repeat;
	padding: 14px;
	display: block;
	overflow: auto;
}
.classes .col-sidebar .module span span {
	background: transparent none;
	padding: 0;
}
.classes .col-sidebar .module span img {
	border: solid 5px #EFEFEF;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	width: 80px;
	height: 80px;
	background: white;
	margin: 8px 20px 0 0;
	float: left;
}
.classes.ie .col-sidebar .module span img {
	margin-right: 19px;
}
.classes .col-sidebar .module span span.meta {
	margin: 8px 0 0 0;
	width: 162px;
	float: right;
	line-height: normal;
}
.classes .col-sidebar .module span h5 {
	font-size: 15px;
	margin: 0 0 7px 0;
}
.classes .col-sidebar .module span .meta a {
	font-weight: normal;
	display: block;
	margin-bottom: 2px;
}
.classes .authors {
	display: block;
	height: 221px;
	clear: both;
}
.classes .authors .left {
	display: block;
	float: left;
	width: 418px;
	position: relative;
	padding: 20px 35px;
	-webkit-box-shadow: 0px 1px 4px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 1px 4px rgba(0,0,0,0.3);
	-o-box-shadow: 0px 1px 4px rgba(0,0,0,0.3);
	box-shadow: 0px 1px 4px rgba(0,0,0,0.3);
	background: white;
}
.classes .authors .right {
	display: block;
	float: right;
	width: 418px;
	position: relative;
	padding: 20px 35px;
	-webkit-box-shadow: 0px 1px 4px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 1px 4px rgba(0,0,0,0.3);
	-o-box-shadow: 0px 1px 4px rgba(0,0,0,0.3);
	box-shadow: 0px 1px 4px rgba(0,0,0,0.3);
	background: white;
}
.classes .authors .left .info {
	display: block;
	float: left;
	width: 25%;
	text-align: right;
}
.classes .authors .right .info {
	display: block;
	float: right;
	width: 25%;
	text-align: left;
}
.classes .authors .info .photo {
	border: 1px solid #E1E1E1;
	display: block;
	float: left;
	margin: 0;
	-moz-box-shadow: 0 0 2px #999;
	-webkit-box-shadow: 0 0 2px #999;
	box-shadow: 0 0 2px #999;
}
.classes .authors .photo img {
	border: 1px solid white;
	height: 100px;
	width: 100px;
}
.classes .authors .left .info .photo {
	float: right;
}
.classes .authors .right .info .photo {
	float: left;
}
.classes .authors .info .name {
	font-size: 15px;
	clear: both;
	color: #121212;
	font-family: helvetica,arial,sans-serif;
	padding: 10px 0 0 0;
	display: block;
	line-height: 17px;
	text-shadow: 0 1px 0 white;
}
.classes .authors .info .name .credentials {
	color: #06C;
	font-size: 13px;
	line-height: 100%;
	padding: 4px 0 0 0;
	font-family: helvetica,arial,sans-serif;
	font-weight: bold;
	display: block;
	text-shadow: 0 1px 0 white;
}
.classes .authors p {
	color: #121212;
	line-height: 145%;
	text-shadow: 1px 1px 0 white;
	position: relative;
	width: 70%;
}
.classes .authors .left p {
	float: right;
}
.classes .authors .right p {
	float: left;
}
.classes .section {
	float: left;
	*float: none;
	margin: 40px 36px;
	position: relative;
	width: 608px;
	*width: 607px;
}
.classes .section .img {
	position: relative;
	float: left;
	margin-right: 27px;
	width: 205px;
	height: 205px;
	overflow: hidden;
}
.classes .section .text {
	float: right;
	width: 376px;
	*width: 375px;
	position: relative;
}
.classes .section .text h4 {
	padding-bottom: 7px;
	font-size: 20px;
}
.classes .section .text p {
	float: left;
	width: 100%;
	height: 98px;
	padding-bottom: 15px;
	overflow: auto;
}
.classes .section .text .buttons {
	border: 1px solid #BFBFBF;
	float: left;
	background-color: #F9F9F9;
	overflow: hidden;
}
.classes .section .text .buttons .lessons, .classes .section .text .buttons .start {
/*	width: 50%;*/
	float: left;
}
.classes .section .text .lessons a {
	display: block;
	width: 186px;
	*width: 186px;
	line-height: 50px;
	text-align: center;
	text-shadow: 0 1px 0 #f9ffe6;
	color: #4D4D4D;
	background-color: #ececec;
	background-image: -moz-linear-gradient(top, rgba(255,255,255,0.8) 0%, rgba(229,229,229,0.7) 100%); /* FF3.6+ */
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0.8)), color-stop(100%,rgba(229,229,229,0.7))); /* Chrome,Safari4+ */
	background-image: -webkit-linear-gradient(top, rgba(255,255,255,0.8) 0%,rgba(229,229,229,0.7) 100%); /* Chrome10+,Safari5.1+ */
	background-image: -o-linear-gradient(top, rgba(255,255,255,0.8) 0%,rgba(229,229,229,0.7) 100%); /* Opera11.10+ */
	background-image: -ms-linear-gradient(top, rgba(255,255,255,0.8) 0%,rgba(229,229,229,0.7) 100%); /* IE10+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ccffffff', endColorstr='#b3e5e5e5',GradientType=0 ); /* IE6-9 */
	background-image: linear-gradient(top, rgba(255,255,255,0.8) 0%,rgba(229,229,229,0.7) 100%); /* W3C */
	-moz-transition: background-color 0.2s ease-out, opacity 0.2s ease-out;
	-o-transition: background-color 0.2s ease-out, opacity 0.2s ease-out;
	-webkit-transition: background-color 0.2s ease-out, opacity 0.2s ease-out;
	-ms-transition: background-color 0.2s ease-out, opacity 0.2s ease-out;
	transition: background-color 0.2s ease-out, opacity 0.2s ease-out; 
}
.classes .section .text .lessons a:hover {
	background-color: #b0b0b0;
}
.classes .section .text .lessons a:active {
	background-color: #b0b0b0;
	background-image: none;
}
.classes .section .text .lessons a.active {
	background-color: #F9F9F9;
	background-image: none;
}
.classes .section .text .buttons .start {
	border-left: 1px solid #BFBFBF;
}
.classes .section .text .start a {
	display: block;
	width: 187px;
	*width: 186px;
	line-height: 50px;
	height: 50px;
	overflow: hidden;
	text-align: center;
	text-shadow: 0 1px 0 white;
	color: #4E630E	;
	background-color: #D7FF37;
	background-image: -moz-linear-gradient(top, rgba(248,255,229,0.8) 0%, rgba(139,199,120,0.7) 100%); /* FF3.6+ */
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(248,255,229,0.8)), color-stop(100%,rgba(139,199,120,0.7))); /* Chrome,Safari4+ */
	background-image: -webkit-linear-gradient(top, rgba(248,255,229,0.8) 0%,rgba(139,199,120,0.7) 100%); /* Chrome10+,Safari5.1+ */
	background-image: -o-linear-gradient(top, rgba(248,255,229,0.8) 0%,rgba(139,199,120,0.7) 100%); /* Opera11.10+ */
	background-image: -ms-linear-gradient(top, rgba(248,255,229,0.8) 0%,rgba(139,199,120,0.7) 100%); /* IE10+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ccf8ffe5', endColorstr='#b38bc778',GradientType=0 ); /* IE6-9 */
	background-image: linear-gradient(top, rgba(248,255,229,0.8) 0%,rgba(139,199,120,0.7) 100%); /* W3C */
	-moz-transition: background-color 0.2s ease-out, opacity 0.2s ease-out;
	-o-transition: background-color 0.2s ease-out, opacity 0.2s ease-out;
	-webkit-transition: background-color 0.2s ease-out, opacity 0.2s ease-out;
	-ms-transition: background-color 0.2s ease-out, opacity 0.2s ease-out;
}
.classes .section .text .start a:hover {
	background-color: #478d18;
}
.classes .section .text .start a:active {
	background-color: #96c576;
	background-image: none;
}
.classes .section .text .start a .price {
	background-color: #EA4E4E;
	border: 1px solid #C44040;
	color: white;
	font-size: 10px;
	padding: 0 4px 1px;
	text-transform: uppercase;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
	padding-left: 4px;
}
.classes .section .text .buttons .list {
	display: none;
	overflow: hidden;
	clear: both;
	width: 100%;
}
.classes .section .text .buttons .list ul {
	line-height: 19px;
	margin-bottom: 0;
}
.classes .section .text .buttons .list ul li {
	padding: 5px 0 5px 15px;
}
.classes .section .text .buttons .list ul li.odd {
	background-color: #DFDFDF;
}

#colSidebar_small {
/*    position: absolute;*/
    top: 0;
    width: 220px;
    margin: 0 20px 20px;
}
#colSidebarDetail {
/*    position: absolute;*/
    top: 0;
    width: 228px;
    margin: 0 20px 20px;
}
#colSidebarBig {
/*    position: absolute;*/
    top: 0;
    width: 300px;
    margin: 0 20px 20px;
}
#colSidebarFolders {
/*    position: absolute;*/
    top: 0;
    width: 180px;
    margin: 0 20px 20px;
}
.colSidebarLeft {
	left: 0;
	float: left;
}
.layfixed .colSidebarLeft {
    margin: 0 0 20px !important;
}
.colSidebarRight {
	right: 0;
	float: right;
}
.layfixed .colSidebarRight {
    margin: 0 0 20px !important;
}

#colSidebar_small.fixed { position: fixed; top: 64px; }
.sidebarSmallLeft {
	margin: 0 20px 20px 262px !important;
}
.layfixed .sidebarSmallLeft {
	margin: 0 0 20px 242px !important;
}
.sidebarSmallRight {
	margin: 0 262px 20px 20px !important;
}
.layfixed .sidebarSmallRight {
	margin: 0 242px 20px 0 !important;
}
.sidebarDetailLeft {
	margin: 0 20px 20px 270px !important;
}
.layfixed .sidebarBigLeft {
	margin: 0 0 20px 250px !important;
}
.sidebarBigLeft {
	margin: 0 20px 20px 342px !important;
}
.layfixed .sidebarBigLeft {
	margin: 0 0 20px 322px !important;
}
.sidebarFoldersLeft {
	margin: 0 20px 20px 222px !important;
}

