/*
 * @file
 * global.styles
 *
 * Styles you add here will load for all device sizes, they are "global", as
 * opposed to "responsive" styles, which only load for a given breakpoint (media
 * query) that you set in theme settings. See the README for more details.
 *
 *
 * How to use this file:
 * --------------------
 *
 * There are many empty selectors and some basic styles to act as a guide.
 * Nothing is set in stone and you can change anything - even delete all of it
 * and start with your own clean slate.
 *
 * See global.base also which includes normalize.css and some additional
 * helper classes and base styles.
 */

/* =============================================================================
 *   Base
 * ========================================================================== */

/*
 * To preserve theme settings never apply font properties to the HTML element.
 * This is critically important if you are using the Responsive JavaScript
 * feature as this relies on being able to set a pseudo font family on the HTML
 * element. If you need to set default font properties of any kind use the BODY
 * element as these can be overridden using font theme settings.
 */
 @import url(http://fonts.googleapis.com/css?family=Roboto:400,100,300,700&subset=latin,cyrillic-ext,cyrillic);

html {
  background: #fff;
}


body {
  font-family: "Trebuchet MS", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 87.5%;
}


/* =============================================================================
 *   HTML Elements
 * ========================================================================== */

h1 {}

h2 {}

h3 {}

h4 {}

h5 {}

h6 {}

p {}

b,
strong {}

i,
em {}

dfn {}

sup {}

sub {}

del {}

ins {}

blockquote {}

cite {}

q {}

address {}

ul {}

ol {}

li {}

dl {}

dd {}

dt {}

abbr {}

acronym {}

pre,
code,
tt,
samp,
kbd,
var {
  font-family: Consolas, Monaco, 'Courier New', Courier, monospace, sans-serif;
}


/* =============================================================================
 *   Wrappers
 * ========================================================================== */

/*
 * Outer wrappers:
 * - #page-wrapper: body > #page-wrapper
 * - #page: body > #page-wrapper > #page
 * - .container: body > #page-wrapper > #page.container
 *
 * The .container class holds the page width value from theme settings.
 */
#page-wrapper {}
#page {}
#page .container {}

/*
 * Wraps all header elements - branding and .region-header
 */
#header {}

/*
 * Wraps the sidebars the content column
 */
#columns {}

/*
 * Main content column wrapper
 */
#content-column {}

/*
 * Wraps the main-content-header, the content region and feed-icons. Use this
 * wrapper to style the entire main content column
 */
#main-content {  width: 1220px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;}

/*
 * Wraps the content region, avoid applying styles to this wrapper, its used
 * mainly for position and invisible gutters and can be problematic to style
 */
#content {width: 1220px;
  width: 100%;}

/*
 * Footer wrapper
 */
#footer {}

/*
 * Panels may need additional margin wrangling when in the $content region
 */
#content .panel-display {}

/*
 * Full Width Wrappers
 * These are used in the optional page--full-width-wrappers.tpl.php template.
 * All have internal .container classes. In the full width wrapper template the
 * .container classes set the width or max-width - you can style this but never
 * add any width/margin/padding/borders etc to .container
 */

/*
 * Wraps the leaderboard
 */
#leaderboard-wrapper {}
#leaderboard-wrapper .container {}

/*
 * Wraps the header
 */
#header-wrapper {
  /* Debug styles, is this working */
  background: rgba(255, 192, 203, 0.5);
}
#header-wrapper .container {}

/*
 * Wraps the nav elements
 */
#nav-wrapper {}
#nav-wrapper .container {}

/*
 * Wraps breadcrumb
 */
#breadcrumb-wrapper {}
#breadcrumb-wrapper .container {}

/*
 * Wraps messages and help
 */
#messages-help-wrapper {}
#messages-help-wrapper .container {}

/*
 * Wraps the secondary content/preface region
 */
#secondary-content-wrapper {}
#secondary-content-wrapper .container {}

/*
 * Wraps the main content column
 */
#content-wrapper {}
#content-wrapper .container {}

/*
 * Wraps the tertiary content/postfix region
 */
#tertiary-content-wrapper {}
#tertiary-content-wrapper .container {}

/*
 * Footer wrapper
 */
#footer-wrapper {
  /* Debug styles, is this working? */
  background: rgba(255, 192, 203, 0.5);
}
#footer-wrapper .container {}


/* =============================================================================
 *   Branding
 * ========================================================================== */

/*
 * Wraps all the branding elements, logo, name and slogan
 */
#branding {}

/*
 * Logo
 */
#logo {
  padding: 10px 0;
}

#logo img {
  vertical-align: bottom;
}

/*
 * Wrapper for the site name and slogan
 */
#name-and-slogan {}

/*
 * Site name (h1)
 */
#site-name {
  margin: 0;
}

#site-name a {}

#site-name a:link,
#site-name a:visited {
  text-decoration: none;
}

#site-name a:hover,
#site-name a:focus {
  text-decoration: underline;
}

/*
 * Site slogan (h2)
 */
#site-slogan {
  margin: 0;
}


/* =============================================================================
 *   Page content header
 * ========================================================================== */

/*
 * Main content header wraps the page title, tabs and actions links
 */
#main-content-header {}

/*
 * The main page title (h1)
 */
#page-title {
  margin: 0;
}


/* =============================================================================
 *   Misc Global Styles
 * ========================================================================== */

/*
 * Feed icons
 */
.feed-icon {}

/*
 * Aggregator feed source
 */
#aggregator .feed-source .feed-icon {
  display: inline;
  float: none;
  margin-right: 10px;
}

.feed-details dt,
.feed-details dd {
  display: inline;
  margin: 0;
}

/*
 * Generic styles for the more link
 */
.more-link {}

/*
 * Generic styles for links. See the ul.links declaration in node and comment
 * stylesheets
 */
ul.links {
  margin: 0;
  padding: 0;
}

ul.links.inline {
  display: block;
}

ul.links li {
  display: inline;
  list-style: none;
  padding: 0 10px 0 0;
}

/*
 * Search results are an ordered list so reset the margin
 */
.search-results {
  margin: 0;
  padding: 0;
}

/*
 * Attribution message and link
 */
.attribution {
  display: block;
  opacity: 0.65;
  padding: 1em 0;
  text-align: center;
}

.attribution a {
  text-decoration: none;
  color: inherit;
}

.attribution a:hover,
.attribution a:focus {
  text-decoration: underline;
}


/* =============================================================================
 *   Regions
 * ========================================================================== */

/*
 * Standard region wrapper, don't add width to any regions, you will bork the
 * layout - no margin, padding or borders etc
 */
.region {}

/*
 * Regions have an inner div - perfect for adding margin, padding or borders
 */
.region-inner {}

/*
 * Regions can be nested, such as when using Panels
 */
.region-inner .region-inner {}

/*
 * Header region, embedded in the #header
 */
.region-header {}

/*
 * Generally used to output Drupals help block, if the help module is enabled
 */
.region-help {}

/*
 * Secondary content
 */
.region-secondary-content {}

/*
 * Sits above the main content header, like a content-top region
 */
.region-highlighted {}

/*
 * Sits below the main content, like a content-bottom region
 */
.region-content-aside {}

/*
 * Sidebars - targets both
 */
.sidebar {}

/*
 * First sidebar
 */
.region-sidebar-first {}

/*
 * Second sidebar
 */
.region-sidebar-second {}

/*
 * Tertiary content
 */
.region-tertiary-content {}

/*
 * Footer region
 */
.region-footer {}


/* =============================================================================
 *   Links
 * ========================================================================== */

a {
  text-decoration: none;
}

a:link,
a:visited {}

a:active,
a.active {}

a:hover,
a:focus {
  text-decoration: underline;
}


/* =============================================================================
 *   Primary, Secondary and Menu Bar region menus
 * ========================================================================== */

.nav {
  clear: both;
  margin: 10px 0;
}

.nav ul,
.nav ul.menu {
  margin: 0;
  padding: 0;
}

