

/* html-reset.css */

/**
 * @file
 * HTML Element Styling
 *
 * Ok, I admit it. I fooled you. This isn't a "reset" stylesheet. Instead this
 * is the place where you should set (not reset) the default styling for all
 * HTML elements.
 *
 * @see http://meiert.com/en/blog/20080419/reset-style-sheets-are-bad/
 * @see http://snook.ca/archives/html_and_css/no_css_reset/
 */


/*
 * Fonts
 *
 * Our font size and line height declarations are based on the following ALA
 * article:
 *   http://www.alistapart.com/articles/howtosizetextincss
 *
 * All modern browsrs use a 16px default font size. Specifying the font-size
 * and line-height in ems (relative to the 16px default font) allows the user
 * to resize the font in the browser and produces the most consistent results
 * across different browsers.
 */
body {
  font-size: 100%; /* Fixes exaggerated text resizing in IE6 and IE7 */
}

#skip-link,
#page {
  /*
   * To use a 12px font size on the page, delete the 14px declarations.
   * to use a 14px font size on the page, delete the 12px declarations.
   */

  font-size: 14px;
  line-height: 18px;

}

body,
caption,
th,
td,
input,
textarea,
select,
option,
legend,
fieldset {
  /* The following font family declarations are based on the Microsoft core web
   * fonts which are common fonts available on most computer systems. The DejaVu
   * fonts are commonly available on Linux systems where the MS fonts are less
   * common. Tahoma and Helvetica are also widely available.
   *
   * A user's web browser will look at the comma-separated list and will
   * attempt to use each font in turn until it finds one that is available
   * on the user's computer. The final "generic" font (sans-serif or serif)
   * hints at what type of font to use if the web browser doesn't find any
   * of the fonts in the list.

  font-family: "Times New Roman", Times, Georgia, "DejaVu Serif", serif;
  font-family: Times, "Times New Roman", Georgia, "DejaVu Serif", serif;
  font-family: Georgia, "Times New Roman", "DejaVu Serif", serif;

  font-family: Verdana, Tahoma, "DejaVu Sans", sans-serif;
  font-family: Tahoma, Verdana, "DejaVu Sans", sans-serif;
  font-family: Helvetica, Arial, "Nimbus Sans L", sans-serif;
  font-family: Arial, Helvetica, "Nimbus Sans L", sans-serif;

  font-family: "Courier New", "DejaVu Sans Mono", monospace;

   */

  font-family: Verdana, Tahoma, "DejaVu Sans", sans-serif;
}

pre,
code {
  font-size: 1.1em; /* Monospace fonts can be hard to read */
  font-family: "Courier New", "DejaVu Sans Mono", monospace;
}

/*
 * Headings
 */
h1 {
  font-size: 2em;
  line-height: 1.3em;
  margin-top: 0;
  margin-bottom: 0.5em; /* 0.5em is equavalent to 1em in the page's base font.
                           Remember, a margin specified in ems is relative to
                           the element's font-size, not to the pages' base
                           font size. So, for example, if we want a 1em margin
                           (relative to the base font), we have to divide that
                           length by the element's font-size:
                           1em / 2em = 0.5em */
}

h2 {
  font-size: 1.5em;
  line-height: 1.3em;
  margin-top: 0.667em; /* Equivalent to 1em in the page's base font: 1 / 1.5 = 0.667em */
  margin-bottom: 0.667em;
}

h3 {
  font-size: 1.3em;
  line-height: 1.3em;
  margin-top: 0.769em; /* Equivalent to 1em in the page's base font: 1 / 1.3 = 0.769 */
  margin-bottom: 0.769em;
}

h4,
h5,
h6 {
  font-size: 1.1em;
  line-height: 1.3em;
  margin-top: 0.909em; /* Equivalent to 1em in the page's base font: 1 / 1.1 = 0.909 */
  margin-bottom: 0.909em;
}

/*
 * Block-level elements
 */
p,
ul,
ol,
dl,
pre,
table,
fieldset {
  margin: 1em 0;
}

blockquote {
  margin: 1em 2em;
}

/*
 * Lists
 *
 * We need to standardize the list item indentation.
 */
ul,
ol {
  margin-left: 0;
  padding-left: 2em; /* LTR */
}

.block ul,
.item-list ul /* Drupal overrides */ {
  margin: 1em 0; /* LTR */
  padding: 0 0 0 2em; /* LTR */
}

ul ul, ul ol,
ol ol, ol ul,
.block ul ul, .block ul ol,
.block ol ol, .block ol ul,
.item-list ul ul, .item-list ul ol,
.item-list ol ol, .item-list ol ul {
  margin: 0;
}

li {
  margin: 0;
  padding: 0;
}

.item-list ul li /* Drupal override */ {
  margin: 0;
  padding: 0;
  list-style: inherit;
}

ul.menu li,
li.expanded,
li.collapsed,
li.leaf /* Drupal override */ {
  margin: 0;
  padding: 0;
}

ul          { list-style-type: disc; }
ul ul       { list-style-type: circle; }
ul ul ul    { list-style-type: square; }
ul ul ul ul { list-style-type: circle; }
ol          { list-style-type: decimal; }
ol ol       { list-style-type: lower-alpha; }
ol ol ol    { list-style-type: decimal; }

dt {
  margin: 0;
  padding: 0;
}

dd {
  margin: 0 0 0 2em;
  padding: 0;
}

/*
 * Links
 *
 * The order of link states are based on Eric Meyer's article:
 * http://meyerweb.com/eric/thoughts/2007/06/11/who-ordered-the-link-states
 */
a:link {
	text-decoration:none;
	color:#355d8f;
}

a:visited {
	color:#355d8f;
}

a:hover,
a:focus {
	text-decoration:underline;
}

a:active {
}

/*
 * Tables
 *
 * Drupal provides table styling which is only useful for its admin section
 * forms, so we override this default CSS. (We set it back in forms.css.)
 */
table {
  border-collapse: collapse;
  /* width: 100%; */ /* Prevent cramped-looking tables */
}

th,
thead th,
tbody th {
  text-align: left; /* LTR */
  padding: 0;
  border-bottom: none;
}

tbody {
  border-top: none;
}

/*
 * Abbreviations
 */
abbr {
  border-bottom: 1px dotted #666;
  cursor: help;
  white-space: nowrap;
}

abbr.created /* Date-based "abbreviations" show computer-friendly timestamps which are not human-friendly. */ {
  border: none;
  cursor: auto;
  white-space: normal;
}

/*
 * Images
 */
img {
  border: 0;
}

/*
 * Horizontal rules
 */
hr {
  height: 1px;
  border: 1px solid #666;
}

/*
 * Forms
 */
form {
  margin: 0;
  padding: 0;
}

fieldset {
  margin: 1em 0;
  padding: 0.5em;
}

/* wireframes.css */

/**
 * @file
 * Wireframes Styling
 *
 * Add wireframes to the basic layout elements.
 */


.with-wireframes #header .section,
.with-wireframes #content .section,
.with-wireframes #navigation .section,
.with-wireframes .region-sidebar-first .section,
.with-wireframes .region-sidebar-second .section,
.with-wireframes #footer .section {
  margin: 1px;
  padding: 2px;
  border: 1px solid #ccc;
}

.with-wireframes .region-page-closure {
  margin-top: 1px;
  padding: 2px;
  border: 1px solid #ccc;
}

/* layout-fixed.css */

/**
 * @file
 * Layout Styling (DIV Positioning)
 *
 * Define CSS classes to create a table-free, 3-column, 2-column, or single
 * column layout depending on whether blocks are enabled in the left or right
 * columns.
 *
 * This layout is based on the Zen Columns layout method.
 *   http://drupal.org/node/201428
 *
 * Only CSS that affects the layout (positioning) of major elements should be
 * listed here.  Such as:
 *   display, position, float, clear, width, height, min-width, min-height
 *   margin, border, padding, overflow
 */


/*
 * Body
 */
body { background:url(../images/bg0.jpg);}

.page-luchshie-raboty-2013-goda h1.title { display:none;}
.page-luchshie-raboty-2012-goda h1.title { display:none;}
.page-luchshie-raboty-2011-goda h1.title { display:none;}
.page-luchshie-raboty-2010-goda h1.title { display:none;}
.page-luchshie-raboty-2009-goda h1.title { display:none;}