.nav li,
.nav ul.menu li {
  display: inline;
  float: left;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav li a,
.nav ul.menu li a {
  display: block;
  white-space: nowrap;
  padding: 0 10px;
}

.nav li a:visited,
.nav ul.menu li a:visited {}

.nav li a:hover,
.nav li a:focus,
.nav ul.menu li a:hover,
.nav ul.menu li a:focus {}

.nav .block {
  margin-bottom: 0;
}


/* =============================================================================
 *   Superfish
 * ========================================================================== */

ul.sf-menu {
  margin-bottom: 0;
}

ul.sf-menu a {
  border-left: 0;
  border-top: 0;
  padding: 0 10px;
  text-decoration: none;
  height: 2.5em;
  line-height: 2.5em;
}

ul.sf-menu a:link,
ul.sf-menu a:visited {}

ul.sf-menu li {}

ul.sf-menu li:hover,
ul.sf-menu li.sfHover {
  outline: 0;
}

ul.sf-menu a {}

ul.sf-menu a:focus,
ul.sf-menu a:hover,
ul.sf-menu a:active {
  outline: 0;
}

/*
 * Superfish blocks
 */
.block-superfish {}

.block-superfish .block-inner .content {}

.block-superfish ul {
  margin: 0 !important;
  padding: 0 !important;
}

.block-superfish ul ul {}

.block-superfish ul ul ul {}

.block-superfish ul ul ul ul {}

.block-superfish li {
  margin: 0 !important;
  padding: 0 !important;
}

/*
 * Vertical style
 */
.sf-vertical {
  width: 100%;
}

.sf-vertical li {
  width: 100%;
}

.sf-vertical li.last {}

.sf-vertical li:hover ul,
.sf-vertical li.sfHover ul {
  left: 100%;
  top: 0;
  margin: 0;
  padding: 0;
}

.sf-vertical li a {
  padding: 0 10px;
}

/*
 * Navbar style
 */
.sf-navbar {
  padding-bottom: 0 !important;
}

/*
 * Sensible padding for the default style
 */
.sf-menu.sf-style-default a {
  padding: 0 10px;
}




/* =============================================================================
 *   Menu Toggles
 * ========================================================================== */

.at-mt .at-menu-toggle,
.at-mt .at-menu-toggle ul,
.at-mt .at-menu-toggle ul.menu {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}

.at-mt .at-menu-toggle-button {
  margin: 0;
}

.at-mt .at-menu-toggle ul a {
  padding: 0 10px;
  white-space: nowrap;
}




/* =============================================================================
 *   Menus, usually blocks
 * ========================================================================== */

ul.menu {
  padding-left: 15px;
}

ul.menu ul {
  padding-left: 15px;
}

ul.menu ul ul {}

ul.menu ul ul ul {}

ul.menu li {
  margin: 0;
}

ul.menu li.collapsed,
ul.menu li.expanded,
ul.menu li.leaf {}

ul.menu li a {}

ul.menu li a:link,
ul.menu li a:visited {}

ul.menu li a:active,
ul.menu li a.active {}

ul.menu li a:hover,
ul.menu li a:focus {}

ul.menu li.active a,
ul.menu li.active-trail a {}

ul.menu li.first,
ul.menu li.last {}

/* If li.content exists it's a problem, so reset the padding */
.block .menu li.content {
  padding: 0;
}


/* =============================================================================
 *   Book navigation menu
 * ========================================================================== */

.book-navigation {}

.book-navigation .page-links {}

.book-navigation .page-previous {}

.book-navigation .page-next {}

.book-navigation .page-up {
  /* Prevent text wrapping to a new line, assumes the string is two chars */
  min-width: 2em;
  white-space: nowrap;
}

.book-navigation .menu {
  margin-left: 0;
}


/* =============================================================================
 *   Breadcrumbs
 * ========================================================================== */

#breadcrumb {
  margin: 10px 0;
}

/* If the label is set to show in theme settings the label class is added */
#breadcrumb .breadcrumb-label {
  font-size: 1em;
  display: inline;
  padding-right: 10px;
}

#breadcrumb .breadcrumb-label:after {
  content: ":";
}

#breadcrumb ol {
  margin: 0;
  padding: 0;
}

#breadcrumb .with-breadcrumb-label ol {
  display: inline;
}

#breadcrumb li {
  list-style: none;
  display: inline;
}

#breadcrumb li.crumb-first {}

#breadcrumb li.crumb-last {}

#breadcrumb a {}

#breadcrumb a:link,
#breadcrumb a:visited {}

#breadcrumb a:active,
#breadcrumb a.active {}

#breadcrumb a:hover,
#breadcrumb a:focus {}

#breadcrumb .crumb-separator {}


/* =============================================================================
 *   Pagers
 * ========================================================================== */

ul.pager {
  clear: both;
  margin: 0;
  text-align: center;
}

.item-list ul.pager li {
  margin: 0;
}

ul.pager li {
  background-image: none;
  display: inline;
  list-style-type: none;
  padding: .5em;
}

ul.pager li.pager-current {
  font-weight: 700;
}

.block ul.pager li {
  margin: 0;
}

/*
 * Theme the various states of pager links
 */
ul.pager li {}

ul.pager li a {}

ul.pager li a:link,
ul.pager li a:visited {}

ul.pager li a:active,
ul.pager li a.active {}

ul.pager li a:hover,
ul.pager li a:focus {}

ul.pager li.pager-item {}
ul.pager li.first {}
ul.pager li.last {}
ul.pager li.pager-current {}
ul.pager li.pager-first {}
ul.pager li.pager-previous {}
ul.pager li.pager-next {}
ul.pager li.pager-last {}


/* =============================================================================
 *   Skip Navigation
 * ========================================================================== */

#skip-link {
  left: 50%;
  margin-left: -6.5em;
  margin-top: 0;
  padding: 0 0.5em;
  position: absolute;
  width: 12em;
  z-index: 50;
}

#skip-link a {
  background: #444;
  background: rgba(0,0,0,0.6);
  color: #fff;
  display: block;
  line-height: 2;
  padding: 0;
  text-align: center;
  text-decoration: none;
}

#skip-link a:link,
#skip-link a:visited {
  background: #444;
  background: rgba(0,0,0,0.6);
  color: #fff;
  display: block;
  line-height: 2;
  padding: 0;
  text-align: center;
  text-decoration: none;
}

#skip-link a:hover,
#skip-link a:focus,
#skip-link a:active {
  outline: 0;
}


/* =============================================================================
 *   Tabs (local tasks)
 * ========================================================================== */

#tasks {
  margin-bottom: 15px;
}

ul.primary {
  border-bottom-color: #ccc;
  margin: 20px 0;
  padding: 0 0 0 5px;
}

ul.primary li {
  display: block;
  float: left;
  margin: 0 1px -1px;
}

ul.primary li a {
  background-color: #f5f5f5;
  border-color: #ccc;
  margin-right: 1px;
  padding: 0 10px;
  display: block;
  float: left;
  height: 1.5em;
  line-height: 1.5em;
}

ul.primary li a:hover,
ul.primary li a:focus {
  background-color: #eee;
  border-color: #ccc;
}

ul.primary li.active a,
ul.primary li.active a:hover,
ul.primary li.active a:focus {
  background-color: #fff;
  border-bottom-color: #fff;
}

ul.secondary {
  border-bottom: 1px solid #ccc;
  margin: 1em 0 0;
  padding: 0 .3em 1em;
}

ul.secondary li {
  border-right: 0;
  list-style: none;
  padding: 0 10px 0 0;
}

ul.secondary li a {}

ul.secondary li a:hover,
ul.secondary li a.active {
  border-bottom: none;
  text-decoration: underline;
}


/* =============================================================================
 *   Action links
 * ========================================================================== */

ul.action-links {
  margin: 20px 0 0;
  list-style: none;
}

ul.action-links li {}


/* =============================================================================
 *  Field Styling
 * ========================================================================== */

/*
 * Wrapper for any field
 */
.field {}

/*
 * Above and inline classes are on the field wrapper
 */
.field-label-above {}

/*
 * When labels are set to inline in field display settings the clearfix class is
 * automatically added
 */
.field-label-inline {}

.field-label-inline .field-label {
  margin: 0;
}

/*
 * Labels are h2 in Adaptivetheme. Use a strong selector to mitigate unwanted
 * ineritance issues
 */
.field-label {
  font-size: 1em;
  font-weight: 700;
  font-family: inherit;
  line-height: inherit;
  margin-bottom: 0;
}




/*
 * Field types (Core)
 */

/*
 * Image fields use the <figure> and <figcaption> elements from HTML5
 */
.field-type-image {}

.field-type-image .caption {}

.field-type-image .full-caption {}

.field-type-image .teaser-caption {}

/*
 * Taxonomy
 */
.field-type-taxonomy-term-reference {
  /* The same bottom margin as p, blockquote, ul, ol and dl */
  margin-bottom: 1.5em;
}

.field-type-taxonomy-term-reference.field-label-inline .field-items {
  margin: 0;
  padding: 0;
}

.field-type-taxonomy-term-reference.field-label-inline .field-item {
  display: inline;
  list-style: none;
  padding: 0 10px 0 0;
}

/*
 * Text
 */
.field-type-text {}

/*
 * Long text
 */
.field-type-text-long {}

/*
 * Text with summary
 */
.field-type-text-with-summary {}

/*
 * File
 */
.field-type-file {}

/*
 * Number/Integer
 */
.field-type-number-integer {}

/*
 * Decimal
 */
.field-type-number-decimal {}

/*
 * Number float
 */
.field-type-number-float {}

/*
 * List
 */
.field-type-list-text {}

/*
 * List boolean
 */
.field-type-list-boolean {}

/*
 * List integer
 */
.field-type-list-integer {}

/*
 * List float
 */
.field-type-list-float {}

/*
 * Field types (Contrib)
 */
.field-type-datetime {}

.field-type-node-reference {}

.field-type-user-reference {}

/*
 * Named fields
 */
.field-name-body {}

.field-name-field-image {}

.field-name-field-tags {}

/*
 * Underscores in field name are replaced with dashes
 */
.field-name-field-FIELDNAME {}

/*
 * Image Alignment Theme Settings - included here so you can easily override
 */
/*
 * Float none setting
 */
.ia-n .field-type-image,
.iat-n .field-type-image {}

/*
 * Float left setting
 */
.ia-l .field-type-image figure,
.iat-l .field-type-image figure {
  margin: 5px 20px 15px 0;
}

/*
 * Centered setting
 */
.ia-c .field-type-image figure,
.iat-c .field-type-image figure {
  margin: 5px auto 15px;
}

/*
 * Float right setting
 */
.ia-r .field-type-image figure,
.iat-r .field-type-image figure {
  margin: 5px 0 15px 20px;
}


/* =============================================================================
 *   Block Styling
 * ========================================================================== */

/*
 * Main wrapper for most blocks, block_system_main does not have it
 */
.block {
  margin-bottom: 10px;
}

/*
 * Inner wrapper for most blocks, good for margin, padding and borders,
 * block_system_main does not have it
 */
.block-inner {}

/*
 * The first block in the region
 */
.block.first {}

/*
 * The last block in the region
 */
.block.last {}

/*
 * Zebra striping for each block in the region
 */
.block.odd {}

/*
 * Zebra striping for each block in the region
 */
.block.even {}

/*
 * Block title
 */
.block-title {
  margin: 0;
}

/*
 * Block content wrapper
 */
.block-content {}

/*
 * Match item list and block menu margin and padding
 */
.block-content {}

.block-content ul,
.block-content ol {
  padding: 0 0 0 15px;
}

.block-content li {
  margin: 0;
  padding: 0;
}

/*
 * Block for the latest news items in the first category
 */
#block-aggregator-category-1 {}

/*
 * Block for the latest news items in the first feed
 */
#block-aggregator-feed-1 {}

/*
 * First block created with "Add block" link
 */
#block-block-1 {}

/*
 * "Recent blog posts" block
 */
#block-blog-recent {}

/*
 * "Book navigation" block for the current book's table of contents
 */
#block-book-navigation {}

/*
 * "Recent comments" block
 */
#block-comment-recent {}

/*
 * "Active forum topics" block
 */
#block-forum-active {}

/*
 * "New forum topics" block
 */
#block-forum-new {}

/*
 * Language switcher block
 */
#block-locale-language {}

/*
 * Custom menu block
 */
#block-menu-menu-NAME {}

/*
 * "Recent content" block
 */
#block-node-recent {}

/*
 * "Syndicate" block for primary RSS feed; see also page.css's .feed-icon
 */
#block-node-syndicate {}

/*
 * "Most recent poll" block
 */
#block-poll-recent {}

/*
 * "Author information" block for the profile of the page's author
 */
#block-profile-author-information {}

/*
 * "Search form" block
 */
#block-search-form {}

/*
 * "Shortcuts" block
 */
#block-shortcut-shortcuts {}

/*
 * "Popular content" block
 */
#block-statistics-popular {}

/*
 * "Main menu" block
 */
#block-system-main-menu {}

/*
 * "Management" block for Drupal management menu
 */
#block-system-management {}

/*
 * "Navigation" block for Drupal navigation menu
 */
#block-system-navigation {}

/*
 * "User menu" block for Drupal user menu
 */
#block-system-user-menu {}

/*
 * "System help" block
 */
#block-system-help {}

/*
 * "Main page content" block
 */
#block-system-main {}

/*
 * "Powered by Drupal" block
 */
#block-system-powered-by {}

/*
 * "User login form" block
 */
#block-user-login {}

/*
 * "Who's new" block for a list of the newest users
 */
#block-user-new {}

/*
 * "Who's online" block for a list of the online users
 */
#block-user-online {}


/* =============================================================================
 *   Node Styling
 * ========================================================================== */

.node {
  margin-bottom: 20px;
}

.node.node-promoted {}

.node.node-sticky {}

.node.node-by-viewer {}

.node.node-teaser {}

.node.node-full {}

.node.odd {}

.node.even {}

.node .node-title {
  margin: 0;
}

.node .user-picture {}

.node .submitted {}

.node .submitted .username {}

.node .submitted time {}

.node .node-content {}

.node ul.links {}

.node ul.links li {}

.node ul.links li a {}

.node ul.links li.node-read-more a {}

.node ul.links li.comment-add a {}

.node ul.links li.comment-comments a {}

.node ul.links li.comment-new-comments a {}

.node ul.links li.blog-sernames-blog a {}

.node ul.links li.print-html a {}

.node ul.links li.print-email a {}

.node ul.links li.print-pdf a {}

.preview .node {}

/*
 * All nodes are given a node-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-my-custom-type" class.
 */
.node-page {}

.node-article {}

.node-book {}

.node-forum {}

.node-poll {}


/* =============================================================================
 *   Comment Styling - Comments, comment wrapper, comment form
 * ========================================================================== */

/*
 * Wrapper for the list of comments and its titles
 */
#comments {
  margin: 1.5em 0;
}

#comments h2 {}

#comments h2.comment-title {
  margin: 0;
}

#comments h2.comment-form {
  margin: 0;
}

/*
 * Wrapper for a single comment
 */
.comment {
  margin-bottom: 20px;
}

.comment.first {}

.comment.last {}

.comment.odd {}

.comment.even {}

.comment .user-picture {}

.comment .submitted {}

.comment .submitted p {}

.comment .submitted .username {}

.comment .submitted time {}

.comment .user-signature {}

.comment ul.links {}

/*
 * Comment title
 */
.comment-title {
  margin: 0;
}

/*
 * Comment states
 */
.comment-new {}

.comment-by-anonymous {}

.comment-by-node-author {}

.comment-by-viewer {}

.comment-title-hidden {}

.comment-with-picture {}

.comment-with-signature {}

/*
 * Preview of the comment before submitting new or updated comment
 */
.comment-preview {}

/*
 * "New" marker for comments that are new for the current user
 */
.new {
  color: #c00;
}

/*
 * Nested comments are indented
 */
.indented {
  margin-left: 40px;
}


/* =============================================================================
 *   Forms
 * ========================================================================== */