.view-winner h3 { background:url(../images/nom2.jpg) no-repeat top center; width:170px; height:49px; font-size:14px; font-weight:bold; color:#ed1c24; text-align:center; padding:75px 0 0 0; float:left; margin-right:30px;}

.view-winner .view-content {border-top: 1px solid #C9C9C9; padding:20px 0 0 0; font-size:16px;}
.view-winner .view-content .views-row { margin-bottom:20px; width:410px; float:right;}
.view-winner .view-content:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.view-winner .views-field-field-photo-fid-1 { float:right; margin:0 0 0 5px; width:100px; text-align:center;}
.view-winner .views-field-nothing { text-align:right; font-size:14px; margin-top:10px;}

table.oldbest {}
table.oldbest td { padding:20px 0 20px 20px; border-top:1px solid #c9c9c9; vertical-align:top;}
table.oldbest td p { margin:0 0 10px 0;}
.nomin { background:url(../images/nom2.jpg) no-repeat top center; width:170px; height:49px; font-size:12px; font-weight:bold; color:#ed1c24; text-align:center; padding:75px 0 0 0; text-transform:uppercase;}

.page-o-fotokonkurse-mvd-rossii-otkrytyy-vzglyad #main-wrapper { margin:20px 0 0 0;}
.page-o-fotokonkurse-mvd-rossii-otkrytyy-vzglyad .prikaz { font-size:16px; line-height:22px; font-weight:bold; color:#444444; text-align:center; border-bottom:1px solid #d0d5d7; padding:0 0 10px 0; margin:40px 0 0 0;}
.page-o-fotokonkurse-mvd-rossii-otkrytyy-vzglyad .prikaz .read { display: inline-block; height:30px; line-height:30px; padding:0 0 0 20px; background:url(../images/read.jpg) no-repeat center left; font-size:12px; color:#1e5c7f; font-weight:normal; text-decoration:underline; margin:0px 85px 0 0; text-align:left;}
.page-o-fotokonkurse-mvd-rossii-otkrytyy-vzglyad .prikaz .download { display: inline-block; height:30px; line-height:30px; padding:0 0 0 30px; background:url(../images/doc.jpg) no-repeat center left; font-size:12px; color:#1e5c7f; font-weight:normal; text-decoration:underline; margin:20px 0 0 0;}
.page-o-fotokonkurse-mvd-rossii-otkrytyy-vzglyad .prikaz .text { font-weight:normal; font-size:12px; line-height:16px; text-align:left; display:none;}

.page-o-fotokonkurse-mvd-rossii-otkrytyy-vzglyad a.podr { display: inline-block; height:30px; line-height:30px; padding:0 0 0 20px; background:url(../images/read.jpg) no-repeat center left; font-size:12px; color:#1e5c7f; font-weight:normal; text-decoration:underline; margin:0px 85px 0 0;}
.page-o-fotokonkurse-mvd-rossii-otkrytyy-vzglyad .podr_text { font-weight:normal; font-size:12px; line-height:16px; text-align:left; display:none;}


.page-orgkomitet a.podr { display: inline-block; height:30px; line-height:30px; padding:0 0 0 20px; background:url(../images/read.jpg) no-repeat center left; font-size:12px; color:#999999; font-weight:normal; text-decoration:underline; margin:0px 0px 0 0;}
.page-orgkomitet .podr_text { font-weight:normal; font-size:11px; line-height:13px; text-align:left; display:none;}
.page-orgkomitet h1.title { display:none;}
.page-orgkomitet #main-wrapper { margin:20px 0 0 0;}
.page-orgkomitet #content-area .content { color:#4d4d4d; font-size:16px; line-height:24px;}
.page-orgkomitet #content-area .content table td { vertical-align:top; padding-right:30px; color:#3b3b3b; font-size:12px; line-height:16px; width:183px;}
.page-orgkomitet #content-area .content table td p { margin:10px 0 0 0;}
.page-orgkomitet #content-area .content table td.col1 {padding-left:0px;}
#block-block-20 { margin:20px 0 0 0;}
#block-block-20 .content a { font-size:14px; line-height:22px; text-decoration:underline;}
#block-block-20 .content { color:#444444;}
#block-block-20 .content p { margin:0 0 30px 0;}


.page-usloviya-uchastiya h1.title { font-size:16px; color:#4d4d4d; margin:0 0 35px 0; font-weight:bold;}
.page-usloviya-uchastiya #main-wrapper { margin:20px 0 0 0;}
.page-usloviya-uchastiya #content-area { color:#4d4d4d; line-height:22px;}
.page-usloviya-uchastiya #content-area li { margin: 0 0 20px 0;}

.page-trebovaniya-k-predostavlyaemym-rabotam h1.title { font-size:16px; color:#4d4d4d; margin:0 0 35px 0; font-weight:bold;}
.page-trebovaniya-k-predostavlyaemym-rabotam #main-wrapper { margin:20px 0 0 0;}
.page-trebovaniya-k-predostavlyaemym-rabotam #content-area { color:#4d4d4d; line-height:22px;}
.page-trebovaniya-k-predostavlyaemym-rabotam #content-area li { margin: 0 0 20px 0;}

.page-kratkie-rekomendacii-po-predstavleniyu-fotorabot-dlya-uchastiya-vo-vtorom-etape-fotokonkursa-mvd h1.title { font-size:16px; color:#4d4d4d; margin:0 0 35px 0; font-weight:bold;}
.page-kratkie-rekomendacii-po-predstavleniyu-fotorabot-dlya-uchastiya-vo-vtorom-etape-fotokonkursa-mvd #main-wrapper { margin:20px 0 0 0;}
.page-kratkie-rekomendacii-po-predstavleniyu-fotorabot-dlya-uchastiya-vo-vtorom-etape-fotokonkursa-mvd #content-area { color:#4d4d4d; line-height:22px;}
.page-kratkie-rekomendacii-po-predstavleniyu-fotorabot-dlya-uchastiya-vo-vtorom-etape-fotokonkursa-mvd #content-area li { margin: 0 0 20px 0;}


.page-sostav-uchastnikov-konkursnoy-komissii-iii-fotokonkursa-mvd-rossii-otkrytyy-vzglyad-2011-god h1.title { font-size:21px; color:#5b5b5b; line-height:31px; text-align:center;}
.page-sostav-uchastnikov-konkursnoy-komissii-iii-fotokonkursa-mvd-rossii-otkrytyy-vzglyad-2011-god #content-area { color:#4b4b4b; font-size:12px; line-height:20px;}
.page-sostav-uchastnikov-konkursnoy-komissii-ii-fotokonkursa-mvd-rossii-otkrytyy-vzglyad-2010-god h1.title { font-size:21px; color:#5b5b5b; line-height:31px; text-align:center;}
.page-sostav-uchastnikov-konkursnoy-komissii-ii-fotokonkursa-mvd-rossii-otkrytyy-vzglyad-2010-god #content-area { color:#4b4b4b; font-size:12px; line-height:20px;}
.page-sostav-uchastnikov-konkursnoy-komissii-i-fotokonkursa-mvd-rossii-otkrytyy-vzglyad-2009-god h1.title { font-size:21px; color:#5b5b5b; line-height:31px; text-align:center;}
.page-sostav-uchastnikov-konkursnoy-komissii-i-fotokonkursa-mvd-rossii-otkrytyy-vzglyad-2009-god #content-area { color:#4b4b4b; font-size:12px; line-height:20px;}
.page-sostav-uchastnikov-konkursnoy-komissii-iv-fotokonkursa-mvd-rossii-otkrytyy-vzglyad-2012-god h1.title { font-size:21px; color:#5b5b5b; line-height:31px; text-align:center;}
.page-sostav-uchastnikov-konkursnoy-komissii-iv-fotokonkursa-mvd-rossii-otkrytyy-vzglyad-2012-god #content-area { color:#4b4b4b; font-size:12px; line-height:20px;}
.page-sostav-uchastnikov-konkursnoy-komissii-v-fotokonkursa-mvd-rossii-otkrytyy-vzglyad-2013-god h1.title { font-size:21px; color:#5b5b5b; line-height:31px; text-align:center;}
.page-sostav-uchastnikov-konkursnoy-komissii-v-fotokonkursa-mvd-rossii-otkrytyy-vzglyad-2013-god #content-area { color:#4b4b4b; font-size:12px; line-height:20px;}
.page-sostav-uchastnikov-konkursnoy-komissii-vi-fotokonkursa-mvd-rossii-otkrytyy-vzglyad-2014-god h1.title { font-size:21px; color:#5b5b5b; line-height:31px; text-align:center;}
.page-sostav-uchastnikov-konkursnoy-komissii-vi-fotokonkursa-mvd-rossii-otkrytyy-vzglyad-2014-god #content-area { color:#4b4b4b; font-size:12px; line-height:20px;}
/*#block-block-16 { margin:50px 0 0 0; text-align:right;}
#block-block-16 .content a { color:#0c4b6e; font-size:16px; text-decoration:underline; margin:0 0 0 20px;}
*/

.page-nominacii #main-wrapper { margin:30px 0 0 0;}
.page-nominacii h1.title { display:none;}
#main-menu { width:940px; float:left; margin:0 -940px 0 0;}
#main-menu li { float:left; margin:0; display:inline; background:url(../images/menubg0.png) no-repeat top right; padding:0 3px 0 0;}
#main-menu li a { float:left; background:url(../images/menubg1.png) repeat-x top left; height:36px; line-height:36px; display: inline-block; color:#fff; text-shadow:#000 1px 1px 1px; padding:0px; width:145px; overflow:hidden; text-align:center;}
#main-menu li a:hover { background:url(../images/menubg2.png) repeat-x top left;}
#main-menu li.active a { background:url(../images/menubg2.png) repeat-x top left;}
#main-menu li.menu-345 a { width:195px;}


.page-o-fotokonkurse-mvd-rossii-otkrytyy-vzglyad h1.title { font-size:22px; color:#000; text-transform:none;}
#nominatsii .item { background:url(../images/nom.jpg) no-repeat top left; width:295px; height:43px; font-size:12px; font-weight:bold; color:#0e5277; float:left; margin:0 15px 15px 0; overflow: visible; text-align:center; padding:75px 0 0 0; position:relative;}

#nominatsii .item .hidetext {width:265px; min-height:88px; height:auto !important; height:118px; position:absolute; top:0; left:0; background:#e4e3e3; padding:15px; -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px; text-align:left; font-size:12px; line-height:18px; display:none;}
#nominatsii .item .hidetext p.text { margin:0; font-weight:normal; font-weight:normal; color:#636161; }
#nominatsii .item .hidetext a { color:#0e5277; font-weight:normal; text-decoration:underline;}
#nominatsii .item:hover .hidetext { display:inline-block;}
#nominatsii #trebova.item {height:108px; font-size:20px; line-height:22px; padding:10px 0 0 0; cursor:pointer;}
#nominatsii #trebova.item .inner { background:#EDEDED; margin:0 10px 0 10px; padding:35px 0 0 0;}
#nominatsii #trebova_text {width:570px; position:fixed; top:100px; z-index:10001; left:50%; margin-left:-492px; border:1px solid #999; background:#e4e3e3; padding:15px; -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px; text-align:left; font-size:12px; line-height:18px; display:none;}
#nominatsii #trebova_close { background:url(/sites/all/modules/lightbox2/images/close.gif) no-repeat top left; width:26px; height:26px; cursor:pointer; float:right;}
.region-sidebar-second h2.title { font-size:22px; color:#000; text-transform:none; font-weight:normal;}

#block-block-16 .content a{ color:#005d92; font-size:14px; line-height:26px;}
#block-block-14 .content a{ color:#005d92; font-size:14px; line-height:26px;}
#block-views-news-block_2 .views-field-field-newsimg-fid { float:left; margin:0 10px 0 0; width:109px; text-align:center;}
#block-views-news-block_2 .views-field-created a { color:#969d9f;}
#block-views-news-block_2 .views-row { padding:0 0 25px 0;}
#block-views-news-block_2 .views-row:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
#block-views-news-block_2 a { color:#26518b;}

.field-field-newsimg { float:left; margin:0 15px 15px 0;}

.node-type-news #content pre { white-space:normal;}

#block-block-15 .content a{ color:#005d92; font-size:14px; line-height:26px; z-index:9999;}


.section-avtori .fivestar-static-form-item { display:none;}


.page-jyuri .view-jyuri .view-header { color:#3f3f3f; font-size:14px; line-height:20px; margin:20px 20px 50px 20px;}
.page-jyuri .view-jyuri .views-view-grid {}
.page-jyuri .view-jyuri .views-view-grid td { width:158px; padding:20px 20px 30px 20px; border-right:1px solid #b4b4b4; vertical-align:top; border-bottom:1px solid #b4b4b4;}
.page-jyuri .view-jyuri .views-view-grid .row-1 td {padding:0 20px 20px 20px; }
.page-jyuri .view-jyuri .views-view-grid .row-last td { border-bottom:none;}
.page-jyuri .view-jyuri .view-footer a { color:#2e4c6c; font-size:12px;}
.page-jyuri .view-jyuri .view-footer table { width:100%; border-top:1px solid #b4b4b4;}
.page-jyuri .view-jyuri .view-footer td { padding-top:40px; width:50%}


.page-jyuri .view-jyuri .views-view-grid td.col-5 {border-right:none;}
.page-jyuri .view-jyuri .views-view-grid .views-field-picture { height:158px; width:158px; text-align:center;}
.page-jyuri .view-jyuri .views-view-grid .views-field-picture img { vertical-align:middle;}
.page-jyuri .view-jyuri .views-view-grid .views-field-picture .jyuri_link { height:158px; width:158px; text-align:center;}
.page-jyuri .view-jyuri .views-view-grid .views-field-value a { font-size:14px; line-height:20px; font-weight:bold; color:#535353;}
.page-jyuri .view-jyuri .views-view-grid .views-field-value-1 { font-size:12px; line-height:20px; color:#535353;}

#block-views-jyuri-block_1 { border-top:1px solid #b4b4b4;}
#block-views-jyuri-block_1 .views-view-grid td {width:120px; padding:0 100px 25px 0; vertical-align:top;}
#block-views-jyuri-block_1 .views-view-grid td.col-5 {padding:0 0 25px 0;}
#block-views-jyuri-block_1 .views-view-grid td.col-1 {padding:0 100px 25px 20px;}
#block-views-jyuri-block_1 .views-view-grid .views-field-value a{ font-size:14px; font-weight:bold; line-height:20px; color:#535353;}

.view-juri-full .view-content:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.view-juri-full .view-content { color:#535353; position:relative; padding-bottom:20px; padding-bottom:60px;}
.view-juri-full .views-field-picture { float: left; margin:0 40px 0 0;}
.view-juri-full .views-field-value { font-weight:bold; font-size:22px; line-height:30px;}
.view-juri-full .views-field-value-1 {font-size:16px; line-height:24px;}
.view-juri-full .views-field-nothing { position:absolute; bottom:20px; left:493px;}
.view-juri-full .views-field-nothing a { display:inline-block; background:url(../images/but5.jpg) no-repeat top left; width:142px; height:26px; text-align:center; line-height:26px; color:#5d5d5d;}
.view-juri-full .views-field-nothing a:hover {background:#d8d8da;}


#block-views-profile2_-block_1 { position:absolute; right:0; top:0; width:235px; margin-top:-164px;}
#block-views-profile2_-block_1 .view-content {background:url(../images/avtorbg1.png); padding:5px; color:#fff; font-size:12px; line-height:16px; height:140px; position:relative;}
#block-views-profile2_-block_1 .views-field-picture { float:left; margin:0 5px 0 0;}
#block-views-profile2_-block_1 .views-field-picture img { border:1px solid #fff;}
#block-views-profile2_-block_1 .views-field-value { font-weight:bold;}
#block-views-profile2_-block_1 .views-field-rid { clear:both;}
#block-views-profile2_-block_1 .views-field-nothing-1 a { color:#fff; font-size:10px; line-height:14px; text-decoration:underline; text-shadow:none; text-transform:none;}
#block-views-profile2_-block_1 .view-footer { background:url(../images/avtorbot2.png); height:24px;}
#block-views-profile2_-block_1 .views-field-nothing { position:absolute; top:5px; right:5px; cursor:pointer; z-index:999;}
#block-views-profile2_-block_1 {display:block;}
#block-views-profile2_-block_1.hide {display:none;}

#block-views-profile2_-block_2 { position:absolute; right:0; top:0; width:235px; margin-top:-164px;}
#block-views-profile2_-block_2 .view-content {background:url(../images/avtorbg1.png); padding:5px; color:#fff; font-size:12px; line-height:16px; height:140px; position:relative;}
#block-views-profile2_-block_2 .views-field-picture { float:left; margin:0 5px 0 0;}
#block-views-profile2_-block_2 .views-field-picture img { border:1px solid #fff;}
#block-views-profile2_-block_2 .views-field-value { font-weight:bold;}
#block-views-profile2_-block_2 .views-field-rid { clear:both;}
#block-views-profile2_-block_2 .views-field-nothing-1 a { color:#fff; font-size:10px; line-height:14px; text-decoration:underline; text-shadow:none; text-transform:none;}
#block-views-profile2_-block_2 .views-field-nothing-1 a.buts1 {background:#07334c; color:#fff; font-size:10px;  text-decoration:underline; text-shadow:none; text-transform:none; display:inline-block; padding:3px 15px 3px 15px; margin:20px 25px 0 0;}
#block-views-profile2_-block_2 .views-field-nothing-1 a.buts2 {background:#07334c; color:#fff; font-size:10px;  text-decoration:underline; text-shadow:none; text-transform:none; display:inline-block; padding:3px 15px 3px 15px;}
#block-views-profile2_-block_2 .view-footer { background:url(../images/avtorbot2.png); height:24px;}
#block-views-profile2_-block_2 .views-field-nothing { position:absolute; top:5px; right:5px; cursor:pointer; z-index:999;}
#block-views-profile2_-block_2 {display:block;}
#block-views-profile2_-block_2.hide {display:none;}

#block-views-profile2_-block_3 { position:absolute; right:0; top:0; width:235px; margin-top:-164px;}
#block-views-profile2_-block_3 .view-content {background:url(../images/avtorbg1.png); padding:5px; color:#fff; font-size:12px; line-height:16px; height:140px; position:relative;}
#block-views-profile2_-block_3 .views-field-picture { float:left; margin:0 5px 0 0;}
#block-views-profile2_-block_3 .views-field-picture img { border:1px solid #fff;}
#block-views-profile2_-block_3 .views-field-value { font-weight:bold;}
#block-views-profile2_-block_3 .views-field-rid { clear:both;}
#block-views-profile2_-block_3 .views-field-nothing-1 a { color:#fff; font-size:10px; line-height:14px; text-decoration:underline; text-shadow:none; text-transform:none;}
#block-views-profile2_-block_3 .views-field-nothing-1 a.logout {background:#07334c; color:#fff; font-size:10px;  text-decoration:underline; text-shadow:none; text-transform:none; display:inline-block; padding:3px 15px 3px 15px; margin:20px 25px 0 0;}
#block-views-profile2_-block_3 .view-footer { background:url(../images/avtorbot2.png); height:24px;}
#block-views-profile2_-block_3 .views-field-nothing { position:absolute; top:5px; right:5px; cursor:pointer; z-index:999;}
#block-views-profile2_-block_3 {display:block;}
#block-views-profile2_-block_3.hide {display:none;}

#block-views-profile2_-block_4 { position:absolute; right:0; top:0; width:235px; margin-top:-164px;}
#block-views-profile2_-block_4 .view-content {background:url(../images/avtorbg1.png); padding:5px; color:#fff; font-size:12px; line-height:16px; height:140px; position:relative;}
#block-views-profile2_-block_4 .views-field-picture { float:left; margin:0 5px 0 0;}
#block-views-profile2_-block_4 .views-field-picture img { border:1px solid #fff;}
#block-views-profile2_-block_4 .views-field-value { font-weight:bold;}
#block-views-profile2_-block_4 .views-field-rid { clear:both;}
#block-views-profile2_-block_4 .views-field-nothing-1 a { color:#fff; font-size:10px; line-height:14px; text-decoration:underline; text-shadow:none; text-transform:none;}
#block-views-profile2_-block_4 .view-footer { background:url(../images/avtorbot2.png); height:24px;}
#block-views-profile2_-block_4 .views-field-nothing { position:absolute; top:5px; right:5px; cursor:pointer; z-index:999;}
#block-views-profile2_-block_4 {display:block;}
#block-views-profile2_-block_4.hide {display:none;}

#block-views-profile2_-block_1 .views-field-nothing-1 a.logout {background:#07334c; color:#fff; font-size:10px;  text-decoration:underline; text-shadow:none; text-transform:none; display:inline-block; padding:3px 15px 3px 15px; margin:10px 25px 0 0;}
#block-views-profile2_-block_2 .views-field-nothing-1 a.logout {width: 69px; text-align: center; background:#07334c; color:#fff; font-size:10px;  text-decoration:underline; text-shadow:none; text-transform:none; display:inline-block; padding:3px 15px 3px 15px; margin:10px 25px 0 0;}
#block-views-profile2_-block_3 .views-field-nothing-1 a.logout {background:#07334c; color:#fff; font-size:10px;  text-decoration:underline; text-shadow:none; text-transform:none; display:inline-block; padding:3px 15px 3px 15px; margin:10px 25px 0 0;}
#block-views-profile2_-block_4 .views-field-nothing-1 a.logout {background:#07334c; color:#fff; font-size:10px;  text-decoration:underline; text-shadow:none; text-transform:none; display:inline-block; padding:3px 15px 3px 15px; margin:10px 25px 0 0;}


.region-navigation { float:left; width:991px; margin: 0 -991px 0 0; padding:0; position:relative;}



.region-navigation .edit { font-size:8px; text-transform:none; margin:0 200px 0 0;}
#block-block-9 { margin:0; padding:0px;}
#block-block-9 img { vertical-align:top;}
#block-block-9 #logininbutton { position:absolute; top:0; right:0; cursor:pointer; z-index:0; background:url(../images/menubg0.png) no-repeat top right; padding:0 3px 0 0; height:36px; line-height:36px;}
#block-block-9 #logininbutton div { text-align:center; width:50px; background:url(../images/menubg3.png) repeat-x top left; height:36px; line-height:36px; font-size:9px; text-shadow:#000 1px 1px 1px; color:#fff; text-transform:uppercase;}
#block-block-9 #logininbutton:hover div {background:url(../images/menubg1.png) repeat-x top left;}
#block-block-10 #closebutton { position:absolute; top:0; right:0; cursor:pointer; width:34px; height:15px; padding:2px 0 0 0; text-align:center;}
#block-block-10 { position:absolute; top:0; left:0; width:991px; z-index:9999;}
#block-block-10 #loginin { background:url(../images/avtorbg1.png); margin:0; padding:15px 0 20px 95px; border-bottom:3px solid #f00; display:none; position:relative; z-index:1;}
#block-block-10 #loginin.show {display:block;}
#block-block-10 #loginin h2.title {color:#fff; font-size:14px; border-bottom:2px solid #fff; margin:0 90px 0 0; padding:0 0 3px 0;}
#block-block-10 #loginin .form-item { float:left; line-height:18px; display:inline;}
#block-block-10 #loginin .form-item label {float:left; display:inline; font-weight:normal; font-size:12px; color:#fff; line-height:18px; margin:0 30px 0 0;}
#block-block-10 #loginin #edit-name-wrapper label { margin:0 5px 0 0;}
#block-block-10 #loginin #edit-pass-wrapper label { margin:0 5px 0 20px;}
#block-block-10 #loginin .form-item .form-text { background:url(../images/formtext.jpg) no-repeat top left; width:114px; height:18px; border:none; padding:0 3px 0 3px; line-height:18px;}
#block-block-10 #loginin .form-item .form-radio { float: left;}
#block-block-10 #loginin #edit-submit {background:url(../images/subbmit1.png) no-repeat top left; width:40px; height:18px; border:none; text-indent:-9999px; float:left; margin:1em 0; cursor:pointer;}
#block-block-10 #loginin #edit-submit:hover {background:url(../images/subbmit2.png) no-repeat top left;}

#block-block-4 { position:relative; width:486px;}
#block-block-4 #closebutto { position:absolute; top:0; right:0; cursor:pointer; width:34px; height:15px; padding:2px 0 0 0; text-align:center;}
#block-block-4 #logini { background:url(../images/avtorbg1.png); margin:0; padding:15px 50px 20px 50px; border-bottom:3px 
solid #f00; position:absolute; width:470px; top:0; right:0; margin:-25px 0 0 0; z-index:1; display:none;}
#block-block-4 #logini.show {display:block;}
#block-block-4 #logini .form-item { float:left; line-height:18px;}
#block-block-4 #logini .form-item label {float:left; font-weight:normal; font-size:12px; color:#fff; line-height:18px; margin:0 30px 0 0;}
#block-block-4 #logini #edit-name-wrapper label { margin:0 5px 0 0;}
#block-block-4 #logini #edit-pass-wrapper label { margin:0 5px 0 20px;}
#block-block-4 #logini .form-item .form-text { background:url(../images/formtext.jpg) no-repeat top left; width:114px; height:18px; border:none; padding:0 3px 0 3px; line-height:18px;}
#block-block-4 #logini #edit-submit {background:url(../images/subbmit1.png) no-repeat top left; width:40px; height:18px; border:none; text-indent:-9999px; float:left; margin:1em 0; cursor:pointer;}
#block-block-4 #logini #edit-submit:hover {background:url(../images/subbmit2.png) no-repeat top left;}



body.page-node-add-autor h1.title,
body.node-type-autor.section-node-edit h1.title { display:none;}
body.page-node-add-autor #content,
body.node-type-autor.section-node-edit #content {width:850px; margin:20px auto 50px auto; font-size:12px; line-height:16px; color:#454545; float:none;}
body.page-node-add-autor .form-item,
body.node-type-autor.section-node-edit .form-item { font-weight:normal; margin:0;}
body.page-node-add-autor .form-item label,
body.node-type-autor.section-node-edit .form-item label { font-weight:normal; margin: 0 0 5px 0;}
body.page-node-add-autor .form-item .form-text,
body.node-type-autor.section-node-edit .form-item .form-text { background:url(../images/search.jpg) no-repeat top left; border-left:none; border-bottom:none; border-top:none; padding:0 5px 0 5px; margin:0; height:19px; width:685px; line-height:19px; font-size:12px; border-right:1px solid #586065; margin:0 0 0 10px;}
body.page-node-add-autor .form-item .form-textarea,
body.node-type-autor.section-node-edit .form-item .form-textarea {width:850px; font-size:12px;}
body.page-node-add-autor .form-item .form-file,
body.node-type-autor.section-node-edit .form-item .form-file { background:#fff url(../images/search.jpg) no-repeat top left; border-left:none; border-bottom:none; border-top:none; padding:0 5px 0 5px; margin:0; height:21px; line-height:19px; font-size:12px; border-right:1px solid #586065; margin:0 0 0 10px;}
body.page-node-add-autor .form-item .form-select,
body.node-type-autor.section-node-edit .form-item .form-select { background:url(../images/search.jpg) no-repeat top left; border-left:none; border-bottom:none; border-top:none; padding:1px 5px 0 5px; margin:0; height:19px; width:696px; line-height:19px; font-size:12px; border-right:1px solid #586065; margin:0 0 0 10px;}

body.page-node-add-autor #edit-field-arhiv-0-ahah-wrapper,
body.node-type-autor.section-node-edit #edit-field-arhiv-0-ahah-wrapper {background:#fff; border-right:4px solid #797979; border-bottom:4px solid #797979; padding:20px 65px 20px 75px;}


#block-block-6 {background:#fff; border-right:4px solid #797979; padding:20px 65px 5px 75px; margin:0;  font-size:12px; line-height:16px; color:#454545; }
body.page-node-add-autor #edit-field-avtorphoto-0-ahah-wrapper,
body.node-type-autor.section-node-edit #edit-field-avtorphoto-0-ahah-wrapper {background:#fff; border-right:4px solid #797979; padding:20px 65px 20px 75px;}
body.page-node-add-autor #edit-field-avtorphoto-0-ahah-wrapper #edit-field-avtorphoto-0-ahah-wrapper {background:#fff; border-right:none; border-bottom:none; padding:0px;}
body.page-node-add-autor #edit-field-ocrug-value-wrapper,
body.node-type-autor.section-node-edit #edit-field-ocrug-value-wrapper {background:#fff; border-right:4px solid #797979; padding:20px 65px 0 75px;}
body.page-node-add-autor #edit-field-zvanie-0-value-wrapper,
body.node-type-autor.section-node-edit #edit-field-zvanie-0-value-wrapper {background:#fff; border-right:4px solid #797979; padding:20px 65px 0 75px;}
body.page-node-add-autor #edit-title-wrapper,
body.node-type-autor.section-node-edit #edit-title-wrapper {background:#fff; border-right:4px solid #797979; padding:20px 65px 0 75px;}
body.page-node-add-autor #edit-field-name-0-value-wrapper,
body.node-type-autor.section-node-edit #edit-field-name-0-value-wrapper {background:#fff; border-right:4px solid #797979; padding:20px 65px 0 75px;}
body.page-node-add-autor #edit-field-otch-0-value-wrapper,
body.node-type-autor.section-node-edit #edit-field-otch-0-value-wrapper {background:#fff; border-right:4px solid #797979; padding:20px 65px 0 75px;}
body.page-node-add-autor #edit-field-mesto-select-wrapper,
body.node-type-autor.section-node-edit #edit-field-mesto-select-wrapper {background:#fff; border-right:4px solid #797979; padding:20px 65px 0 75px;}
body.page-node-add-autor #edit-field-mesto2-select-wrapper,
body.node-type-autor.section-node-edit #edit-field-mesto2-select-wrapper {background:#fff; border-right:4px solid #797979; padding:20px 65px 0 75px;}
body.page-node-add-autor #edit-field-mesto-other-wrapper,
body.node-type-autor.section-node-edit #edit-field-mesto-other-wrapper {background:#fff; border-right:4px solid #797979; padding:20px 65px 0 75px;}
body.page-node-add-autor #edit-field-mesto2-other-wrapper,
body.node-type-autor.section-node-edit #edit-field-mesto2-other-wrapper {background:#fff; border-right:4px solid #797979; padding:20px 65px 0 75px;}
body.page-node-add-autor #edit-field-rodstvo-0-value-wrapper,
body.node-type-autor.section-node-edit #edit-field-rodstvo-0-value-wrapper {background:#fff; border-right:4px solid #797979; padding:20px 65px 0 75px;}
body.page-node-add-autor #edit-field-phones-0-value-wrapper,
body.node-type-autor.section-node-edit #edit-field-phones-0-value-wrapper {background:#fff; border-right:4px solid #797979; padding:20px 65px 0 75px;}
body.page-node-add-autor #edit-field-email-0-email-wrapper,
body.node-type-autor.section-node-edit #edit-field-email-0-email-wrapper {background:#fff; border-right:4px solid #797979; padding:20px 65px 0 75px;}
body.page-node-add-autor #edit-field-avtorphoto-0-ahah-wrapper .description,
body.node-type-autor.section-node-edit #edit-field-avtorphoto-0-ahah-wrapper .description { color:#882525; padding: 0 0 0 100px;}
body.page-node-add-autor #edit-field-avtorphoto-0-ahah-wrapper #edit-field-avtorphoto-0-upload-wrapper .description,
body.node-type-autor.section-node-edit #edit-field-avtorphoto-0-ahah-wrapper #edit-field-avtorphoto-0-upload-wrapper .description { color:#000; padding: 0 0 0 10px;}

body.page-node-add-autor #edit-field-arhiv-0-ahah-wrapper .description,
body.node-type-autor.section-node-edit #edit-field-arhiv-0-ahah-wrapper .description { color:#882525; padding: 0 0 0 100px;}
body.page-node-add-autor #edit-field-arhiv-0-ahah-wrapper .filefield-element .description,
body.node-type-autor.section-node-edit #edit-field-arhiv-0-ahah-wrapper .filefield-element .description { color:#000; padding: 0 0 0 10px;}


body.page-node-add-autor #field-rabota-items,
body.node-type-autor.section-node-edit #field-rabota-items { border-bottom:1px solid #000; padding:0 0 1em 0; margin:0 0 20px 0;}
body.page-node-add-autor #field-rabota-items #edit-field-rabota-field-rabota-add-more,
body.node-type-autor.section-node-edit #field-rabota-items #edit-field-rabota-field-rabota-add-more { background:url(../images/but2.jpg) no-repeat top left; width:90px; height:53px; white-space:normal; cursor:pointer; text-shadow:#fff 1px 1px 1px; line-height:14px; font-size:11px; font-weight:bold; border:none; color:#454545;}
body.page-node-add-autor #field-rabota-items #edit-field-rabota-field-rabota-add-more:hover,
body.node-type-autor.section-node-edit #field-rabota-items #edit-field-rabota-field-rabota-add-more:hover { background:url(../images/but1.jpg) no-repeat top left}
body.page-node-add-autor #field-rabota-items .tableHeader-processed th,
body.node-type-autor.section-node-edit #field-rabota-items .tableHeader-processed th { font-weight:bold; font-size:18px;}

body.page-node-add-autor #field_rabota_values,
body.node-type-autor.section-node-edit #field_rabota_values { width:100%;}
body.page-node-add-autor #field_rabota_values tr.even, 
body.page-node-add-autor #field_rabota_values tr.odd,
body.node-type-autor.section-node-edit #field_rabota_values tr.even,
body.node-type-autor.section-node-edit #field_rabota_values tr.odd { background:none; border-bottom:1px solid #000;}
body.page-node-add-autor #field_rabota_values .form-item,
body.node-type-autor.section-node-edit #field_rabota_values .form-item { margin:10px 0 10px 0;}

.widget-edit { clear:none;}

body.page-node-add-autor #field-link-items,
body.node-type-autor.section-node-edit #field-link-items {background:#fff; border-right:4px solid #797979; padding:20px 65px 0 75px;}
body.page-node-add-autor #field-link-items .form-text,
body.node-type-autor.section-node-edit #field-link-items .form-text {width:660px;}
body.page-node-add-autor #field-link-items label,
body.node-type-autor.section-node-edit #field-link-items label { display:none;}
body.page-node-add-autor #field-link-items tr.even,
body.page-node-add-autor #field-link-items tr.odd,
body.node-type-autor.section-node-edit #field-link-items tr.even,
body.node-type-autor.section-node-edit #field-link-items tr.odd { background:none;}
body.page-node-add-autor form th,
body.page-node-add-autor form thead th,
body.node-type-autor.section-node-edit form th,
body.node-type-autor.section-node-edit form thead th { font-weight:normal; border:none;}
body.page-node-add-autor form tbody,
body.node-type-autor.section-node-edit form tbody { border:none;}
body.page-node-add-autor tr.even,
body.page-node-add-autor tr.odd,
body.node-type-autor.section-node-edit tr.even,
body.node-type-autor.section-node-edit tr.odd { border:none;}
body.page-node-add-autor tr.even td,
body.page-node-add-autor tr.odd td,
body.node-type-autor.section-node-edit tr.even td,
body.node-type-autor.section-node-edit tr.odd td { padding-bottom:5px;}
body.page-node-add-autor #field-link-items .form-submit,
body.node-type-autor.section-node-edit #field-link-items .form-submit { background:url(../images/but2.jpg) no-repeat top left; width:90px; height:53px; white-space:normal; cursor:pointer; text-shadow:#fff 1px 1px 1px; line-height:14px; font-size:11px; font-weight:bold; border:none; color:#454545;}
body.page-node-add-autor #field-link-items .form-submit:hover,
body.node-type-autor.section-node-edit #field-link-items .form-submit:hover { background:url(../images/but1.jpg) no-repeat top left}

body.page-node-add-autor #edit-field-old-0-value-wrapper,
body.node-type-autor.section-node-edit #edit-field-old-0-value-wrapper {background:#fff; border-right:4px solid #797979; padding:20px 65px 0 75px;}

body.page-node-add-autor .group-usloviya,
body.node-type-autor.section-node-edit .group-usloviya { border:none;}
body.page-node-add-autor .group-usloviya legend,
body.node-type-autor.section-node-edit .group-usloviya legend { display:none;}
body.page-node-add-autor .group-usloviya label,
body.node-type-autor.section-node-edit .group-usloviya label { display:none;}
body.page-node-add-autor .group-usloviya .form-checkboxes label,
body.node-type-autor.section-node-edit .group-usloviya .form-checkboxes label { display:inline-block; line-height:21px;}
body.page-node-add-autor .group-usloviya .form-checkboxes label a,
body.node-type-autor.section-node-edit .group-usloviya .form-checkboxes label a {color:#454545;}
body.page-node-add-autor .group-usloviya .form-checkboxes label a:hover,
body.node-type-autor.section-node-edit .group-usloviya .form-checkboxes label a:hover {color:#1e5a8c;}


body.page-node-add-autor #edit-field-padezhinfo-0-value-wrapper label,
body.node-type-autor.section-node-edit #edit-field-padezhinfo-0-value-wrapper label { font-size:16px;}
body.page-node-add-autor #edit-field-padezhinfo-0-value-wrapper .description,
body.node-type-autor.section-node-edit #edit-field-padezhinfo-0-value-wrapper .description {font-size:14px; line-height:21px;}
body.page-node-add-autor #edit-field-padezhinfo-0-value-wrapper .description span,
body.node-type-autor.section-node-edit #edit-field-padezhinfo-0-value-wrapper .description span {font-size:12px;}
body.page-node-add-autor #edit-field-padezhinfo-0-value-wrapper .description p,
body.node-type-autor.section-node-edit #edit-field-padezhinfo-0-value-wrapper .description p { color:#882525; font-size:12px;}

body.page-node-add-autor #edit-submit,
body.node-type-autor.section-node-edit #edit-submit { background:url(../images/but4.jpg) no-repeat top left; width:167px; height:37px; color:#454545; white-space:normal; cursor:pointer; text-shadow:#fff 1px 1px 1px; line-height:14px; font-size:12px; font-weight:bold; border:none;}
body.page-node-add-autor #edit-submit:hover,
body.node-type-autor.section-node-edit #edit-submit:hover { background:url(../images/but3.jpg) no-repeat top left;}
body.page-node-add-autor #edit-preview,
body.node-type-autor.section-node-edit #edit-preview { display:none;}
body.node-type-autor.section-node-edit #edit-delete { background:url(../images/but4.jpg) no-repeat top left; width:167px; height:37px; color:#454545; white-space:normal; cursor:pointer; text-shadow:#fff 1px 1px 1px; line-height:14px; font-size:12px; font-weight:bold; border:none; margin:0 0 0 510px;}
body.node-type-autor.section-node-edit #edit-delete:hover { background:url(../images/but3.jpg) no-repeat top left;}


body.page-node-add-autor .node-widget-link,
body.node-type-autor.section-node-edit .node-widget-link { display:none;}
body.page-node-add-autor .node-widget-remove,
body.node-type-autor.section-node-edit .node-widget-remove { display:none;}



.page-avtori-full h1.title { display:none;}
.page-avtori-full .views-field-field-avtorphoto-fid { float:left; width:335px; height:335px; margin:0 40px 0 0;}
.page-avtori-full .views-field-nothing a {background: url(../images/but5.jpg) no-repeat scroll left top transparent; color: #5D5D5D; display: inline-block; font-size: 14px; height: 26px; line-height: 26px; margin: 30px 25px 0 0; text-align: center; width: 142px;}
.page-avtori-full .views-field-nothing a:hover {background:#d8d8da;}
.page-avtori-full .view-content { font-size:18px; line-height:30px;}
.page-avtori-full .views-field-title { font-size:22px; font-weight:bold; }
.page-avtori-full .views-field-title span {border-bottom:2px solid #000; padding:0 0 2px 0; display:inline-block; width:615px;}
.page-avtori-full .attachment { clear:both; padding:20px 0 0 0;}
.page-avtori-full .attachment .views-field-field-avtorphoto-fid {width:auto; height:auto; margin:0 10px 0 0;}
.page-avtori-full .attachment .views-field-field-avtorphoto-fid img { border:1px solid #616161;}

.page-avtori-full .attachment .view-header { font-size:18px; padding:20px 0 40px 0; border-top:1px solid #b4b4b4; color:#000;}
.page-avtori-full .attachment td { vertical-align:top; width:320px; padding:0 10px 40px 0;}
.page-avtori-full .attachment .views-field-title span {font-size:14px; border-bottom:none; padding:0 0 10px 0; display:inline-block; width:auto;}
.page-avtori-full .attachment .views-field-title a {color:#535353;}
.page-avtori-full .attachment .view-content { font-size:12px; line-height:18px; color:#535353;}

.page-avtori-full .attachment {}
.page-avtori-full .attachment {}
.page-avtori-full .attachment {}
.page-avtori-full .attachment {}




#block-views-news-block_1 { border-bottom:1px solid #bec6c8; padding:0 0 30px 0;}
#block-views-news-block_1:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

#block-views-profile_-block_1 { height:65px;}
#block-views-profile_-block_1 .view-header { float:right;}
#block-views-profile_-block_1 .view-header a { background:url(../images/zayavki1.jpg) no-repeat top left; padding:15px 0 0 50px; color:#454545; font-size:11px; font-weight:bold; line-height:14px; display:inline-block; width:57px; height:57px;}
#block-views-profile_-block_1 .view-header a:hover { background:url(../images/zayavki2.jpg) no-repeat top left; color:#17386a; text-decoration:none;}
#block-views-profile_-block_1 .view-content { color:#921b15; font-size:12px; padding:20px 0 0 0;}
#block-views-profile_-block_1 .view-content a { color:#921b15;}
#block-views-profile_-block_1 .view-content .views-field-value { font-weight:bold;}
#block-views-profile_-block_1 .views-field-nothing { color:#8c8b8b; margin:5px 0 0 0;}
#block-views-profile_-block_1 .views-field-nothing a { color:#8c8b8b; text-decoration:underline;}

#block-views-profile_-block_3 { height:65px;}
#block-views-profile_-block_3 .view-content { color:#921b15; font-size:12px; padding:20px 0 0 0;}
#block-views-profile_-block_3 .view-content a { color:#921b15;}
#block-views-profile_-block_3 .view-content .views-field-value { font-weight:bold;}
#block-views-profile_-block_3 .views-field-nothing { color:#8c8b8b; margin:5px 0 0 0;}
#block-views-profile_-block_3 .views-field-nothing a { color:#8c8b8b; text-decoration:underline;}

#block-views-profile_-block_2 .view-content { color:#921b15; font-size:12px; padding:20px 0 0 0; line-height:20px;}
#block-views-profile_-block_2 .view-content a { color:#921b15;}
#block-views-profile_-block_2 .view-content .views-field-value { font-weight:bold;}
#block-views-profile_-block_2 .views-field-nothing { color:#8c8b8b; margin:5px 0 0 0;}
#block-views-profile_-block_2 .views-field-nothing p { color:#454545; font-size:22px;}
#block-views-profile_-block_2 .views-field-nothing a { color:#8c8b8b; text-decoration:underline;}

#block-views-profile_-block_2 .views-field-value-1, #block-views-profile_-block_2 .views-field-value-2, #block-views-profile_-block_2 .views-field-value-3, #block-views-profile_-block_2 .views-field-value-4 { font-size:14px; color:#454545;} 
#block-views-profile_-block_2 .views-field-value-3 { font-size:16px; font-weight:bold;}
#block-views-profile_-block_2 .views-field-value-4 {font-weight:bold;}
#block-views-profile_-block_2 .views-field-edit-node a{color:#898888;}


.view-zayavki-mine .view-header { float:left;}
.view-zayavki-mine .view-header a { background:url(../images/addzayavka.jpg) no-repeat top left; width:160px; height:52px; line-height:52px; display:inline-block; font-weight:bold; color:#454545; padding:3px 0 0 45px; text-shadow:#fff 1px 1px 1px; font-size:11px;}
.view-zayavki-mine .view-header .spisoktitle { font-size:22px; color:#454545; margin:20px 0 0 0;}


.view-zayavki-mine .view-filters { float:right; padding:20px 0 0 0;}
.view-zayavki-mine .view-filters .form-text {background:url(../images/search.jpg) no-repeat top left; border:none; padding:0 0px 0 5px; margin:0; height:19px; width:450px; line-height:19px; font-size:12px; color:#797979; font-style:italic;}
.view-zayavki-mine .view-filters .form-submit { margin:0; background:url(../images/searchbut.jpg) no-repeat top left; height:19px; width:28px; text-indent:-99999px; border:none; }
.view-zayavki-mine .view-filters .views-exposed-form .views-exposed-widget { padding:0;}
.view-zayavki-mine .view-content { clear:both; padding:30px 0 0 0; color:#454545; font-size:14px; line-height:20px;}
.view-zayavki-mine .view-content .views-row  { margin:0 0 20px 0; padding:0 0 10px 0; border-bottom:3px solid #797979;}
.view-zayavki-mine .view-content .views-field-field-avtorphoto-fid { float:left; margin:0 15px 0 0;}
.view-zayavki-mine .view-content .views-field-title a { font-size:16px; color:#454545; font-weight:bold; text-decoration:underline;}
.view-zayavki-mine .view-content .views-field-title a:hover {color:#385494;}
.view-zayavki-mine .view-content .views-field-field-rabota-nid { clear:both; padding:15px 0 0 60px;}
.view-zayavki-mine .view-content .views-field-field-rabota-nid .field-item { float:left; margin:0 0 25px 25px; width:96px;}
.view-zayavki-mine .view-content .views-field-field-rabota-nid .field-item .field-item { float:none; margin:0 0 0 0px; width:96px;}
.view-zayavki-mine .view-content .views-field-field-rabota-nid .field-item h2.title { display:none;}
.view-zayavki-mine .view-content .views-field-field-rabota-nid .field-item .field-field-nom { display:none;}
.view-zayavki-mine .view-content .views-field-edit-node { clear:both; margin:0 0 0 85px; border-top:1px solid #8f8f8f; padding:10px 0 0 0;}
.view-zayavki-mine .view-content .views-field-edit-node a { background:url(../images/but2.jpg) no-repeat top left; width:90px; height:43px; white-space:normal; text-shadow:#fff 1px 1px 1px; line-height:14px; font-size:11px; font-weight:bold; color:#454545; display:inline-block; text-align:center; padding:10px 0 0 0;}

.section-profile h1.title { display:none;}

body.not-front #content-area { min-height:500px; height:auto !important; height:500px; color:#4c4c4c;}

h1.title { font-size:25px; color:#3f3f3f; font-weight:normal; line-height:25px; margin:20px 0 10px 0; text-transform:uppercase;}

.view-empty { clear:both; padding:50px 0 200px 0;}

.section-raboti h1.title { display:none;}
.node-type-autor h1.title { display:none;}

.node-type-autor #content-area a {color:#535353;}
.node-type-autor #content-area table.inshow {margin:0;  font-size:18px; line-height:30px; color:#000; }
.node-type-autor #content-area table.inshow td { vertical-align:top;}
.node-type-autor #content-area table.inshow td.col1 {padding:0 40px 0 0;}
.node-type-autor #content-area .name { font-weight:bold; font-size:22px; line-height:30px; color:#000000; border-bottom:1px solid #000;}
.node-type-autor #content-area .field-field-rabota { clear:both; padding:20px 0 0 0; margin:40px 0 0 0; border-top:1px solid #b4b4b4;}
.node-type-autor #content-area .field-field-rabota .field-label { font-size:25px; color:#3f3f3f; font-weight:normal; margin:0 0 20px 0; text-transform:uppercase;}

.node-type-autor #content-area .field-field-rabota .field-items {padding:0;}
.node-type-autor #content-area .field-field-rabota .field-field-photo .field-items {padding:0 0 0 0px;}
.node-type-autor #content-area .field-field-rabota .field-item { float:left; width:234px; margin:0 13px 10px 0;}
.node-type-autor #content-area .field-field-rabota .field-item .content { position:relative;}
.node-type-autor #content-area .field-field-rabota .field-item .field-field-photo {width:234px; height:154px; text-align:center; line-height:154px;}

.node-type-autor #content-area .field-field-rabota .field-item .field-item { float:none; margin:0 0 0 0;}
.node-type-autor #content-area .field-field-rabota .field-item h2 { display:none;}
.node-type-autor #content-area .field-field-rabota .field-items .fivestar-static-form-item { margin:0 0 20px 0;}


.node-type-autor #content-area a.anketa  { display:inline-block; background:url(../images/but5.jpg) no-repeat top left; width:142px; height:26px; text-align:center; line-height:26px; color:#5d5d5d; font-size:14px; margin:30px 0 0 0;}
.node-type-autor #content-area a.anketa:hover {background:#d8d8da;}

#block-block-11 h2.title { font-size:25px; font-weight:normal; color:#3f3f3f; text-transform:uppercase;}
#block-block-11 .content a { background:url(../images/back.jpg) no-repeat top left; display:inline-block; height:14px; line-height:14px; padding:0 0 0 25px; color:#535353;}
#block-block-12 .content a { background:url(../images/back.jpg) no-repeat top left; display:inline-block; height:14px; line-height:14px; padding:0 0 0 25px; color:#535353;}
#block-block-13 .content a { background:url(../images/back.jpg) no-repeat top left; display:inline-block; height:14px; line-height:14px; padding:0 0 0 25px; color:#535353;}





.view-avtori .attachment { text-align:center; border-bottom:1px solid #b4b4b4; padding:0 0 5px 0; margin:0 0 25px 0;}
.view-avtori .attachment a { font-size:16px; color:#787676; margin:0 10px 0 0;}
.view-avtori .attachment a:hover {color:#0c4b6f;}

.view-avtori .views-exposed-form { background:#fff; -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px; height:26px; padding:7px 10px 0 10px; margin:0 0 5px 0;}
.view-avtori .views-exposed-form .views-widget { float:left;}
.view-avtori .views-exposed-form .views-exposed-widgets { margin:0;}
.view-avtori .views-exposed-form .views-exposed-widget { padding:0; float:left; line-height:17px;}
.view-avtori .views-exposed-form .views-exposed-widget label { float:left; margin:0 10px 0 0; font-size:12px; color:#0e5277;}
.view-avtori .views-exposed-form .views-exposed-widget .form-select { background:url(../images/search.jpg) no-repeat top left; border:none; padding:1px 0px 0 5px; margin:0 10px 0 0; height:19px; width:400px; line-height:19px; font-size:12px; color:#797979; font-style:italic;}
.view-avtori .views-exposed-form .views-exposed-widget .form-text { background:url(../images/search.jpg) no-repeat top left; border:none; padding:0 0px 0 5px; margin:0; height:19px; width:440px; line-height:19px; font-size:12px; color:#797979; font-style:italic;}
.view-avtori .views-exposed-form .views-exposed-widget .form-submit { margin:0; background:url(../images/searchbut.jpg) no-repeat top left; height:19px; width:28px; text-indent:-99999px; border:none; }
.view-avtori .views-exposed-form .views-exposed-widget.views-submit-button { padding:0px 0 0 0;}

.view-avtori .view-content h3 { font-size:34px; color:#787676; font-weight:normal; border-bottom:1px solid #b4b4b4; padding:0 0 0px 0; margin:0 0 20px 0; line-height:34px;}

.view-avtori .views-view-grid { margin:0;}
.view-avtori .views-view-grid td { width:330px; padding:0 10px 40px 0; color:#535353; font-size:12px; line-height:18px; }
.view-avtori .views-view-grid td a {color:#535353;}
.view-avtori .views-view-grid .views-field-field-avtorphoto-fid { float:left;}
.view-avtori .views-view-grid .views-field-field-avtorphoto-fid img { border:1px solid #000; margin:0 7px 0 0;}
.view-avtori .views-view-grid .views-field-title { font-weight:bold; font-size:14px; line-height:20px; padding:5px 0 0 0;}
.view-avtori .views-view-grid .views-field-field-name-value { font-weight:bold; font-size:14px; line-height:20px;}
.view-avtori .views-view-grid .views-field-field-otch-value { font-weight:bold; font-size:14px; line-height:20px; }

.views-field-field-photo-data { color:#969d9f; font-size:10px; text-align:center; line-height:12px; padding-top:3px;}
.photodescr { color:#fff; font-size:10px; text-align:center; line-height:12px; background:url(../images/avtorbg1.png); margin:0; position:absolute; bottom:40px; left:0; width:100%; z-index:1;}
.photodescr div {padding:3px;}

.view.raboti .view-header {margin:10px 0 0 0;}
.view.raboti .view-header:after {
  content: ".";
  display: block;
  height: 25px;
  clear: both;
  visibility: hidden;
}
.view.raboti .view-header ul { list-style:none; margin:10px 0 0 0; padding:0 0 0 10px; background:#fff; -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px; height:32px; line-height:32px;}
.view.raboti .view-header ul li { float:left; margin:0 10px 0 0;}
.view.raboti .view-header ul li a { color:#0e5277; font-size:12px; white-space:nowrap;}
.view.raboti .view-header ul li a:hover { color:#000; text-decoration:none;}

.view.raboti .attachment ul { list-style:none; margin:10px 0 0 0; padding:0 0 0 25px; background:#fff; -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px; height:32px; line-height:32px;}
.view.raboti .attachment ul li { float:left; margin:0 15px 0 0;}
.view.raboti .attachment ul li a { color:#0e5277; font-size:12px;}
.view.raboti .attachment ul li a:hover { color:#000; text-decoration:none;}
.view.raboti .attachment .view-content {padding: 0;}

.view.raboti .views-field-value { font-size: 12px; color:#838383; float:left; width:234px;}
.view.raboti .views-field-value .field-content {color:#a81913;}
.view.raboti .views-field-value .field-content a {color:#838383; float: right; margin: 0 0px 0 0;}
.view.raboti .views-field-value .field-content a:hover {color:#000;}
.view-raboti .views-field-value-1 { font-size: 12px; color:#838383; float:left; width:222px;}
.view-raboti .views-field-value-1 .field-content {color:#a81913;}
.view-raboti .views-field-value-1 .field-content a {color:#838383; float: right; margin: 0 15px 0 0;}
.view-raboti .views-field-value-1 .field-content a:hover {color:#000;}
.view.raboti .views-field-field-photo-fid { text-align:center; width:234px; height:154px; line-height:154px; clear:both;}
.view.raboti .views-field-field-photo-fid img { vertical-align: middle;}
.view.raboti .views-field-value-2 { clear:both;}
.view.raboti .views-field-value-2 .field-content div { display:none; font-size: 12px; color: #838383;}
.view.raboti .views-field-value-2 .field-content div.show0 {display:block;}

.view-arhiv { border-bottom:1px solid #999; padding-bottom:10px; margin-bottom:20px;}
.view-arhiv .view-content { clear:both;}
.view-arhiv table.views-view-grid {width:100%;}
.view-arhiv table.views-view-grid td {width:25%; text-align:center; vertical-align:middle; padding:0 0 20px 0;}
.view-arhiv .views-field-field-arhiv-photo-fid img { vertical-align: middle;}


.view-originali .view-content h3 { font-size:20px; font-weight:normal; color:#676767; border-bottom:1px solid #b4b4b4;}
.view-originali .views-view-grid { margin:0 0 50px 0;}
.view-originali .views-view-grid td { width:234px; padding: 0 15px 30px 0; vertical-align:top; text-align:center;}
.view-originali .views-exposed-form .views-exposed-widget .form-submit {margin-top: 1.4em;}
.view-originali .view-header { font-size:16px; margin-bottom:20px; margin-top:30px;}
.view-originali .view-content { clear:both;}
.view-originali .view-footer { margin-bottom:30px;}
.view-originali .hidediv {color: #fff; display:none; background: url(../images/avtorbg1.png); margin: 0; padding: 25px 20px 20px 20px; border-bottom: 3px solid #f00; position: absolute; z-index: 1; top: 90px; left: 0; width: 955px;}
.view-originali .hidediv2 { background:#fff; position:fixed; width:100%; height:100%; top:0; left:0; opacity:0.4; display:none;}

.section-originali2014 h1.title span { font-size:16px;}
.section-originali2013 h1.title span { font-size:16px;}
.section-originali2012 h1.title span { font-size:16px;}
.section-originali2013 h1.title span { font-size:16px;}
.page-originali2014 .backbut { display:none;}
.page-originali2013 .backbut { display:none;}
.page-originali2012 .backbut { display:none;}
.page-originali2014 h1.title span { display:none;}
.page-originali2013 h1.title span { display:none;}
.page-originali2012 h1.title span { display:none;}
hidediv

.view.raboti .view-content {padding: 0; clear:both;}
.view.raboti .view-content h3 { font-size:20px; font-weight:normal; color:#676767; border-bottom:1px solid #b4b4b4;}
.view.raboti .views-view-grid { margin:0 0 50px 0;}
.view.raboti .views-view-grid td, .view.ocenki .view.raboti .views-view-grid td { width:234px; padding: 0 15px 30px 0; vertical-align:top;}
.view.raboti .views-view-grid td.col-last, .view.ocenki .view.raboti .views-view-grid td .col-las {padding: 0 0 30px 0;}
.view.raboti .view-content .views-label-value { float:left; margin:0 5px 0 0;}
.view.raboti .view-content .views-label-value-1 { float:left; margin:0 5px 0 0;}

.view.raboti .views-field-nothing { position:relative; display:none;}
.view.raboti .views-field-nothing .field-content { position:absolute; top:0; left:0; display:inline-block; width:234px; font-size:12px; color:#fff; line-height:18px;}
.view.raboti .views-field-nothing .field-content .body { background:url(../images/avtorbg1.png); padding:5px; position:relative;}
.view.raboti .views-field-nothing .field-content .body a { color:#fff;}

.view.raboti .views-field-nothing .field-content .body img { float:left; margin:0 10px 0 0;}
.view.raboti .views-field-nothing .field-content .bottom { background:url(../images/avtorbot.png); height:24px;}
.view.raboti .views-field-nothing-1 { float:right; padding:3px 0 0 0;}
.view.raboti .views-field-nothing-1 img { vertical-align:top;}
.view.raboti .views-field-nothing-1 #avtorshow { background:#0c4b6e; height:12px; overflow:hidden; cursor:pointer;}
.view.raboti .views-field-nothing-2 {cursor:pointer; position:relative; z-index:999; display:none; float:right;}

.view.raboti .views-field-nothing.hover {display:block;}
.view.raboti .views-field-nothing-1.hover {display:none;}
.view.raboti .views-field-nothing-2.hover {display:block;}

.section-ocenki h1.title { display:none;}
.view.ocenki h3 { color:#585858; font-size:20px; font-weight:normal;}
.view.ocenki .ocenkititle { float:left; margin:0 -991px 0 665px;}
.view.ocenki .fotobody { float:left; margin:0 -640px 20px 0; width:640px;}
.view.ocenki .views-view-grid { float:left; margin:35px -991px 0 665px; width:380px;}
.view.ocenki .views-view-grid td {  border-top:1px solid #b4b4b4; padding:10px 0 10px 0;}
.view.ocenki .view.raboti .views-view-grid td {  border-top:none;}
.view.ocenki .views-view-grid .views-field-value-3 {clear:both;}
.view.ocenki .views-view-grid .views-field-value-3 .field-content div { display:none;}
.view.ocenki .views-view-grid .views-field-value-3 .field-content div.show0 { display:block;}
.view.ocenki .views-view-grid .views-field-value-2 .views-field-value { float:left; padding:15px 10px 0 10px; width:120px;}
.view.ocenki .views-view-grid .views-field-picture { float:left; width:87px; margin: 0 10px 0 0;}
.view.ocenki .views-view-grid .views-field-picture img { border:1px solid #5a5a5a;}
.view.ocenki .views-view-grid .views-field-value-2 .views-field-value-2 { float:left; width:140px; }
.view.ocenki .views-view-grid .views-field-value-2 .views-field-value-2 a {font-size:14px; line-height:20px; color:#535353; font-weight:bold;}
.view.ocenki .fotobody .imagefield-field_photo { display:inline-block; text-align:center;}
.view.ocenki .fotobody .bal { color:#686666;}
.view.ocenki .fotobody .bal span { color:#a81913;}
.view.ocenki .fotobody .avtor  { padding: 0 0 0 110px; font-size:12px; color:#535353; width:360px; line-height:18px;}
.view.ocenki .fotobody .avtor  a{font-size:14px; color:#535353; font-weight:bold;}
.view.ocenki .fotobody .avtor .title { color:#535353; font-size:20px; font-weight:normal;}
.view.ocenki .fotobody .avtor .imagecache-avtorphoto2 { float:left; margin:0 10px 0 0; border:1px solid #717171;}

.view.ocenki .attachment { clear:both; position:relative;}
.view.ocenki .attachment .view-header { color:#474747; font-size:18px; padding:20px 0 0 25px;  border-top:1px solid #b4b4b4;}
.view.ocenki .attachment .views-view-grid { float:none; margin:35px 0 0 0; width:100%;}






.view.juriocenki h3 { color:#535353; font-size:16px; line-height:24px; font-weight:normal;}
.view.juriocenki h3 .img { float:left;margin: 0 40px 10px 0;}
.view.juriocenki h3 .name {font-size:22px; font-weight:bold;}
.view.juriocenki .allvotes2 { margin:0; padding:10px 0 0 25px;  border-top:1px solid #b4b4b4; clear:both; font-size:26px;}
.view.juriocenki .views-view-grid {margin:0; width:100%;}
.view.juriocenki .views-view-grid td {  border-bottom:1px solid #b4b4b4; padding:10px 0 10px 25px;}
.view.juriocenki .views-view-grid .views-field-value { float:left; width:140px; padding: 80px 0 0;}
.view.juriocenki .views-view-grid .views-field-field-photo-fid .srball {color: #838383; font-size: 12px; width: 234px;}
.view.juriocenki .views-view-grid .views-field-field-photo-fid .srball a.allvotes {color: #838383; float:right;}
.view.juriocenki .views-view-grid .views-field-field-photo-fid .srball span {color: #A81913;}
.view.juriocenki .views-view-grid .views-field-field-photo-fid { float:left; margin:0 140px 0 0; width:234px;}
.view.juriocenki .views-view-grid .views-field-field-nom-value{ clear:both;}
.view.juriocenki .views-view-grid .views-field-title-1 { color:#535353; font-size:16px;}
.view.juriocenki .views-view-grid .views-field-title-1 .nom { margin:0 0 50px 0;}

.view.juriocenki .views-view-grid .views-field-title-1 a img { float:left;  margin:7px 30px 0 0; border:1px solid #777777;}
.view.juriocenki .views-view-grid .views-field-title-1 a { color:#535353; font-weight:bold; font-size:14px; line-height:20px;}
.view.juriocenki .views-view-grid .views-field-title-1 a span {font-weight:normal;}


#block-search-0 { clear:both;}
#block-search-0 h2.title { float:left; display:inline-block; font-size:12px; color:#fff; font-weight:normal; line-height:18px; margin:1.3em 20px 1.2em 0;}
#block-search-0 .form-item {
float: left;
line-height: 18px;
}
#block-search-0 .form-text {
background:#fff;
-moz-box-shadow:inset 1px 1px 2px rgba(0,0,0,0.5); /* Для Firefox */
-webkit-box-shadow:inset 1px 1px 2px rgba(0,0,0,0.5); /* Для Safari и Chrome */
box-shadow:inset 1px 1px 2px rgba(0,0,0,0.5); /* Параметры тени */
border:1px solid #000;
width: 200px;
height: 18px;
border: none;
padding: 0 3px 0 3px;
line-height: 18px;
}
#block-search-0 .form-submit{
background: url(../images/subbmit1.png) no-repeat top left;
width: 40px;
height: 18px;
border: none;
text-indent: -9999px;
float: left;
margin: 1.2em 0;
cursor: pointer;
}
#block-search-0 .form-submit:hover {
background: url(../images/subbmit2.png) no-repeat top left;
}



.view-oldbest .view-content { clear:both;}
.view-oldbest table { width:100%; margin:0;}
.view-oldbest .view-header { margin-bottom:20px;}
.view-oldbest .view-header:after { clear:both; content:' '; display:block;}
.view-oldbest table td { padding:20px 0 0 0; vertical-align:middle; text-align:center;}
.view-oldbest table td.col-last { width:150px;}


#block-views-news-block_1 h2.title { margin:0 0 20px 0; font-weight:normal; font-size:22px; color:#4c4c4c; border-bottom:1px solid #bec6c8;}
#block-views-news-block_1 .views-row { float:left; width:240px; padding:0 20px 0 0;}
#block-views-news-block_1 .views-field-field-newsimg-fid { height:90px;}
#block-views-news-block_1 .views-field-title { height:70px; overflow:hidden;}
#block-views-news-block_1 .views-field-title a { color:#26518b; font-size:14px; line-height:18px;}
#block-views-news-block_1 .views-field-created { color:#969d9f; font-size:14px; padding:25px 0 0 0;}
#block-views-news-block_1 .views-field-created a { color:#969d9f; display:inline-block; background:url(../images/newsarr.jpg) no-repeat top right; line-height:15px; padding:0 20px 0 0;}

#block-views-news-block_1 .jcarousel-clip-horizontal { height:auto;}
#block-views-news-block_1 .jcarousel-container { bottom:auto; top:80px;}
#block-views-news-block_1 .jcarousel-clip { padding:0;}
#block-views-news-block_1 .jcarousel-skin-default { height:230px;}

body.front .main_cont { background:url(../images/bg1.jpg) no-repeat top center;}
.main_cont { background:url(../images/bg3.jpg) no-repeat top center;}

#block-block-4 { float:right; font-size:10px;}
#block-block-4 .content a { background:url(../images/login.jpg) no-repeat top left; color:#fff; font-weight:bold; padding:0 0 0 5px; display:inline-block; width:152px; height:19px; line-height:17px; margin:0 5px 0 0; text-shadow:#000 1px 1px 1px; cursor:pointer; text-align:left;}

#block-block-5 { clear:both; font-size:10px; color:#fff; padding:5px 0 0 0;}

body.front .region-page-closure { background:#0e5277 url(../images/bg2.jpg) no-repeat top center; padding:70px 0 50px 0;} 
.region-page-closure { background:#0e5277; padding:15px 0 30px 0;} 

#block-menu-primary-links { float:left;}
#block-menu-primary-links ul.menu { list-style:none; margin:0; padding:0;}
#block-menu-primary-links ul li { float:left; margin:0 8px 0 0; list-style-type:none; list-style-image:none; line-height:19px;}
#block-menu-primary-links ul li.laast {margin:0 0 0 0;}
#block-menu-primary-links ul li a { color:#aab5b7; font-size:11px; text-decoration:none;}
#block-menu-primary-links ul li a:hover { color:#fff; text-decoration:underline;}


#block-block-3 h2.title { color:#0e5277; font-size:26px; line-height:30px; margin:30px 0 100px 0; text-align:left;}

#block-block-3 .row { float:left; width:274px; height:300px; padding:18px; background:#ececec; margin:0 0 30px 0; text-align:left;}
#block-block-3 .row.center { margin:0 30px 30px 30px;}
#block-block-3 .row.last img { float:left; margin:0 30px 0 0;}
#block-block-3 .row.last {width:956px; clear:both; height:181px;}
#block-block-3 .row.last a {font-size:16px; line-height:28px;}
#block-block-3 .row.last a span{font-size:16px; line-height:28px;}
#block-block-3 .row a {color:#686868; font-size:11px; line-height:12px; display:block;}
#block-block-3 .row a span {color:#0e5277; font-size:14px; font-weight:bold; display:block;}

body.section-zayavka #content {width:850px; margin:20px auto 50px auto; float:none;}
body.section-zayavka #content-area {background:#fff; border-right:4px solid #797979; border-bottom:4px solid #797979; padding:20px 65px 20px 75px;}
body.section-zayavka .view-zayavki {border-top:3px solid #ebebed; padding:30px 0 0 0; font-size:16px; line-height:27px;}
body.section-zayavka .view-zayavki .views-field-edit-node { text-align:right;}
body.section-zayavka .view-zayavki .views-field-edit-node a { font-size:12px; color:#fff; background: url(../images/avtorbg1.png); display:inline-block; padding:2px 10px 2px 10px; line-height:16px;}
body.section-zayavka .view-zayavki .views-field-field-avtorphoto-fid { float:left; margin:0 25px 0 0;}
body.section-zayavka .view-zayavki .views-field-field-avtorphoto-fid img {border:1px solid #5b5b5b;}
body.section-zayavka .view-zayavki .views-field-title, body.section-zayavka .view-zayavki .views-field-field-name-value, body.section-zayavka .view-zayavki .views-field-field-otch-value { font-size:22px; font-weight:bold;}

body.section-zayavka .view-zayavki .views-field-field-rabota-nid { clear:both;padding:20px 0 0 0; }
body.section-zayavka .view-zayavki .views-field-field-rabota-nid:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

body.section-zayavka .view-zayavki .views-field-field-rabota-nid .views-label-field-rabota-nid { font-size:16px; color:#454545; border-top:3px solid #ebebed; width:100%; display:inline-block; padding:20px 0 20px 0;}
body.section-zayavka .view-zayavki .views-field-field-rabota-nid .field-content {}
body.section-zayavka .view-zayavki .views-field-field-rabota-nid .field-content .field-item { float:left; font-size:12px; line-height:16px; color:#454545; font-style:italic; width:136px; padding:0 5px 0 0; height:135px;}
body.section-zayavka .view-zayavki .views-field-field-rabota-nid .field-content .field-item h2.title {font-size:12px; line-height:16px; color:#454545; font-style:italic; font-weight:normal; text-decoration:none; margin:0;}
body.section-zayavka .view-zayavki .views-field-field-rabota-nid .field-content .field-item h2.title a{font-size:12px; line-height:16px; color:#454545; font-style:italic; font-weight:normal; text-decoration:none;}

body.section-zayavka .view-zayavki .views-field-field-rabota-nid .field-content .field-item .field-field-photo .field-item { height:63px; background:#f0f0f0; width:97px; text-align:center; padding:0; line-height:63px;}
body.section-zayavka .view-zayavki .views-field-field-rabota-nid .field-content .field-item .field-field-photo .field-item img { vertical-align:middle;}

body.section-zayavka .view-zayavki .views-field-field-phones-value { float:left; margin: 0 15px 0 0;}
body.section-zayavka .view-zayavki .views-field-field-link-url { clear:both;}
body.section-zayavka .view-zayavki .views-field-field-link-url a { color:#000;}
body.section-zayavka .view-zayavki .views-field-field-email-email a { color:#000;}
body.section-zayavka .view-zayavki .views-field-field-link-url span { font-size:12px;}
body.section-zayavka .view-zayavki .views-field-field-old-value  { margin:30px 0 0 0;}
body.section-zayavka .view-zayavki .views-field-field-old-value span span { font-size:12px;}
body.section-zayavka .view-zayavki .views-field-value { font-size:12px; line-height:20px; color:#000; border-top:2px solid #747474; padding:15px 0 0 0; margin:100px 0 0 0;}
body.section-zayavka .view-zayavki .views-field-field-padezhinfo-value { margin:20px 0 0 0; font-size:12px; line-height:16px;border-top: 2px solid #747474;padding: 15px 0 0 0;}
body.section-zayavka .view-zayavki .views-field-field-padezhinfo-value label { font-weight:bold; font-size:12px; margin-bottom:10px; display:block;}

.page-sostav-uchastnikov-konkursnoy-komissii-iv-fotokonkursa-mvd-rossii-otkrytyy-vzglyad-2012-god h1.title { font-weight:normal; font-size:21px; line-height:31px; color:#5b5b5b; text-align:center;}
.page-sostav-uchastnikov-konkursnoy-komissii-iii-fotokonkursa-mvd-rossii-otkrytyy-vzglyad-2011-god h1.title { font-weight:normal; font-size:21px; line-height:31px; color:#5b5b5b; text-align:center;}
.page-sostav-uchastnikov-konkursnoy-komissii-ii-fotokonkursa-mvd-rossii-otkrytyy-vzglyad-2010-god h1.title { font-weight:normal; font-size:21px; line-height:31px; color:#5b5b5b; text-align:center;}
.page-sostav-uchastnikov-konkursnoy-komissii-i-fotokonkursa-mvd-rossii-otkrytyy-vzglyad-2009-god h1.title { font-weight:normal; font-size:21px; line-height:31px; color:#5b5b5b; text-align:center;}

#block-block-14 { text-align:right;}
#block-block-14 a { font-size:16px; color:#2e4c6c; margin-left:20px;}
.page-sostav-uchastnikov-konkursnoy-komissii-v-fotokonkursa-mvd-rossii-otkrytyy-vzglyad-2013-god a.jur2013 { font-weight:bold;}
.page-sostav-uchastnikov-konkursnoy-komissii-iv-fotokonkursa-mvd-rossii-otkrytyy-vzglyad-2012-god a.jur2012 { font-weight:bold;}
.page-sostav-uchastnikov-konkursnoy-komissii-iii-fotokonkursa-mvd-rossii-otkrytyy-vzglyad-2011-god a.jur2011 { font-weight:bold;}
.page-sostav-uchastnikov-konkursnoy-komissii-ii-fotokonkursa-mvd-rossii-otkrytyy-vzglyad-2010-god a.jur2010 { font-weight:bold;}
.page-sostav-uchastnikov-konkursnoy-komissii-i-fotokonkursa-mvd-rossii-otkrytyy-vzglyad-2009-god a.jur2009 { font-weight:bold;}



#page-wrapper,
.region-page-closure .inner
{
  /*
   * If you want to make the page a fixed width and centered in the viewport,
   * this is the standards-compliant way to do that. See also the ie6.css file
   * for the necessary IE5/IE6quirks hack to center a div.
   */
  margin-left: auto;
  margin-right: auto;
  width: 991px;
}

#page {
}

/*
 * Header
 */
#header {
}

#header .section {
}

#search-box {
}

.region-header {
  clear: both; /* Clear the logo */
}

/*
 * Main (container for everything else)
 */
#main-wrapper {
  position: relative;
}

#main {
}

/*
 * Content
 */
#content,
.no-sidebars #content {
  float: left; /* LTR */
  width: 991px;
  margin-left: 0; /* LTR */
  margin-right: -991px; /* LTR */ /* Negative value of #content's width + left margin. */
  padding: 0; /* DO NOT CHANGE. Add padding or margin to #content .section. */
}

.sidebar-first #content {
  width: 760px;
  margin-left: 200px; /* LTR */ /* The width of .region-sidebar-first. */
  margin-right: -991px; /* LTR */ /* Negative value of #content's width + left margin. */
}

.sidebar-second #content {
  width: 620px;
  margin-left: 0; /* LTR */
  margin-right: -640px; /* LTR */ /* Negative value of #content's width + left margin. */
}

.two-sidebars #content {
  width: 560px;
  margin-left: 200px; /* LTR */ /* The width of .region-sidebar-first */
  margin-right: -760px; /* LTR */ /* Negative value of #content's width + left margin. */
}

#content .section {
  margin: 0;
  padding: 0;
}

/*
 * Navigation
 */
#navigation {
  font-size:14px;
  position:relative;
  z-index:9999;
  width: 100%;
  margin-top:0px;
  margin-left: 0; /* LTR */
  padding: 0; /* DO NOT CHANGE. Add padding or margin to #navigation .section. */
  height: 56px; /* The navigation can have any arbritrary height. We picked one
                    that is the line-height plus 1em: 1.3 + 1 = 2.3
                    Set this to the same value as the margin-top below. */
}

.with-navigation #content,
.with-navigation .region-sidebar-first,
.with-navigation .region-sidebar-second {
 /* margin-top: 2.3em; /* Set this to the same value as the navigation height above. */
}

#navigation .section {
}

#navigation a { text-transform:uppercase; text-shadow:#fff 1px 1px 1px; color:#3f3f3f;}

#navigation ul /* Primary and secondary links */ {
  margin: 0;
  padding: 0;
  text-align: left; /* LTR */
  width:940px; float:left; margin:0 -940px 0 0;
}

#navigation li /* A simple method to get navigation links to appear in one line. */ {
  float: left; /* LTR */
}
#navigation li.last { padding:0;}

/*
 * First sidebar
 */
.region-sidebar-first {
  float: left; /* LTR */
  width: 200px;
  margin-left: 0; /* LTR */
  margin-right: -200px; /* LTR */ /* Negative value of .region-sidebar-first's width + left margin. */
  padding: 0; /* DO NOT CHANGE. Add padding or margin to .region-sidebar-first .section. */
}

.region-sidebar-first .section {
  margin: 0 20px 0 0; /* LTR */
  padding: 0;
}

/*
 * Second sidebar
 */
.region-sidebar-second {
  float: left; /* LTR */
  width: 335px;
  margin-left: 636px; /* LTR */ /* Width of content + sidebar-first. */
  margin-right: -991px; /* LTR */ /* Negative value of .region-sidebar-second's width + left margin. */
  padding: 0; /* DO NOT CHANGE. Add padding or margin to .region-sidebar-second .section. */
  border-left:1px solid #acb6b9;
  padding:0 0 0 20px;
}

.region-sidebar-second .section {
  margin: 0; /* LTR */
  padding: 0;
}

/*
 * Footer
 */
#footer {
}

#footer .section {
}

/*
 * Closure
 */
.region-page-closure /* See also the #page-wrapper declaration above that this div shares. */ {
}

/*
 * Prevent overflowing content
 */
#header,
#content,
#navigation,
.region-sidebar-first,
.region-sidebar-second,
#footer,
.region-page-closure {
  overflow: visible;
  word-wrap: break-word; /* A very nice CSS3 property */
}

#navigation {
}

/*
 * If a div.clearfix doesn't have any content after it and its bottom edge
 * touches the bottom of the viewport, Firefox and Safari will mistakenly
 * place several pixels worth of space between the bottom of the div and the
 * bottom of the viewport. Uncomment this CSS property to fix this.
 * Note: with some over-large content, this property might cause scrollbars
 * to appear on the #page-wrapper div.
 */
/*
#page-wrapper {
  overflow-y: hidden;
}
*/

/* page-backgrounds.css */

/**
 * @file
 * Page Background Styling
 *
 * The default layout method of Zen doesn't give themers equal-height columns.
 * However, equal-height columns are difficult to achieve and totally
 * unnecessary. Instead, use the Faux Columns method described in the following
 * ALA article:
 *   http://www.alistapart.com/articles/fauxcolumns/
 */


body {
}

#page-wrapper {
}

#page {
}

#header {
}

#header .section {
}

#main-wrapper {
}

#main {
}

#footer {
}

#footer .section {
}

/* tabs.css */

/**
 * @file
 * Tabs Styling
 *
 * Adds styles for the primary and secondary tabs.
 *
 * Compare this with default CSS found in the system module's stylesheet (a copy
 * of which is in drupal6-reference.css, line 510.)
 */


div.tabs {
  margin: 0 0 5px 0;
}

ul.primary {
  margin: 0;
  padding: 0 0 0 10px; /* LTR */
  border-width: 0;
  list-style: none;
  white-space: nowrap;
  line-height: normal;
  background: url(../images/tab-bar.png) repeat-x left bottom;
}

ul.primary li {
  float: left; /* LTR */
  margin: 0;
  padding: 0;
}

ul.primary li a {
  display: block;
  height: 24px;
  margin: 0;
  padding: 0 0 0 5px; /* width of tab-left.png */
  border-width: 0;
  font-weight: bold;
  text-decoration: none;
  color: #777;
  background-color: transparent;
  background: url(../images/tab-left.png) no-repeat left -38px;
}

ul.primary li a .tab {
  display: block;
  height: 20px; /* 24px (parent) - 4px (padding) */
  margin: 0;
  padding: 4px 13px 0 6px;
  border-width: 0;
  line-height: 20px;
  background: url(../images/tab-right.png) no-repeat right -38px;
}

ul.primary li a:hover,
ul.primary li a:focus {
  border-width: 0;
  background-color: transparent;
  background: url(../images/tab-left.png) no-repeat left -76px;
}

ul.primary li a:hover .tab,
ul.primary li a:focus .tab {
  background: url(../images/tab-right.png) no-repeat right -76px;
}

ul.primary li.active a,
ul.primary li.active a:hover,
ul.primary li.active a:focus {
  border-width: 0;
  color: #000;
  background-color: transparent;
  background: url(../images/tab-left.png) no-repeat left 0;
}

ul.primary li.active a .tab,
ul.primary li.active a:hover .tab,
ul.primary li.active a:focus .tab {
  background: url(../images/tab-right.png) no-repeat right 0;
}

ul.secondary {
  margin: 0;
  padding: 0 0 0 5px; /* LTR */
  border-bottom: 1px solid #c0c0c0;
  list-style: none;
  white-space: nowrap;
  background: url(../images/tab-secondary-bg.png) repeat-x left bottom;
}

ul.secondary li {
  float: left; /* LTR */
  margin: 0 5px 0 0;
  padding: 5px 0;
  border-right: none; /* LTR */
}

ul.secondary a {
  display: block;
  height: 24px;
  margin: 0;
  padding: 0;
  border: 1px solid #c0c0c0;
  text-decoration: none;
  color: #777;
  background: url(../images/tab-secondary.png) repeat-x left -56px;
}

ul.secondary a .tab {
  display: block;
  height: 18px; /* 24px (parent) - 6px (padding) */
  margin: 0;
  padding: 3px 8px;
  line-height: 18px;
}

ul.secondary a:hover,
ul.secondary a:focus {
  background: url(../images/tab-secondary.png) repeat-x left bottom;
}

ul.secondary a.active,
ul.secondary a.active:hover,
ul.secondary a.active:focus {
  border: 1px solid #c0c0c0;
  color: #000;
  background: url(../images/tab-secondary.png) repeat-x left top;
}

/* messages.css */

/**
 * @file
 * Message Styling
 *
 * Sensible styling for Drupal's error/warning/status messages.
 */


div.messages,
div.status,
div.warning,
div.error /* Important messages (status, warning, and error) for the user */ {
  min-height: 21px;
  margin: 0 1em 5px 1em;
  border: 2px solid #ff7;
  padding: 5px 5px 5px 35px; /* LTR */
  color: #000;
  background-color: #ffc;
  background-image: url(../images/messages-status.png);
  background-repeat: no-repeat;
  background-position: 5px 5px; /* LTR */
}

div.status /* Normal priority messages */ {
}

div.warning /* Medium priority messages */ {
  border-color: #fc0;
  background-image: url(../images/messages-warning.png);
}

div.warning,
tr.warning {
  color: #000; /* Drupal core uses #220 */
  background-color: #ffc;
}

div.error /* High priority messages. See also the .error declaration in pages.css. */ {
  /* border: 1px solid #d77; */ /* Drupal core uses: 1px solid #d77 */
  border-color: #c00;
  background-image: url(../images/messages-error.png);
}

div.error,
tr.error {
  color: #900; /* Drupal core uses #200 */
  background-color: #fee;
}

div.messages ul {
  margin-top: 0;
  margin-bottom: 0;
}

/* pages.css */

/**
 * @file
 * Page Styling
 *
 * Style the markup found in page.tpl.php. Also includes some styling of
 * miscellaneous Drupal elements that appear in the $content variable, such as
 * ul.links, .pager, .more-link, etc.
 */


/*
 * Body
 */
body {
  margin: 0;
  padding: 0;
}

#page-wrapper {
}

#page {
}

/*
 * The skip navigation link will be completely hidden until a user tabs to the
 * link. See http://www.webaim.org/techniques/skipnav/
 */
#skip-link a,
#skip-link a:visited {
  position: absolute;
  display: block;
  left: 0;
  top: -500px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  text-align: center;
  background-color: #666;
  color: #fff;
}

#skip-link a:hover,
#skip-link a:active,
#skip-link a:focus {
  position: static;
  width: 100%;
  height: auto;
  padding: 2px 0 3px 0;
}

/*
 * Header
 */
#header {
}

#header .section {
}

#logo img {  width:462px; height:254px;}
body.front #logo { background:url(../images/logo1.jpg) no-repeat top left;}
#logo /* Wrapping link for logo */ {
  margin: 0 0 0 265px;
  padding: 0;
  width:462px;
  height:254px;
  display:inline-block;
  background:url(../images/logo2.jpg) no-repeat top left;
}

#logo img {
  vertical-align: bottom;
}

#name-and-slogan /* Wrapper for website name and slogan */ {
}

h1#site-name,
div#site-name /* The name of the website */ {
  margin: 0;
  font-size: 2em;
  line-height: 1.3em;
}

#site-name a:link,
#site-name a:visited {
  color: #000;
  text-decoration: none;
}

#site-name a:hover,
#site-name a:focus {
  text-decoration: underline;
}

#site-slogan /* The slogan (or tagline) of a website */ {
}

.region-header /* Wrapper for any blocks placed in the header region */ {
}

/*
 * Main (container for everything else)
 */
#main-wrapper {
}

#main {
}

/*
 * Content
 */
#content {
}

#content .section {
}

#mission /* The mission statement of the site (displayed on homepage) */ {
}

.region-content-top /* Wrapper for any blocks placed in the "content top" region */ {
}

.breadcrumb /* The path to the current page in the form of a list of links */ {
  padding-bottom: 0; /* Undo system.css */
}

h1.title, /* The title of the page */
h2.title, /* Block title or the title of a piece of content when it is given in a list of content */
h3.title /* Comment title */ {
}

tr.even /* Some tables have rows marked even or odd. */ {
  /* background-color: #eee; */ /* Drupal core uses a #eee background */
}

tr.odd {
  /* background-color: #eee; */ /* Drupal core uses a #eee background */
}

div.messages /* Important messages (status, warning, and error) for the user. See also the declarations in messages.css. */ {
}

div.status /* Normal priority messages */ {
}

div.warning,
tr.warning /* Medium priority messages */ {
  /* border: 1px solid #f0c020; */ /* Drupal core uses: 1px solid #f0c020 */
}

div.error,
tr.error /* High priority messages. See also the .error declaration below. */ {
}

.error /* Errors that are separate from div.messages status messages. */ {
  /* color: #e55; */ /* Drupal core uses a #e55 background */
}

.warning /* Warnings that are separate from div.messages status messages. */ {
  /* color: #e09010; */ /* Drupal core uses a #e09010 background */
}

div.tabs /* See also the tabs.css file. */ {
}

.help /* Help text on a page */ {
  margin: 1em 0;
}

.more-help-link /* Link to more help */ {
  font-size: 0.85em;
  text-align: right;
}

#content-area /* Wrapper for the actual page content */ {
	clear:both;
}

ul.links /* List of links */ {
  margin: 1em 0;
  padding: 0;
}

ul.links.inline {
  margin: 0;
  display: inline;
}

ul.links li {
  display: inline;
  list-style-type: none;
  padding: 0 0.5em;
}

.pager /* A list of page numbers when more than 1 page of content is available */ {
  clear: both;
  margin: 1em 0;
  text-align: center;
}

.pager a,
.pager strong.pager-current /* Each page number in the pager list */ {
  padding: 0.5em;
}

.feed-icons /* The links to the RSS or Atom feeds for the current list of content */ {
  margin: 1em 0;
}

.more-link /* Aggregator, blog, and forum more link */ {
  text-align: right; /* LTR */
}

.region-content-bottom /* Wrapper for any blocks placed in the "content bottom" region */ {
}

/*
 * First sidebar (on left in LTR languages, on right in RTL)
 *
 * Remember to NOT add padding or margin to your .region-sidebar-first
 * (see the layout.css file.)
 */
.region-sidebar-first {
}

.region-sidebar-first .section {
}

/*
 * Second sidebar (on right in LTR languages, on left in RTL)
 *
 * Remember to NOT add padding or margin to your .region-sidebar-second
 * (see the layout.css file.)
 */
.region-sidebar-second {
}

.region-sidebar-second .section {
}

/*
 * Footer
 */
#footer {
}

#footer .section {
}

#footer-message /* Wrapper for the footer message from Drupal's "Site information"
                   and for any blocks placed in the footer region */ {
}

.region-footer {
}

/*
 * Closure
 */
.region-page-closure /* Wrapper for any blocks placed in the closure region */ {
}

/*
 * Drupal boxes
 *
 * Wrapper for Comment form, Comment viewing options, Menu admin, and
 * Search results.
 */
.box /* Wrapper for box */ {
}

.box h2 /* Box title */ {
}

.box .content /* Box's content wrapper */ {
}

/*
 * Markup free clearing (See: http://www.positioniseverything.net/easyclearing.html )
 */
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/**
 * Hide elements from all users.
 *
 * Used for elements which should not be immediately displayed to any user. An
 * example would be a collapsible fieldset that will be expanded with a click
 * from a user. The effect of this class can be toggled with the jQuery show()
 * and hide() functions.
 */
.element-hidden {
  display: none;
}

/**
 * Hide elements visually, but keep them available for screen-readers.
 *
 * Used for information required for screen-reader users to understand and use
 * the site where visual display is undesirable. Information provided in this
 * manner should be kept concise, to avoid unnecessary burden on the user. Must
 * not be used for focusable elements (such as links and form elements) as this
 * causes issues for keyboard only or voice recognition users. "!important" is
 * used to prevent unintentional overrides.
 */
.element-invisible {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
}

/* block-editing.css */

/**
 * @file
 * Zen's rollover edit links for blocks.
 */


div.block.with-block-editing {
  position: relative;
}

div.block.with-block-editing div.edit {
  display: none;
  position: absolute;
  right: 0; /* LTR */
  top: 0;
  z-index: 40;
  border: 1px solid #eee;
  padding: 0 2px;
  font-size: 0.75em;
  background-color: #fff;
}

div.block.with-block-editing:hover div.edit {
  display: block;
}

/* blocks.css */

/**
 * @file
 * Block Styling
 */


.block /* Block wrapper */ {
  margin-bottom: 1em;
}

.block.first /* The first block in the region */ {
}

.block.last /* The last block in the region */ {
}

.block.region-odd /* Zebra striping for each block in the region */ {
}

.block.region-even /* Zebra striping for each block in the region */ {
}

.block.odd /* Zebra striping independent of each region */ {
}

.block.even /* Zebra striping independent of each region */ {
}

.region-count-1 /* Incremental count for each block in the region */ {
}

.count-1 /* Incremental count independent of each region */ {
}

.block h2.title /* Block title */ {
}

.block .content /* Block's content wrapper */ {
}

#block-aggregator-category-1 /* Block for the latest news items in the first category */ {
}

#block-aggregator-feed-1 /* Block for the latest news items in the first feed */ {
}

#block-block-1 /* First administrator-defined block */ {
}

#block-blog-0 /* "Recent blog posts" block */ {
}

#block-book-0 /* "Book navigation" block for the current book's table of contents */ {
}

#block-comment-0 /* "Recent comments" block */ {
}

#block-forum-0 /* "Active forum topics" block */ {
}

#block-forum-1 /* "New forum topics" block */ {
}

#block-menu-primary-links /* "Primary links" block */ {
}

#block-menu-secondary-links /* "Secondary links" block */ {
}

#block-node-0 /* "Syndicate" block for primary RSS feed */ {
}

#block-poll-0 /* "Most recent poll" block */ {
}

#block-profile-0 /* "Author information" block for the profile of the page's author */ {
}

#block-search-0 /* "Search form" block */ {
}

#block-statistics-0 /* "Popular content" block */ {
}

#block-user-0 /* "User login form" block */ {
}

#block-user-1 /* "Navigation" block for Drupal navigation menu */ {
}

#block-user-2 /* "Who's new" block for a list of the newest users */ {
}

#block-user-3 /* "Who's online" block for a list of the online users */ {
}

/* navigation.css */

/**
 * @file
 * Navigation Styling
 *
 * Default menu styling (ul.menu) is defined in system-menus.css.
 */


/*
 * The active item in a Drupal menu
 */
li a.active {
  color: #000;
}

/*
 * Navigation bar
 */
#navigation {
}

.region-navigation {
}

/*
 * Primary and Secondary menu links
 */
#main-menu {
}

#secondary-menu {
}

/*
 * Menu blocks
 */
.block-menu {
}

/*
 * "Menu block" blocks. See http://drupal.org/project/menu_block
 */
.block-menu_block {
}

/* views-styles.css */

/**
 * @file
 * Views Styling
 */



/* nodes.css */

/**
 * @file
 * Node Styling
 *
 * Style anything that isn't in the $content variable.
 */


.node /* Node wrapper */ {
}

.node-sticky /* A sticky node (displayed before others in a list) */ {
}

.node-unpublished /* Unpublished nodes */ {
  /* background-color: #fff4f4; */ /* Drupal core uses a #fff4f4 background */
}

.node-unpublished div.unpublished,
.comment-unpublished div.unpublished /* The word "Unpublished" displayed underneath the content. */ {
  height: 0;
  overflow: visible;
  color: #d8d8d8;
  font-size: 75px;
  line-height: 1;
  font-family: Impact, "Arial Narrow", Helvetica, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  word-wrap: break-word; /* A very nice CSS3 property */
}

.node-by-viewer /* A node created by the current user */ {
}

.node-teaser /* A node displayed as teaser */ {
}

/* All nodes are given a node-type-FOO class that describes the type of
 * content that it is. If you create a new content type called
 * "my-custom-type", it will receive a "node-type-my-custom-type" class.
 */
.node-type-page /* Page content node */ {
}

.node-type-story /* Story content node */ {
}

.node h2.title /* Node title */ {
}

.marker /* "New" or "Updated" marker for content that is new or updated for the current user */ {
  color: #c00;
}

.node .picture /* The picture of the node author */ {
}

.node.node-unpublished .picture,
.comment.comment-unpublished .picture {
  position: relative; /* Otherwise floated pictures will appear below the "Unpublished" text. */
}

.node .meta /* Wrapper for submitted and terms data */ {
}

.node .submitted /* The "posted by" information */ {
}

.node .terms /* Node terms (taxonomy) */ {
}

.node .content /* Node's content wrapper */ {
}

.node ul.links /* Node links. See also the ul.links declaration in the pages.css. */ {
}

.preview .node /* Preview of the content before submitting new or updated content */ {
  /* background-color: #ffffea; */ /* Drupal core uses a #ffffea background */
}

/* comments.css */

/**
 * @file
 * Comment Styling
 */


#comments /* Wrapper for the list of comments and its title */ {
  margin: 1em 0;
}

#comments h2.title /* Heading for the list of comments */ {
}

.comment /* Wrapper for a single comment */ {
}

.comment-preview /* Preview of the comment before submitting new or updated comment */ {
}

.comment.new /* A new comment since the user last viewed the page. */ {
}

.comment.first /* The first comment in the list of comments */ {
}

.comment.last /* The last comment in the list of comments */ {
}

.comment.odd /* An odd-numbered comment in the list of comments */ {
}

.comment.even /* An even-numbered comment in the list of comments */ {
}

.comment-unpublished /* Unpublished comments */ {
  /* background-color: #fff4f4; */ /* Drupal core uses a #fff4f4 background */
}

.comment-unpublished div.unpublished /* The word "Unpublished" displayed underneath the content. See also the div.unpublished declaration in the nodes.css. */ {
}

.comment-by-anonymous /* A comment created by an anonymous user */ {
}

.comment-by-node-author /* A comment created by the node's author */ {
}

.comment-by-viewer /* A comment created by the current user */ {
}

.comment h3.title /* Comment title */ {
}

.new /* "New" marker for comments that are new for the current user */ {
  color: #c00;
}

.comment .picture /* The picture of the comment author */ {
}

.comment .submitted /* The "posted by" information */ {
}

.comment .content /* Comment's content wrapper */ {
}

.comment .user-signature /* The user's signature */ {
}

.comment ul.links /* Comment links. See also the ul.links declaration in the pages.css. */ {
}

.indented /* Nested comments are indented */ {
  /* margin-left: 25px; */ /* Drupal core uses a 25px left margin */
}

.preview .comment /* Preview of the comment before submitting new or updated comment */ {
  /* background-color: #ffffea; */ /* Drupal core uses a #ffffea background */
}

/* forms.css */

/**
 * @file
 * Form Styling
 */


.form-item,
.form-checkboxes,
.form-radios /* Wrapper for a form element (or group of form elements) and its label */ {
  margin: 1em 0;
}

.form-item input.error,
.form-item textarea.error,
.form-item select.error /* Highlight the form elements that caused a form submission error */ {
  border: 2px solid #c00;
}

.form-item label /* The label for a form element */ {
  display: block;
  font-weight: bold;
}

.form-item label.option /* The label for a radio button or checkbox */ {
  display: inline;
  font-weight: normal;
}

.form-required /* The part of the label that indicates a required field */ {
  color: #c00;
}

.form-item .description /* The descriptive help text (separate from the label) */ {
  font-size: 0.85em;
}

.form-checkboxes .form-item,
.form-radios .form-item /* Pack groups of checkboxes and radio buttons closer together */ {
  margin: 0.4em 0;
}

.form-submit /* The submit button */ {
}

.container-inline div,
.container-inline label /* Inline labels and form divs */ {
  display: inline;
}

.tips /* Tips for Drupal's input formats */ {
}


/*
 * Search (search-theme-form.tpl.php)
 */
#search-box /* Wrapper for the search form */ {
}

#edit-search-theme-form-1-wrapper label /* Label that says "Search this site:" */ {
  display: none;
}


/*
 * Search (search-block-form.tpl.php)
 */
#search-block-form /* Wrapper for the search form */ {
}

#edit-search-block-form-1-wrapper label /* Label that says "Search this site:" */ {
  display: none;
}


/*
 * Drupal's default login form block
 */
#user-login-form {
  text-align: left; /* LTR */
}


/*
 * OpenID
 *
 * The default styling for the OpenID login link seems to assume Garland's
 * styling of list items.
 */

#user-login-form ul /* OpenID creates a new ul above the login form's links. */ {
  margin-bottom: 0; /* Position OpenID's ul next to the rest of the links. */
}

#user-login-form li.openid-link /* The "Log in using OpenID" link. */ {
  margin-top: 1em;
  margin-left: -20px; /* LTR */ /* Un-do some of the padding on the ul list. */
}

#user-login-form li.user-link /* The "Cancel OpenID login" link. */ {
  margin-top: 1em;
}

#user-login ul {
  margin: 1em 0;
}

#user-login li.openid-link,
#user-login li.user-link /* The OpenID links on the /user form. */ {
  margin-left: -2em; /* LTR */ /* Un-do all of the padding on the ul list. */
}


/*
 * Drupal admin tables
 *
 * We overrode these styles in html-elements.css, but restore them for the admin
 * section of the site.
 */

form tbody {
  border-top: 1px solid #ccc;
}

form th,
form thead th {
  text-align: left; /* LTR */
  padding-right: 1em; /* LTR */
  border-bottom: 3px solid #ccc;
}

form tbody th {
  border-bottom: 1px solid #ccc;
}

/* fields.css */

/**
 * @file
 * Field Styling
 */


/*
 * Field types
 */

.field /* Wrapper for any CCK field. */ {
}

.field-type-datetime /* Always use "datetime" when creating new CCK date fields. "date" and "datestamp" are legacy types. */ {
}

.field-type-filefield /* Field from filefield module */ {
}

.field-type-nodereference {
}

.field-type-number-decimal {
}

.field-type-number-float {
}

.field-type-number-integer {
}

.field-type-text {
}

.field-type-userreference {
}


/*
 * Named fields
 */

.field-field-FIELDNAME /* Underscores in field name are replaced with dashes. */ {
}


/*
Skin Name: Nivo Slider Default Theme
Skin URI: http://nivo.dev7studios.com
Skin Type: flexible
Description: The default skin for the Nivo Slider.
Version: 1.0
Author: Gilbert Pellegrom
Author URI: http://dev7studios.com
*/



#block-block-1 { background:#435561; padding:22px 0 22px 0;}
.sliderbody { background:#435561; padding:40px 0 22px 0; position:relative; clear:both;}
.oldbesttitle { font-size:22px; color:#435561; padding:40px 0 20px 0px; float:left; line-height:22px;}
.oldbestdati { float:right; padding:40px 0 20px 0px; }
.oldbestdati a {color: #0C4B6E; font-size: 16px; line-height:22px; margin: 0 0 0 20px; text-decoration: underline;}

.theme-default .nivoSlider {
	position:relative;
	background:#fff url(../images/loading.gif) no-repeat 50% 50%;
    margin-bottom:50px;
    -webkit-box-shadow: 0px 1px 5px 0px #4a4a4a;
    -moz-box-shadow: 0px 1px 5px 0px #4a4a4a;
    box-shadow: 0px 1px 5px 0px #4a4a4a;
}
.theme-default .nivoSlider img {
	position:absolute;
	top:0px;
	left:0px;
	display:none;
}
.theme-default .nivoSlider a {
	border:0;
	display:block;
}


.theme-default .nivo-controlNav img {
	display:inline; /* Unhide the thumbnails */
	position:relative;
	margin-right:10px;
}

.theme-default .nivo-controlNav {
	position:absolute;
	left:0;
	bottom:-40px;
	list-style:none;
	margin:0;
	padding:0;
	height:90px;
	/*overflow:hidden;*/
}
.sliderbody .theme-default .nivo-controlNav {
	display:none;
}
.theme-default .nivo-controlNav li { display:inline-block;}

.theme-default .nivo-controlNav a {
	display:block;
/*	background:url(bullets.png) no-repeat;
	text-indent:-9999px;*/
	border:0;
	margin-right:0px;
	float:left;
}
.theme-default .nivo-controlNav a.active {
	background-position:0 0px;
}

.theme-default .nivo-directionNav a {
	display:block;
	width:30px;
	height:30px;
	background:url(../images/arrows.png) no-repeat;
	text-indent:-9999px;
	border:0;
}
.theme-default a.nivo-nextNav {
	background-position:-30px 0;
	right:165px;
}
.theme-default a.nivo-prevNav {
	left:15px;
}

.theme-default .nivo-caption {
    font-family: Helvetica, Arial, sans-serif;
}
.theme-default .nivo-caption a {
    color:#fff;
    border-bottom:1px dotted #fff;
}
.theme-default .nivo-caption a:hover {
    color:#fff;
}



/*
 * jQuery Nivo Slider v2.7.1
 * http://nivo.dev7studios.com
 *
 * Copyright 2011, Gilbert Pellegrom
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 * 
 * March 2010
 */
 
 
/* The Nivo Slider styles */
.nivoSlider {
	position:relative;
}
.nivoSlider img {
	position:absolute;
	top:0px;
	left:0px;
}
/* If an image is wrapped in a link */
.nivoSlider a.nivo-imageLink {
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	border:0;
	padding:0;
	margin:0;
	z-index:6;
	display:none;
}
/* The slices and boxes in the Slider */
.nivo-slice {
	display:block;
	position:absolute;
	z-index:5;
	height:100%;
}
.nivo-box {
	display:block;
	position:absolute;
	z-index:5;
}
/* Caption styles */
.nivo-caption {
	position:absolute;
	left:0px;
	top:-30px;
	color:#fff;
	opacity:1; /* Overridden by captionOpacity setting */
	width:100%;
	z-index:8;
}
.nivo-caption p {
	padding:5px;
	margin:0;
	font-size:14px;
	font-weight:bold;
}
.nivo-caption a {
	display:inline !important;
}
.nivo-html-caption {
    display:none;
}
/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav a {
	position:absolute;
	top:45%;
	z-index:9;
	cursor:pointer;
}
.nivo-prevNav {
	left:0px;
}
.nivo-nextNav {
	right:0px;
}
/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav a {
	position:relative;
	z-index:9;
	cursor:pointer;
}
.nivo-controlNav a.active {
	font-weight:bold;
}


.theme-default #slider {
    margin:0 auto 0 auto;
    width:780px; /* Make sure your images are the same size */
    height:516px; /* Make sure your images are the same size */
	padding:0 150px 0 0;
}



.sliderbody .jcarousel-container {
	right:25px;
	top:40px;
}



.jcarousel-container {
	position:absolute;
	right:0px;
	top:0px;
	list-style:none;
	margin:0;
	padding:0;
	height:516px;
	z-index:9998;
}

.jcarousel-direction-rtl {
	direction: rtl;
}

.jcarousel-container-horizontal {
	width:837px;
    padding: 2px 70px;
}

.jcarousel-container-vertical {
    width: 139px;
    height: 472px;
	padding:22px 0px 22px 0px;
}

.jcarousel-clip {
    overflow: hidden;
}

.jcarousel-clip-horizontal {
    height: 90px;
}

.jcarousel-clip-vertical {
    width:  139px;
    height: 472px;
}

.jcarousel-item {
    width: 139px;
    height: 94px;
	position:relative;
}

.jcarousel-item .caption {
	position:absolute;
	bottom:0;
	left:6px;
	width:117px;
	background:url(../images/trans_bg.png);
	font-size:10px;
	font-weight:bold;
	line-height:16px;
	color:#fff;
	padding:5px;
}

.jcarousel-item-horizontal {
	margin-left: 0;
    margin-right: 5px;
}

.jcarousel-direction-rtl .jcarousel-item-horizontal {
	margin-left: 10px;
    margin-right: 0;
}

.jcarousel-item-vertical {
    margin-bottom: 0px;
}
.jcarousel-item-vertical .nivo-control { position:relative; display:inline-block; width:139px; height:94px;}
.jcarousel-item-vertical .nivo-control img { width:127px; border:3px solid #1c2328; margin:3px 0 0 3px;}
.jcarousel-item-vertical .nivo-control:hover img { width:133px; position:absolute; margin:0; }
.jcarousel-item-vertical .nivo-control.active img { width:133px; margin:0; border:3px solid #333;}
.jcarousel-item-vertical .nivo-control:hover .caption {padding:5px 8px 5px 8px; left:3px;}
.jcarousel-item-vertical .nivo-control.active .caption {padding:5px 8px 5px 8px; left:3px;}

.jcarousel-item-placeholder {
    background: #transparent;
    color: #000;
}

/**
 *  Horizontal Buttons
 */
.jcarousel-next-horizontal {
    position: absolute;
    top: 20px;
    right: 0px;
    width: 59px;
    height: 90px;
    cursor: pointer;
    background: transparent url(../images/next-horizontal.png) no-repeat 0 0;
}

.jcarousel-direction-rtl .jcarousel-next-horizontal {
    left: 5px;
    right: auto;
    background-image: url(../images/prev-horizontal.png);
}

.jcarousel-next-horizontal:hover,
.jcarousel-next-horizontal:focus {
}

.jcarousel-next-horizontal:active {
}

.jcarousel-next-disabled-horizontal,
.jcarousel-next-disabled-horizontal:hover,
.jcarousel-next-disabled-horizontal:focus,
.jcarousel-next-disabled-horizontal:active {
    cursor: default;
}

.jcarousel-prev-horizontal {
    position: absolute;
    top: 20px;
    left: 0px;
    width: 59px;
    height: 90px;
    cursor: pointer;
    background: transparent url(../images/prev-horizontal.png) no-repeat 0 0;
}


.jcarousel-direction-rtl .jcarousel-prev-horizontal {
    left: auto;
    right: 5px;
    background-image: url(../images/next-horizontal.png);
}

.jcarousel-prev-horizontal:hover, 
.jcarousel-prev-horizontal:focus {
}

.jcarousel-prev-horizontal:active {
}

.jcarousel-prev-disabled-horizontal,
.jcarousel-prev-disabled-horizontal:hover,
.jcarousel-prev-disabled-horizontal:focus,
.jcarousel-prev-disabled-horizontal:active {
}

/**
 *  Vertical Buttons
 */
.jcarousel-next-vertical {
    position: absolute;
    bottom: 0px;
    left: 3px;
    width: 134px;
    height: 18px;
    cursor: pointer;
    background: transparent url(../images/next-vertical.jpg) no-repeat 0 0;
}

.jcarousel-next-vertical:hover,
.jcarousel-next-vertical:focus {
}

.jcarousel-next-vertical:active {
}

.jcarousel-next-disabled-vertical,
.jcarousel-next-disabled-vertical:hover,
.jcarousel-next-disabled-vertical:focus,
.jcarousel-next-disabled-vertical:active {
    cursor: default;
}

.jcarousel-prev-vertical {
    position: absolute;
    top: 0px;
    left: 3px;
    width: 134px;
    height: 18px;
    cursor: pointer;
    background: transparent url(../images/prev-vertical.jpg) no-repeat 0 0;
}

.jcarousel-prev-vertical:hover,
.jcarousel-prev-vertical:focus {
}

.jcarousel-prev-vertical:active {
}

.jcarousel-prev-disabled-vertical,
.jcarousel-prev-disabled-vertical:hover,
.jcarousel-prev-disabled-vertical:focus,
.jcarousel-prev-disabled-vertical:active {
    cursor: default;
}