/*
 * Wrapper for a form element (or group of form elements) and its label
 */
.form-item {}

.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 1px solid #c00;
}

.form-item label {
  font-weight: 700;
}

.form-item label.option {}

/*
 * Highlight marks and form required mark
 */
.marker,
.form-required {
  color: #c00;
}

.form-item .description {
  font-size: 0.85em;
}

.form-checkboxes .form-item,
.form-radios .form-item {}

/*
 * The submit button
 */
.form-submit {}

.container-inline div,
.container-inline label {
  display: inline;
}

/*
 * Define consistent borders
 */
fieldset {
  border: 1px solid #ccc;
}

/*
 * Tips for Drupal's input formats
 */
.tips {}

/*
 * Buttons used by contrib modules like Media
 */
a.button {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
}

/*
 * Password confirmation
 */
.password-parent,
.confirm-parent {
  margin: 0;
}


/* =============================================================================
 *   Tables
 * ========================================================================== */

table {
  margin: 10px 0;
  padding: 0;
  width: 100%;
}

table.sticky-header {
  z-index: 10;
}

table,
thead,
tbody,
tr,
th,
td {
  border-color: #ccc;
}

table,
td,
th {
  vertical-align: middle;
}

caption,
th,
td {
  text-align: left;
}

thead tr {
  font-weight: 700;
  background-color: #e5e5e5;

}

td,
th {
  border-bottom: 0;
  margin: 0;
  padding: 5px 7px;
}

tbody {}

tbody tr {
  border-top: 1px solid #ccc;
}

tr.odd {
  background: #fff;
}

tr.info,
tr.even,
tr:nth-child(2n+2) {
  border-bottom: 0;
  background-color: #f5f5f5;
}

tr.drag {}

tr.drag-previous {}

tr.odd td.active {
  background-color: #eee;
}

tr.even td.active {
  background-color: #ebebeb;
}

.lt-ie8 tr {}

.lt-ie8 tr.even,
.lt-ie8 tr.odd {}

.lt-ie8 tr.even th,
.lt-ie8 tr.even td,
.lt-ie8 tr.odd th,
.lt-ie8 tr.odd td {
}

/*
 * Forum tables
 * Core sets white-space to nowrap, which makes no sense
 */
#forum td {}

#forum td.created,
#forum td.posts,
#forum td.topics,
#forum td.last-reply,
#forum td.replies,
#forum td.pager {
  white-space: normal;
}



/* =============================================================================
 *   Messages
 * ========================================================================== */

/* Left and right margin are set by the global gutter width */
div.messages {
  margin-bottom: 10px;
  margin-top: 10px;
}

div.messages ul {
  margin-top: 0;
  margin-bottom: 0;
}

div.status {}

div.warning {}

tr.warning {}

div.error,
tr.error {}

.error {}

.warning {}

/*
 * Unpublished nodes
 */
.node-unpublished,
.comment-unpublished {}

.node-unpublished,
.comment-unpublished {}

.node-unpublished p.unpublished,
.comment-unpublished p.unpublished {
  color: pink;
  color: rgba(239, 170, 170, 0.4);
  font-family: Impact,"Arial Narrow",Helvetica,sans-serif;
  font-size: 75px;
  font-weight: bold;
  height: 0;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  overflow: visible;
  text-align: center;
  text-transform: uppercase;
  word-wrap: break-word;
}

/*
 * Otherwise these elements will appear below the "Unpublished" text
 */
.lt-ie8 {}

.lt-ie8 .node-unpublished > *,
.lt-ie8 .comment-unpublished > * {
  position: relative;
}


/* =============================================================================
 *    Maintenance pages
 * ========================================================================== */

.maintenance-page {}
.maintenance-page .container {
  padding: 40px 0;
}

.maintenance-page #site-name,
.maintenance-page #page-title {
  margin: 0;
}

.db-offline {}

.db-offline .container {
  margin: 0 auto;
  padding: 40px 0;
  width: 100%;
  max-width: 960px;
}

.db-offline div.messages {
  margin: 20px 0 0;
}

.db-offline #content {
  padding: 20px 0;
}


/* =============================================================================
 *   Misc overrides for contrib modules
 * ========================================================================== */

/*
 * Admin menu overrides
 */
#admin-menu {
  margin: 0;
  padding: 0;
}

/*
 * Devel Module
 */
.dev-query {
  background: #eee;
  padding: 30px;
}

/*
 * Styleguide module tweaks
 */
#styleguide-header {
  padding: 0 10px;
}

#styleguide-header .item-list {
  font-family: inherit;
  margin: 0 20px 20px 0;
  min-height: 260px;
  width: auto;
}



.region-leaderboard #block-block-1 .block-title{display: none;}


.menublock{width: 1220px;
	height: 70px;
	background: rgba(255,255,255,.8);
	position: fixed;
	/*top: 30px;*/
	left: 50%;
	margin-left: -610px;
	z-index: 3;}

.menublock .logo{width: 160px;
	height: 70px;
	float: left;
	background: url('images/logo.png') no-repeat center top;
	margin-left: 7%;}
.menublock .logo a{width: 160px;
  	display: block;
  	height: 70px;
	text-decoration: none;
	color: transparent;}
.menublock .ulmenu{float: left;
	/*width: 724px;*/
  width: 54%;
	padding-top: 7px;
	margin-left: 1px;}
.menublock .ulmenu li{display: inline-block;
	/*margin-left: 12px;
	margin-right: 12px;*/
  margin: 0 1%;
	padding-bottom: 5px;
	border: 1px solid transparent;}
	.menublock .ulmenu li:hover{border-bottom: 2px solid #ef7f1a;}
	.menublock .ulmenu li a{text-decoration: none;
		font-family: Roboto;
		font-size: 14px;
		font-weight: 300;
		color: #2b2a29;}
.menublock .language{width: 60px;
	float: right;
	margin-right: 60px;
	height: 70px;
	background: url('images/language.png') no-repeat -30px -8px;
  cursor: pointer;}
.menublock .language ul{list-style: none;
	margin-left: 0px;
    padding-top: 8px;}
.menublock .language ul li{
	text-decoration: none;
	font-family: Roboto;
	font-size: 14px;
	font-weight: 300;
	color: #ef7f1a;}
.menublock .language ul li a{text-decoration: none;
  font-family: Roboto;
  font-size: 14px;
  font-weight: 300;
  color: #ef7f1a;}


#block-views-view-main-slider-block .item-list ul{width: 1220px;
	height: 470px;
	position: relative;
	margin-left: auto;
	margin-right: auto;
	padding: 0;
	margin-top: -20px;}

#block-views-view-main-slider-block .item-list ul li{position: absolute;
	width: 1220px;
	height: 470px;
	left: 0px;
	top: 0px;
	list-style: none;
	margin-left: 0;}

#block-views-view-main-slider-block .item-list ul li .views-field-body p{width: 800px;
	position: absolute;
	top: 130px;
	left: 50%;
	color: #ffffff;
	font-family: Roboto;
	font-size: 25px;
	font-weight: 400;
	margin-left: -400px;
	text-align: center;}

#block-views-view-main-slider-block{margin-bottom: 0; margin-top: 10px;}

.buttonToOrder{position: absolute;
	left: 50%;
	margin-left: -127px;
	width: 254px;
	height: 45px;
	top: 317px;
	background: transparent;
	text-align: center;
	border: 2px solid #ef7f1a;
	border-radius: 3px;
	z-index: 2;}
.buttonToOrder:hover{background: #ef7f1a;}
.buttonToOrder a{display: block;
	width: 100%;
	height: 84%;
	padding-top: 8px;
	text-decoration: none;
	color: #ffffff;
	font-family: Roboto;
	font-size: 18px;
	font-weight: 300;
	text-align: center;}
.view-view-main-slider{position: relative;}
.arrLeftMainSl{position: absolute;
	z-index: 2;
	left: 70px;
	width: 26px;
	top: 220px;
	background: url(images/arrLeft.png) no-repeat left center;
	height: 45px;
	cursor: pointer;}
.arrRightMainSl{position: absolute;
	z-index: 2;
	right: 55px;
	height: 45px;
	width: 26px;
	top: 220px;
	cursor: pointer;
	background: url(images/arrRight.png) no-repeat right center;}

.blockStreems{width: 1220px;
  height: 245px;
  margin-left: auto;
  margin-right: auto;}

.streem{float: left;
  width: 400px;
  height: 245px;
  text-align: center;
  position: relative;}
.streem a{display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;}
.streem div{position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: rgba(239,127,26,.6);
  z-index: 2;}
.streem p{color: #ffffff;
  width: 100%;
  text-align: center;
  font-family: Roboto;
  font-weight: 700;
  font-size: 24px;
  padding-top: 100px;
  opacity: 0;}
.streem div p{color: #ffffff;
  width: 100%;
  text-align: center;
  font-family: Roboto;
  font-weight: 700;
  font-size: 24px;
  padding-top: 100px;
  opacity: 1 !important;}
.streem div:hover{opacity: 0;}
.streem:hover p{opacity: 1;}
.streem1{background: url("images/streem1.png") no-repeat 100%;}
.streem2{margin-left: 10px;
  background: url("images/streem2.png") no-repeat 100%;}
.streem3{float: right;
  background: url("images/streem3.png") no-repeat 100%;}

.twoBlocksAfterStreems{width: 1220px;
  height: 400px;
  margin-left: auto;
  margin-right: auto;}
.twoBlocksAfterStreems div{width: 605px;
  height: 400px;
  position: relative;}
.twoBlocksAfterStreems div div.orange{background: rgba(239,127,26,.6);
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;}
.twoBlocksAfterStreems div:hover div.orange{opacity: 1;}
.twoBlocksAfterStreems div h2{color: #ffffff;
  font-family: Roboto;
  font-size: 48px;
  text-align: center;
  width: 100%;
  margin-top: 0;
  top: 160px;
  margin-bottom: 0;
  position: absolute;
  z-index: 2;}
.twoBlocksAfterStreems div p{color: #ffffff;
  font-family: Roboto;
  font-size: 18px;
  font-weight: 300;
  text-align: center;
  width: 80%;
  top: 230px;
  left: 10%;
  margin-top: 0;
  margin-bottom: 0;
  position: absolute;
  z-index: 2;}
.twoBlocksAfterStreems div a{color: #333333;
  font-family: Roboto;
  font-size: 18px;
  font-weight: 300;
  text-decoration: none;
  display: block;
  width: 195px;
  height: 25px;
  top: 103px;
  left: 155px;
  text-align: left;
  float: right;
  position: absolute;
  z-index: 2;
  background: url("images/arrLink.png") no-repeat 155px 6px;}
.twoBlocksAfterStreems .lblock{float: left;
  background: url("images/porizka.png") no-repeat 100%;}
.twoBlocksAfterStreems .rblock{float: right;
  background: url("images/metalconstr.png") no-repeat 100%;}

#block-block-3{margin-bottom: 10px;}

.aboutCompany{width: 1220px;
  min-height: 260px;
  background: #7f8c8d;}

.aboutCompany p{width: 890px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
  font-family: Roboto;
  font-weight: 300;
  font-size: 18px;
  padding-top: 30px;}
.aboutCompany p a{color: #ef7f1a;
  text-decoration: none;
  background: url("images/arrLink.png") no-repeat 128px 6px;
  width: 165px;
  display: block;
  text-align: left;
  margin-left: auto;
  margin-right: auto;}
.aboutCompany p a:hover{/*color: #CD905A;*/ opacity: 0.7;}

.products{height: 385px;
  padding-top: 85px;
  width: 1220px;
  margin-left: auto;
  margin-right: auto;}
.product{width: 320px;
  height: 300px;
  float: left;
  position: relative;}
.product p{margin-bottom: 0; margin-top: 0;
  color: #333333;
  font-family: Roboto;
  font-weight: 300;
  font-size: 18px;
  width: 100%;
  text-align: center;}
.product div{background: #ef7f1a;
  width: 140px;
  height: 40px;
  border-radius: 3px;
  text-align: center;
  left: 50%;
  margin-left: -70px;
  bottom: 0px;
  position: absolute;}
.product div:hover{opacity: .7}
.product div a{color: #ffffff;
  font-family: Roboto;
  font-weight: 300;
  text-decoration: none;
  font-size: 14px;
  display: block;
  width: 100%;
  padding-top: 9px;
  height: 78%;}
.product1{background: url("images/product1.png") no-repeat 88px 70px;
  margin-left: 35px;}
.product2{background: url("images/product2.png") no-repeat 89px 75px;
  margin-left: 100px;}
.product3{background: url("images/product3.png") no-repeat 85px 75px;
  float: right;
  margin-right: 35px;}


.partners{padding-left: 60px;
  padding-right: 60px;
  padding-top: 45px;
  padding-bottom: 45px;
  width: 1100px;
  height: 210px;
  margin-left: auto;
  margin-right: auto;
  background: #bdc3c7;}
.partner{float: left;
  width: 100px;
  height: 100px;
  text-align: center;
  margin-left: 18px;
  margin-right: 18px;
  margin-bottom: 10px;}
.partner img{width: 100%;}
  /*.partner1{background: url("images/partn1.jpg") no-repeat center top;}
  .partner2{background: url("images/partn2.jpg") no-repeat center top;}
  .partner3{background: url("images/partn3.jpg") no-repeat center top;}
  .partner4{background: url("images/partn4.jpg") no-repeat center top;}
  .partner5{background: url("images/partn5.jpg") no-repeat center top;}
  .partner6{background: url("images/partn6.gif") no-repeat center top;}
  .partner7{background: url("images/partn7.png") no-repeat center top;}
  .partner8{background: url("images/partn8.jpg") no-repeat center top;}
  .partner9{background: url("images/partn9.png") no-repeat center top;}
  .partner10{background: url("images/partn10.jpg") no-repeat center top;}
  .partner11{background: url("images/partn11.png") no-repeat center top;}*/

  /*.partner1:hover{background: url("images/partner1col.png") no-repeat center top;}
  .partner2:hover{background: url("images/partner2col.png") no-repeat center top;}
  .partner3:hover{background: url("images/partner3col.png") no-repeat center top;}
  .partner4:hover{background: url("images/partner4col.png") no-repeat center top;}*/
.partner img{width: 110px;}
#block-block-7{margin-bottom: 0;}

.footerBlock{width: 1220px;
  height: 400px;
  background: #e67e22;
  margin-left: auto;
  margin-right: auto;}
#block-block-8 .block-inner{margin-left: 0;}
#block-block-8 {margin-bottom: 0px !important;}
.footerBlock .fp{float:left;}

.footerBlock .allRights{width: 98%;
  color: #d2ddde;
  font-family: Roboto;
  font-weight: 300;
  font-size: 12px;
  text-align: left;
  padding-left: 30px;
  float: right;
  margin-top: 10px;}
.footerBlock .allRights a{color: #d2ddde; text-decoration: none;}
.footerBlock .fp1{width: 400px;
  height: 355px;
  margin-left: 70px;
  background: url("images/logo2.png") no-repeat center 50px;}
  .footerBlock .fp1 p{padding-top: 220px;
    color: #333333;
    font-size: 14px;
    font-family: Roboto;
    font-weight: 300;}
.footerBlock .fp2{width: 180px;
  height: 355px;
  margin-left: 90px;}
  .footerBlock .fp2 ul{list-style: none;}
  .footerBlock .fp2 ul li{margin-top: 32px;}
  .footerBlock .fp2 ul li a{color: #ffffff;
    font-family: Roboto;
    font-weight: 300;
    font-size: 14px;
    text-decoration: none;}
    .footerBlock .fp2 ul li a:hover{color: #ffc592;}
.footerBlock .fp3{width: 430px;
  height: 355px;}
.footerBlock .fp3 .social{width: 100%;
  float: right;
  height: 70px;
  margin-top: 35px;}
  .footerBlock .fp3 .rozsilkamail{color: #333333;
    font-size: 14px;
    font-family: Roboto;
    font-weight: 300;
    width: 225px;
    border: 1px solid #ffffff;
    height: 35px;
    margin-bottom: 5px;
    padding-left: 15px;
    background: transparent;
    float: left;}
  .footerBlock .fp3 .rozsilka{height: 35px;
    border: 1px solid #ffffff;
    background: transparent;
    width: 242px;
    font-weight: 700;
    color: #ffffff;
    font-family: Roboto;
    font-size: 14px;
    float: left;}
    .footerBlock .fp3 .rozsilka:hover{opacity: 0.7;}
    .footerBlock .fp3 form{width: 245px;
      height: 90px;
      margin-left: auto;
      margin-right: auto;
      margin-top: 20px;
      padding-left: 30px;}
  .footerBlock .fp3 form p{color: #333333;
    font-size: 14px;
    font-family: Roboto;
    font-weight: 300;
    margin-bottom: 10px;
    /*padding-top: 65px;*/}
  .footerBlock .fp3 form textarea{color: #333333;
    font-size: 14px;
    font-family: Roboto;
    font-weight: 300;
    min-width: 223px;
    max-width: 223px;
    border: 1px solid #ffffff;
    min-height: 80px;
    max-height: 80px;
    margin-bottom: 5px;
    padding-left: 15px;
    background: transparent;
    float: left;}

.soc{width: 64px;
  height: 64px;
  border-radius: 32px;
  float: left;
  margin-left: 20px;}
.soc1{background: url("images/socialButtons.png") no-repeat -2px 0px;}
.soc2{background: url("images/socialButtons.png") no-repeat -88px 0px;}
.soc3{background: url("images/socialButtons.png") no-repeat -176px 0px;}
.soc4{background: url("images/socialButtons.png") no-repeat -266px 0px;}
.soc5{background: url("images/socialButtons.png") no-repeat -357px 0px;}

.soc1:hover{background: url("images/socialButtonsA.png") no-repeat -1px 0px;}
.soc2:hover{background: url("images/socialButtonsA.png") no-repeat -87px 0px;}
.soc3:hover{background: url("images/socialButtonsA.png") no-repeat -177px 0px;}
.soc4:hover{background: url("images/socialButtonsA.png") no-repeat -265px 0px;}
.soc5:hover{background: url("images/socialButtonsA.png") no-repeat -358px 0px;}
.soc a{display: block;
  width: 100%;
  height: 100%;}

.rmenu{display: none;}
.rmenu li{background: rgba(255,255,255,.7);
	text-align: center;}
.rmenu ul{padding-top: 13px !important;
	padding-left: 5px;
	margin-left: 0px !important;
	width: 100%;}

.search{float: left;
	margin-top: 20px;}
.searchT{width: 100px;
	height: 20px;
	border-radius: 6px;
	background: transparent;
	border: 1px solid #f69100;
	color: #333333;
	font-size: 14px;
	text-align: center;
	float: left;
	font-weight: 300;
	font-family: Roboto;}
.searchSub{border: none;
	height: 25px;
	width: 25px;
	margin-left: 1px;
	float: left;
	background: transparent url("images/lupa.png") no-repeat center -3px;}

#main-content-header{display:none;}

#block-views-portfolio-slider-block{margin-top: -30px;}
.view-id-portfolio_slider {width: 1220px; height: 540px; position: relative;}

.view-id-portfolio_slider .views-row{position: absolute; left: 0; top: 0; width: 1220px; height: 540px;}
.view-id-portfolio_slider .views-row img{width: 1220px; height: 540px;}
.view-id-portfolio_slider .views-field-field-text-portf-slider{position: absolute; left: 50%; top: 195px;
	font-family: Roboto; font-weight: 100; font-size: 60px; color: #ffffff; width: 850px; margin-left: -425px; text-align: center;}


.typesOfWork{width: 1220px; height: 250px; background: #7f8c8d;}
.typesOfWork h2{font-family: Roboto; font-size: 24px; font-weight: 300; color: #ffffff; width: 60%; margin: 0 auto; text-align: center; padding-top: 90px;}


.view-object-portfolio .view-content{width: 1200px; margin: 0 auto;}
.view-object-portfolio .views-row{height: 290px; width: 290px; float: left; margin-left: 5px; margin-right: 5px; margin-bottom: 10px;}
#block-views-object-portfolio-block{height: 600px; margin-top: 40px;}

.view-hidden-obj-potf .view-content{width: 1200px; margin: 0 auto;}
.view-hidden-obj-potf .views-row{height: 290px; width: 290px; float: left; margin-left: 5px; margin-right: 5px; margin-bottom: 10px;}
#block-views-hidden-obj-potf-block{overflow: hidden; margin-top: 10px; display: none;}

.moreProjectsBlock{width: 1220px; height: 70px; margin-top: 30px;}
.moreProjectsButton{width: 255px; height: 38px; padding-top: 7px; text-align: center; border-radius: 4px; border: 2px solid #ef7f1a; margin-left: auto; margin-right: auto; color: #ef7f1a; font-weight: 300; font-family: Roboto; font-size: 18px;}
.moreProjectsButton:hover{cursor: pointer;}


.page-node-28 #block-system-main{margin: 0 !important;}

#block-block-11{margin-top: -40px;}
#block-block-11 .block-inner{margin-left: 0;}

.sh-druk{width: 1220px; margin: 0 auto; height: 540px; position: relative; background: url("images/sh-druk.png") no-repeat; background-size: cover;}
.sh-druk h1{text-align: center; color: #ffffff; font-size: 60px; font-family: Roboto; font-weight: 300; padding-top: 250px;}


#block-block-12{margin-top: -20px;}
.greyShDBlock{width: 1220px; height: 250px; background: #7f8c8d;}
.greyShDBlock h2{font-family: Roboto; font-size: 24px; font-weight: 300; color: #ffffff; width: 90%; margin: 0 auto; text-align: center; padding-top: 90px;}


.vimogi{height: 1280px; width: 1220px;}
.extint{height: 740px; width: 1220px; margin: 0 auto; margin-top: 40px;}

.ext{float: left; margin-left: 70px;}

.int{float: right; margin-right: 70px;}

.extint div{width: 485px; height: 740px; overflow: hidden;}
.extint div p{margin: 0;}
.extint div img{width: 485px; height: 330px;}
.extint div .name{color: #333333; font-family: Roboto; font-weight: 300; font-size: 24px; text-align: center;}
.extint div .dpi{color: #ef7f1a; font-family: Roboto; font-weight: 300; font-size: 36px; padding-left: 20px;}
.extint div .width{color: #ef7f1a; font-family: Roboto; font-weight: 300; font-size: 36px; padding-left: 20px;}
.extint div .width span{color: #333333; font-family: Roboto; font-weight: 300; font-size: 18px;}
.extint div ul{}
.extint div ul li{color: #333333; font-family: Roboto; font-weight: 300; font-size: 14px;}

.vimogiP{text-align: center; color: #333333; font-family: Roboto; font-weight: 300; font-size: 24px; margin-bottom: 20px;}

.vimogic{width: 1220px; height: 530px;}
.vimogic .v1{float: left; width: 420px; margin-left: 90px;}
.vimogic .v2{float: right; width: 700px;}
.vimogic div{}
.vimogic div .zag{color: #333333; font-family: Roboto; font-weight: 300; font-size: 24px; margin: 0;}
.vimogic div .p2{color: #333333; font-family: Roboto; font-weight: 300; font-size: 14px; margin-top: 10px;}
.vimogic div .p2 span{color: #ef7f1a;}

.orderP{font-family: Roboto; font-weight: 300; font-size: 36px; color: #333333; text-align: center; margin-top: 120px;}

.orderPage{width: 435px; margin: 0 auto; overflow: hidden;}
.textToKapcha{float: left; width: 140px; line-height: 1; color: #666666; font-size: 14px; font-weight: 300; font-family: Roboto; padding-top: 412px;}
.orderPage form{margin-left: 25px; float: left; width: 380px;}
.orderPage form input{color: #333333; font-family: Roboto; font-weight: 300; font-size: 16px; width: 358px; float: left; border: 1px solid #e67e22; height: 38px; padding-left: 20px; border-radius: 2px; margin-bottom: 10px;}
.orderPage form textarea{color: #333333; font-family: Roboto; font-weight: 300; font-size: 16px; float: left; padding-left: 18px; margin-bottom: 10px; min-width: 358px; border: 1px solid #e67e22; max-width: 358px; min-height: 190px; max-height: 190px;}
.kapcha{width: 135px; height: 30px; float: left; margin-right: 30px; border: 1px solid #e67e22; border-radius: 2px;}
.inpKapcha{width: 135px !important; height: 29px !important; margin-right: 30px;}
.orderPage form input:last-child{width: 250px; height: 40px; border: 2px solid #e67e22; font-size: 18px; color: #e67e22; background: transparent; margin-left: 70px;}

.psAfterForm{float: right; width: 100%; color: #666666; line-height: 1; font-size: 14px; font-weight: 300; font-family: Roboto;}

.zvertaytes{text-align: center; margin-top: 100px; color: #333333; font-family: Roboto; font-weight: 300; font-size: 36px; margin-bottom: 10px;}
.contactsB{width: 1220px; margin: 0 auto; overflow: hidden; margin-bottom: 40px;}

.contactsB .left{width: 47%; float: left;}
.contactsB .right{width: 52%; float: right;}

.contactsB p{font-family: Roboto; font-weight: 300; font-size: 18px; color: #333333;}

.contactsB .left p{width: 100%; text-align: right; margin-top: 5px; margin-bottom: 5px;}
.contactsB .right p{width: 100%; text-align: left; margin-top: 5px; margin-bottom: 5px; color: #ef7f1a;}

#block-block-14 .block-inner{margin-left: 0;}

.vnutr-rekl{background: url("images/sh-druk.png") no-repeat; margin-top: -50px; margin-bottom: 10px;}

.textInZovnRekl{width: 1220px;}
.textInZovnRekl .vim{text-align: center; color: #666666; font-size: 24px; font-weight: 300; font-family: Roboto; margin-bottom: 15px; margin-top: 20px;}
.textInZovnRekl .textZR{color: #666666; font-size: 18px; font-weight: 300; font-family: Roboto; padding-left: 20px; padding-right: 20px;}

#block-views-vnutrish-rekl-objects-block{width: 1220px; overflow: hidden;}
.view-vnutrish-rekl-objects{width: 1216px; margin: 0 auto;}
.view-vnutrish-rekl-objects .views-row{width: 300px; height: 300px; float: left; margin-left: 2px; margin: 2px;}
.view-vnutrish-rekl-objects .views-row img{width: 100%; height: 100%;}


.aboutUsPZ{text-align: center; color: #666666; font-size: 24px; font-weight: 300; font-family: Roboto; margin-bottom: 15px; margin-top: 90px;}
.aboutUsP{color: #666666; font-size: 18px; font-weight: 300; font-family: Roboto; padding-left: 100px; padding-right: 100px;}


#block-views-portfolio-v-product-block{width: 1220px; margin-top: 100px;}
.view-portfolio-v-product{width: 1216px; margin: 0 auto;}
.view-portfolio-v-product .views-row{width: 300px; height: 300px; float: left; margin: 2px;}
.view-portfolio-v-product .views-row img{border: 1px solid #ef7f1a; width: 300px;}

#block-views-stendy-kyshenki-block{width: 1220px; overflow: hidden;}
.view-stendy-kyshenki{width: 1216px; margin: 0 auto;}
.view-stendy-kyshenki .views-row{width: 300px; height: 300px; float: left; margin: 2px;}
.view-stendy-kyshenki .views-row img{border: 1px solid #ef7f1a;}

#block-views-viviski-litery-block{width: 1220px; overflow: hidden;}
.view-viviski-litery{width: 1216px; margin: 0 auto;}
.view-viviski-litery .views-row{width: 300px; height: 300px; float: left; margin: 2px;}
.view-viviski-litery .views-row img{border: 1px solid #ef7f1a; width: 100%; height: 100%;}

.zayavkaSendPage{text-align: center; font-size: 36px; font-weight: 300; font-family: Roboto; margin-top: 150px; margin-bottom: 100px; color: #ef7f1a;}
#user-login {margin-top: 100px;}
.responsiveMenu{cursor: pointer; width: 60px; height: 40px; background: url('images/responsiveMenu.png') no-repeat center 7px; position: absolute; right: 10px; top: 15px; display: none;}
#block-views-object-portfolio-block{overflow: hidden; height: auto;}
.view-object-portfolio .views-row{overflow: hidden;}

@media (min-width: 980px) and (max-width: 1219px) {
  .menublock{width: 980px; margin-left: -490px !important;}
  .menublock .logo{margin-left: 1%; width: 145px;}
  .menublock .logo a{width: 100%;}
  .menublock .ulmenu{width: 60%; padding-top: 0; margin-top: 8px; padding-left: 0px;}
  .menublock .ulmenu li{margin: 0 3%;}
  .menublock .ulmenu li a{font-size: 17px;}
  .menublock .language{margin-right: 3%;}
  #block-views-view-main-slider-block .item-list ul{width: 100%;}
  #block-views-view-main-slider-block .item-list ul li{width: 100%; overflow: hidden;}
  #block-views-view-main-slider-block .item-list ul li .views-field-body p{width: 80%; margin-left: 0; left: 10%; font-size: 23px;}
  .container{width: 980px !important; overflow: hidden;}
  .blockStreems{width: 100%;}
  .streem{width: 32%;}
  .streem2{margin-left: 2%;}
  .twoBlocksAfterStreems{width: 100%;}
  .twoBlocksAfterStreems div{width: 49%;}
  .twoBlocksAfterStreems div h2{font-size: 36px; top: 130px;}
  .twoBlocksAfterStreems div p{top: 195px;}
  .twoBlocksAfterStreems div p:last-child a{left: 70px; top: 140px;}
  .aboutCompany{width: 100%;}
  .aboutCompany p{width: 96%;}
  .products{width: 100%;}
  .product{width: 32%; margin: 0; background-position: center 75px;}
  .product2{margin: 0 2%;}

  .partners{width: auto;}
  .footerBlock .fp1{width: 19%;}
  .footerBlock .fp2{margin-left: 45px;}

  #block-views-portfolio-v-product-block{width: 100%;}
  .view-portfolio-v-product{overflow: hidden; width: 980px; margin: 0;}
  .view-portfolio-v-product .views-row{margin: 0 13px;}

  .sh-druk{width: 100%; background-position: -113px;}
  .greyShDBlock{width: 100%;}
  .vimogi{width: 100%;}
  .extint{width: 100%;}
  .extint div{width: 46%; margin: 0 1%;}
  .vimogic{width: 100%;}
  .vimogic .v1{width: 360px;}
  .vimogic .v2{width: 510px;}

  .view-id-portfolio_slider{width: 100%;}
  .view-id-portfolio_slider .views-row{width: 100%;}
  .typesOfWork{width: 100%;}
  .view-object-portfolio .view-content{width: 100%;}
  #block-views-object-portfolio-block .views-row img{width: 100%;}
  .view-object-portfolio .views-row{width: 32%;}
  .moreProjectsBlock{width: 100%;}

  .contactsB{width: 100%;}

  #block-views-vnutrish-rekl-objects-block{width: 100%;}
  .view-vnutrish-rekl-objects{width: 100%;}
}

@media (min-width: 768px) and (max-width: 979px) {
  .menublock{width: 768px; margin-left: -384px !important;}
  .menublock .logo{margin-left: 1%; width: 145px;}
  .menublock .logo a{width: 100%;}
  .menublock .ulmenu{width: 50%; padding-top: 0; margin-top: 8px; padding-left: 0px;}
  .menublock .ulmenu li{margin: 0 3%;}
  .menublock .ulmenu li a{font-size: 17px;}
  .menublock{height: 110px;}
  .menublock .language{margin-right: 3%;}
  #block-views-view-main-slider-block .item-list ul{width: 100%;}
  #block-views-view-main-slider-block .item-list ul li{width: 100%; overflow: hidden;}
  #block-views-view-main-slider-block .item-list ul li .views-field-body p{width: 80%; margin-left: 0; left: 10%; font-size: 23px;}
  .container{width: 768px !important; overflow: hidden;}
  .blockStreems{width: 100%;}
  .streem{width: 32%;}
  .streem2{margin-left: 2%;}
  .twoBlocksAfterStreems{width: 100%;}
  .twoBlocksAfterStreems div{width: 49%;}
  .twoBlocksAfterStreems div h2{font-size: 36px; top: 130px;}
  .twoBlocksAfterStreems div p{top: 195px;}
  .twoBlocksAfterStreems div p:last-child a{left: 70px; top: 140px;}
  .aboutCompany{width: 100%;}
  .aboutCompany p{width: 96%; padding-top: 0; font-size: 20px;}
  .products{width: 100%;}
  .product{width: 32%; margin: 0; background-position: center 75px;}
  .product2{margin: 0 2%;}

  .partners{width: auto; height: auto; overflow: hidden;}
  .partner{margin: 0 4%;}
  .footerBlock .fp1{width: 19%; margin-left: 35px;}
  .footerBlock .fp2{margin-left: 10px;}
  .footerBlock .fp3{width: 23%;}
  .footerBlock .fp3 .social{width: 121%;}
  .soc{margin-left: 1%;}

  #block-views-portfolio-v-product-block{width: 100%;}
  .view-portfolio-v-product{overflow: hidden; width: 100%; margin: 0;}
  .view-portfolio-v-product .views-row{margin: 0 13px;}

  .sh-druk{width: 100%; background-position: -226px;}
  .greyShDBlock{width: 100%;}
  .vimogi{width: 100%;}
  .extint{width: 100%;}
  .extint div{width: 46%; margin: 0 1%;}
  .vimogic{width: 100%;}
  .vimogic .v1{width: 30%; margin-left: 2%;}
  .vimogic .v2{width: 60%;}


  .view-id-portfolio_slider{width: 100%;}
  .view-id-portfolio_slider .views-row{width: 100%;}
  .typesOfWork{width: 100%;}
  .view-object-portfolio .view-content{width: 100%;}
  #block-views-object-portfolio-block .views-row img{width: 100%;}
  .view-object-portfolio .views-row{width: 32%;}
  .moreProjectsBlock{width: 100%;}

  .contactsB{width: 100%;}

  #block-views-vnutrish-rekl-objects-block{width: 100%;}
  .view-vnutrish-rekl-objects{width: 100%;}
}
@media (max-width: 767px) {
  .menublock{width: 100%; margin-left: 0 !important; left: auto; right: 0;}
  .menublock .logo{margin-left: 1%; width: 145px;}
  .menublock .logo a{width: 100%;}
  .menublock .ulmenu{width: 100px;  padding-top: 0; right: 10px; top: 56px; background: rgba(255,255,255,.8); padding-right: 5px; padding-left: 5px; display: none; position: absolute;}
  .menublock .ulmenu li{display: block; margin: 5px 0;}
  .menublock .language{margin-right: 80px;}
  .arrRightMainSl{right: 15px;}
  .arrLeftMainSl{left: 15px;}
  .buttonToOrder{top: 375px;}
  #block-views-view-main-slider-block .item-list ul{width: 100%;}
  #block-views-view-main-slider-block .item-list ul li{width: 100%; overflow: hidden;}
  #block-views-view-main-slider-block .item-list ul li .views-field-body p{width: 80%; margin-left: 0; left: 10%; font-size: 23px;}
  .container{width: 100% !important; overflow: hidden;}
  .blockStreems{width: 100%;}
  .streem2{margin: 0;}
  .streem{margin: 0 auto; margin-bottom: 10px; float: none;}
  #block-block-3{overflow: hidden;}
  .blockStreems{height: auto;}
  .twoBlocksAfterStreems{width: 100%; height: 800px;}
  .twoBlocksAfterStreems div{width: 100%; float: none;}
  .twoBlocksAfterStreems div h2{font-size: 36px; top: 130px;}
  .twoBlocksAfterStreems div p{top: 195px;}
  .twoBlocksAfterStreems div p:last-child a{left: 33%; top: 140px;}
  .aboutCompany{width: 100%;}
  .aboutCompany p{width: 96%; padding-top: 0; font-size: 20px;}
  .products{width: 100%; height: auto; padding-bottom: 50px;}
  .product{width: 250px; margin: 0 auto; float: none; background-position: center 75px; margin-bottom: 20px;}
  .product2{margin: 0 auto;}

  .partners{width: auto; height: auto; overflow: hidden;}
  .partner{margin: 0 8%;}

  .footerBlock{height: auto;}
  .footerBlock .fp{float: none;}
  #block-block-8 .block-inner{margin: 0;}
  .footerBlock{width: 100%;}
  .footerBlock .fp1{width: 94%; margin: 0 auto; height: auto;}
  .footerBlock .fp1 p{padding-top: 180px;}
  .footerBlock .fp2{width: 100%; height: auto;}
  .footerBlock .fp2 ul{width: 96%; margin: 0 auto;}
  .footerBlock .fp2 ul li{margin: 0 1%; display: inline;}
  .footerBlock .fp2{margin-left: 10px;}
  .footerBlock .fp3{width: 100%;}
  .footerBlock .fp3 form{float: none; overflow: hidden; height: auto; padding-left: 0;}
  .footerBlock .fp3 .social{width: 345px; margin: 10px auto; float: none;}
  .soc{margin-left: 1%;}
  .footerBlock .allRights{float: none; text-align: center; margin: 0; padding-left: 0;}

  .responsiveMenu{display: block;}

  #block-views-portfolio-v-product-block{width: 100%;}
  .view-portfolio-v-product{overflow: hidden; width: 100%; margin: 0;}
  .view-portfolio-v-product .views-row{margin: 0 auto; float: none;}

  .sh-druk{width: 100%; background-position: -226px;}
  .greyShDBlock{width: 100%; height: auto;}
  .greyShDBlock h2{padding-top: 65px;}
  .vimogi{width: 100%; height: auto;}
  .extint{width: 100%; height: auto;}
  .extint div{width: 400px; margin: 0 auto; float: none;}
  .vimogic{width: 100%; height: auto;}
  .vimogic .v1{width: 90%; margin: 0 auto; float: none;}
  .vimogic .v2{width: 90%; float: none; margin: 0 auto;}

  .view-id-portfolio_slider{width: 100%;}
  .view-id-portfolio_slider .views-row{width: 100%;}
  .typesOfWork{width: 100%; height: auto;}
  .view-object-portfolio .view-content{width: 100%;}
  #block-views-object-portfolio-block .views-row img{width: 100%;}
  .view-object-portfolio .views-row{width: 300px; margin: 0 auto; height: 240px; float: none;}
  .moreProjectsBlock{width: 100%;}
  .views-field-field-portf-obj-img{height: 240px;}
  .view-id-portfolio_slider .views-field-field-text-portf-slider{font-size: 48px; width: 100%; margin: 0 auto; left: auto; right: auto;}
  .contactsB{width: 100%;}

  #block-views-vnutrish-rekl-objects-block{width: 100%;}
  .view-vnutrish-rekl-objects{width: 100%;}
  .view-vnutrish-rekl-objects .views-row{float: none; margin: 0 auto; width: 350px;}
}

@media (max-width: 466px) {
  .search{display: none;}
  .menublock .language{display: none;}
  .sh-druk h1{font-size: 32px;}
  .view-id-portfolio_slider .views-field-field-text-portf-slider{font-size: 26px; width: 100%; margin: 0 auto; left: auto; right: auto;}
}

@media (max-width: 655px) {
  .sh-druk h1{font-size: 38px;}
  .view-id-portfolio_slider .views-field-field-text-portf-slider{font-size: 32px; width: 100%; margin: 0 auto; left: auto; right: auto;}
  .greyShDBlock{height: auto;}
}