@import url("reset.css");
@import url("text.css");
@import url("960.css");

/* 
  HTML5 ✰ Boilerplate 
  
  style.css contains a reset, font normalization and some base styles.
  
  credit is left where credit is due.
  much inspiration was taken from these projects:
    yui.yahooapis.com/2.8.1/build/base/base.css
    camendesign.com/design/
    praegnanz.de/weblog/htmlcssjs-kickstart
*/

/* 
  html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
  v1.4 2009-07-27 | Authors: Eric Meyer & Richard Clark
  html5doctor.com/html-5-reset-stylesheet/
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}                  

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section { 
    display:block;
}

nav ul { list-style:none; }

blockquote, q { quotes:none; }

blockquote:before, blockquote:after,
q:before, q:after { content:''; content:none; }

a { margin:0; padding:0; font-size:100%; vertical-align:baseline; background:transparent; }

ins { background-color:#ff9; color:#000; text-decoration:none; }

mark { background-color:#ff9; color:#000; font-style:italic; font-weight:bold; }

del { text-decoration: line-through; }

abbr[title], dfn[title] { border-bottom:1px dotted; cursor:help; }

/* tables still need cellspacing="0" in the markup */
table { border-collapse:collapse; border-spacing:0; }

hr { display:block; height:1px; border:0; border-top:1px solid #ccc; margin:1em 0; padding:0; }

input, select { vertical-align:middle; }

/* END RESET CSS */


/* fonts.css from the YUI Library: developer.yahoo.com/yui/
   Refer to developer.yahoo.com/yui/3/cssfonts/ for font sizing percentages

  There are three custom edits:
   * remove arial, helvetica from explicit font stack
   * we normalize monospace styles ourselves
   * table font-size is reset in the HTML5 reset above so there is no need to repeat
*/
body { font:13px/1.231 sans-serif; *font-size:small; } /* hack retained to preserve specificity */

select, input, textarea, button { font:99% sans-serif; }

/* normalize monospace sizing 
 * en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome
 */
pre, code, kbd, samp { font-family: monospace, sans-serif; }
 

/* 
 * minimal base styles 
 */


body, select, input, textarea { 
  /* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */ 
  color: #444; 
  /* set your base font here, to apply evenly */
  /* font-family: Georgia, serif;  */   
}

/* Headers (h1,h2,etc) have no default font-size or margin,
   you'll want to define those yourself. */ 
h1,h2,h3,h4,h5,h6 { font-weight: bold; }

/* always force a scrollbar in non-IE */ 
html { overflow-y: scroll; }

 
/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active { outline: none; }

a, a:active, a:visited { color: #607890; }
a:hover { color: #036; }


ul, ol { margin-left: 1.8em; }
ol { list-style-type: decimal; }

/* Remove margins for navigation lists */
nav ul, nav li { margin: 0; } 

small { font-size: 85%; }
strong, th { font-weight: bold; }

td, td img { vertical-align: top; } 

sub { vertical-align: sub; font-size: smaller; }
sup { vertical-align: super; font-size: smaller; }

pre { 
  padding: 15px; 
  
  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word; /* IE */
}
 
textarea { overflow: auto; } /* thnx ivannikolic! www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */

.ie6 legend, .ie7 legend { margin-left: -7px; } /* thnx ivannikolic! */

/* align checkboxes, radios, text inputs with their label
   by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] { vertical-align: text-bottom; }
input[type="checkbox"] { vertical-align: bottom; }
.ie7 input[type="checkbox"] { vertical-align: baseline; }
.ie6 input { vertical-align: text-bottom; }

/* hand cursor on clickable input elements */
label, input[type=button], input[type=submit], button { cursor: pointer; }
 
/* webkit browsers add a 2px margin outside the chrome of form elements */  
button, input, select, textarea { margin: 0; }

/* colors for form validity */
input:valid, textarea:valid   {  }
input:invalid, textarea:invalid { 
      border-radius: 1px;
    -moz-box-shadow: 0px 0px 5px red; 
 -webkit-box-shadow: 0px 0px 5px red; 
         box-shadow: 0px 0px 5px red;
}
.no-boxshadow input:invalid, 
.no-boxshadow textarea:invalid { background-color: #f0dddd; }


/* These selection declarations have to be separate.
   No text-shadow: twitter.com/miketaylr/status/12228805301 
   Also: hot pink. */
::-moz-selection{ background: #FF5E99; color:#fff; text-shadow: none; }
::selection { background:#FF5E99; color:#fff; text-shadow: none; } 

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

/* make buttons play nice in IE:    
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {  width: auto; overflow: visible; }
 
/* bicubic resizing for non-native sized IMG: 
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img { -ms-interpolation-mode: bicubic; }



/* 
 * Non-semantic helper classes 
 */

/* for image replacement */
.ir { display: block; text-indent: -999em; overflow: hidden; background-repeat: no-repeat; text-align: left; direction: ltr; }

/* Hide for both screenreaders and browsers
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden { display: none; visibility: hidden; } 

/* Hide only visually, but have it available for screenreaders 
   www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden  */
.visuallyhidden { position: absolute !important;    
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px); }

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }

/* >> The Magnificent CLEARFIX: Updated to prevent margin-collapsing on child elements << j.mp/bestclearfix */
.clearfix:before, .clearfix:after {
  content: "\0020"; display: block; height: 0; visibility: hidden;	
} 

.clearfix:after { clear: both; }
/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix { zoom: 1; }


/* Primary Styles
   Author: 2010 mikkok / nitro (http://www.nitro.fi)
*/
html, body {}

body > #wrapper {}


html {overflow-y: scroll;}
body {font-family:Arial, Sans-serif;color:#464646;padding:0;margin:0;} /* For ie6 only */
body {background: #f2f2f2 url('../images/facelift/bg-body.jpg') 50% 0 no-repeat; -moz-background-size: cover; background-size: cover; }
html > body {overflow:hidden;height:100%;width:100%;}

h1, h2, h3, h4 {color: #3d434b;text-align: left;}

p {text-align: left;}
a {text-decoration: none;color:#003977;font-weight:bold;font-size: 12px;}

a:active, a:hover { }
ul { }
li {list-style: none;margin: 0;padding: 0;}
button {border: none;background: none;padding: 0;margin: 0;}

.box {}

.hide-me {display: none;}

.align-left {float: left;}

img.align-left {float: left;margin: 5px 20px 0 0;}

.x-small {font-size: 0.85em;}

.navigation_list, .navigation_list ul {float:left;position:relative;z-index: 3000;padding:0!important;}

.imgLeft{margin-right:10px;margin-bottom:10px;}
.imgRight{margin-left:10px;margin-bottom:10px;}

.panel .panel-overlay, .panel .overlay-background {height:70px!important;}

img.person-thumb {cursor:pointer;}

#background-body {display:none;position:absolute;z-index:-1;}

#acessability ul li ul.navigation_list {float:left;position:relative;margin: 0 0 0 -10px;z-index: 3000;}
																																																														   /*151*/
.navigation_list span {background: url('../images/facelift/icons/icon-plus.gif') no-repeat scroll 168px 1px transparent;background-color:#FFFFFF;border:1px solid #C5D0DA;cursor:pointer;display:block;padding:2px 17px 2px 4px;position:relative;width:163px;font-size:11px;}
.navigation_list span.value, .navigation_list span.text {padding:0;margin:0;background:none;border:0;width:auto;}
ul.navigation_list li {position:relative;float:left;clear:left;z-index:2500;list-style:none!important;}
ul.navigation_list li ul {position:absolute;z-index:800;display:none;width:186px;left:0;top:19px;margin:0;}
ul.navigation_list.over li div.scroll ul {display:block;text-align:left;background:#fff; position:relative;}
ul.navigation_list li div.scroll ul li {margin:0;background:#fff;background-image:none;position:relative;border-top:2px solid #fff;z-index:600;}
ul.navigation_list div.scroll ul li a {display:block;float:left;clear:left;background-color:#f3f6f9;background-image:none;border:1px solid #c5d0da;padding:0 17px 0 10px;width:157px;position:relative;overflow:hidden;color:#485D74;font-weight:normal;z-index:400;text-decoration: none;}
ul.navigation_list div.scroll a:hover{background-color:#a5afba;background-image:none!important;position:relative;color:#485D74!important;}
/*SCROLLER*/
.scroll{height:500px;overflow:hidden;display:none;position:absolute;z-index:2000;width:186px;left:0;top:4px;/*float:left;*/}
.scroll img {z-index:2000;}
.navigation_list.over li .scroll {display:block;}

#acessability { }
#acessability ul {position:relative;float:right;padding:0;}
#acessability li {float:right;}
#acessability li a {float:left;display:block;width:142px;height:24px;background:transparent url('../images/background-accessability-tab.png') top left no-repeat;font-size:11px;font-family:Arial, Sans-serif;font-weight:normal;color:#464646;padding:5px 12px 0 0;position:relative;z-index:4000;}

#acessability ul li ul.navigation_list li{position:relative;float:left;clear:left;}
#acessability ul li ul.navigation_list li ul{position:absolute;z-index:1000;display:block;width:153px;left:0;top:34px;margin:0px;padding-bottom:15px;background-color:transparent;background:url('../images/background-acessability-bottom.png') bottom left no-repeat;text-align:left;}
#acessability ul li ul.navigation_list.over li div.scroll ul{display:block;}
#acessability ul li ul.navigation_list li div.scroll ul li{background:transparent;background-image:none;position:relative;border:none;border-top:2px solid transparent;float:left;}
#acessability ul li ul.navigation_list div.scroll ul li a {display:block;float:left;clear:left;background-color:transparent;background-image:none;border:none;padding:0 10px 0 10px;width:123px;margin-left:4px;position:relative;overflow:hidden;color:#485d74;font-weight:normal;height:auto;}
#acessability ul li ul.navigation_list div.scroll ul li a:hover{background-color:#f3f6f9;background-image:none!important;position:relative;}

#acessability .scroll img{z-index:2000;}
#acessability .scroll .acessability-top{float:left;position:relative;z-index:1000;display:inline;width:153px;left:0;top:0;padding-top:20px;margin-top:20px;background-color:transparent;background:url('../images/background-acessability-top.png') top left no-repeat;}
#acessability .scroll .acessability-bottom {display:none;}
#acessability .navigation_list.over li .scroll{display:block;}
#acessability .scroll{height:500px;overflow:hidden;display:none;position:absolute;z-index:1000;width:153px;left:-153px;top:9px;float:left;background-color:transparent;}

.list-style-black {margin: 0 0 12px 0;}
.list-style-black li {margin: 0 0 0 0;text-align: left;}

.list-style-black a {margin:0 0 0 0;padding:0 0 0 0;color:#07034e;font-family:Arial;font-weight:bold;font-size:12px;}
.list-style-blue {margin: 0 0 20px 0;}
.list-style-blue li {margin: 0 0 0 0;text-align: left;}
.list-style-blue a {margin: 0 0 0 0;padding: 0 0 0 0;color: #003977;font-weight:bold;font-size: 12px;}
.list-style-blue a:active, .list-style-blue a:hover {color:#464646;}

.blue-arrow a, a.blue-arrow {padding:0 0 0 16px;color:#07034e;font-weight:bold;background:url('../images/facelift/icons/icon-arrow-blue.gif') left center no-repeat;}
.blue-arrow a:active, .blue-arrow a:hover, a.blue-arrow:active, a.blue-arrow:hover {color:#464646;background:url('../images/facelift/icons/icon-arrow-grey.gif') left center no-repeat;}

.box-grid_4 {width: 220px;float: left;margin: 20px 0 0 0;}
.box-head-grid_4 {width: 220px;float: left;}
.box-content-grid_4 {border-bottom: 1px solid #d3d7da;border-left: 1px solid #d3d7da;border-right: 1px solid #d3d7da;width: 203px;float: left;padding: 15px 0 0 15px;height: auto;display: inline;position: relative; /* mikkok */}

.navigation .box-content-grid_4 {padding:0;width:218px;text-align:left;border-bottom:none;overflow:hidden;display:inline;}
.navigation .box-content-grid_4 ul {margin:0;float:left;overflow:hidden;}
.navigation .box-content-grid_4 li {border-bottom:1px solid #d3d7da;float:left;width:100%;display:block;}
.navigation .box-content-grid_4 li a {display:block;width:172px;padding:10px 35px 10px 11px;background:url('../images/icons/icon-arrow-grey.gif') no-repeat scroll 183px 13px transparent;font-weight:normal;color:#464646;font-size:11px;}
.navigation .box-content-grid_4 li.active a {font-weight:bold;color:#07044e;background-color:#fafafa;}
.navigation .box-content-grid_4 li a:active, .navigation  .box-content-grid_4 li a:hover {font-weight:bold;color:#07044e;background-color:#fafafa;}
.navigation .box-content-grid_4 ul li ul.child {border-top: 1px solid #d3d7da;background: #ffffff;width: 100%;}
.navigation .box-content-grid_4 ul li ul.child li {border: none;}
.navigation .box-content-grid_4 ul li ul.child li a {/*width:auto;*/width:176px;background: #ffffff url('../images/icons/icon-arrow-small-grey.gif') 14px 10px no-repeat;font-size: 11px;padding: 6px 12px 6px 30px;margin: 2px 0;font-weight:normal;color:#000000;float:left;}

.navigation .box-content-grid_4 ul li.active ul.child li.active a, .navigation .box-content-grid_4 ul li.active ul.child li a:active, .navigation .box-content-grid_4 ul li.active ul.child li a:hover {background: #f2f3f4 url('../images/icons/icon-arrow.gif') 14px 10px no-repeat;}

.box-grid_4 h2, .box-grid_4 h3, .box-grid_4 h4 {font-size:12px;margin:0 0 12px 0;color:#07034e;}
.box-grid_4 p {margin:0 0 12px 0;font-size: 12px;}
	
.pl10 {padding-left:10px!important;}
	
.sp6 { margin: 0 0 6px 0!important; }
.sp7 { margin: 0 0 7px 0!important; }
.sp8 { margin: 0 0 8px 0!important; }
.sp9 { margin: 0 0 9px 0!important; }
.sp10 { margin: 0 0 10px 0!important; }
.sp11 { margin: 0 0 11px 0!important; }
.sp12 { margin: 0 0 12px 0!important; }
.sp14 { margin: 0 0 14px 0!important; }
.sp16 { margin: 0 0 16px 0!important; }
.sp18 { margin: 0 0 18px 0!important; }
.sp20 { margin: 0 0 20px 0!important; }
.sp22 { margin: 0 0 22px 0!important; }

body {background: #f2f2f2 url('../images/facelift/bg-body.jpg') 50% 0 no-repeat; -moz-background-size: cover; background-size: cover; }

#wrapper{width:970px;position:relative;overflow:hidden;margin:0 auto;z-index:1;background:transparent url('../images/facelift/bg-wrapper.png') top left repeat-y;}
#header {}
#logo {text-align: left;float: left;position:relative;margin: 0 0 0 0;border: none;}
#logo a { text-decoration:none;border:none;}
#logo img { border:none;}

#navigation-and-search {width: 960px;}
#navigation-and-search ul {margin:0 0 0 1px;}
#navigation-and-search li {float: left;display: block;}
#navigation-and-search li a {display: block;float: left;height: 42px;text-indent:-9999px;background-image:url('../images/facelift/en/bg-navigation.gif');background-repeat:no-repeat;}
body.lang-ru #navigation-and-search li a {background-image:url('../images/facelift/ru/bg-navigation.gif');}

a.home {width:91px;background-position:0 0;}
a.about-us {width:112px;background-position:-91px 0;}
a.products-and-services {width:214px;background-position:-203px 0;}
a.aircraft-and-engines {width:200px;background-position:-417px 0;}
a.certificates {width:130px;background-position:-617px 0;}

a.home:active, a.home:hover {background-position:0 -42px;}
a.about-us:active, a.about-us:hover {background-position:-91px -42px;}
a.products-and-services:active, a.products-and-services:hover {background-position:-203px -42px;}
a.aircraft-and-engines:active, a.aircraft-and-engines:hover {background-position:-417px -42px;}
a.certificates:active, a.certificates:hover {background-position:-617px -42px;}

body#home a.home { background-position:0 -42px;}
body#about-us a.about-us, body#about-us-ru a.about-us { background-position:-91px -42px;}
body#products-and-services a.products-and-services, body#products-and-services-ru a.products-and-services { background-position:-203px -42px;}
body#aircraft-and-engines a.aircraft-and-engines, body#aircraft-and-engines-ru a.aircraft-and-engines { background-position:-417px -42px;}
body#certificates a.certificates, body#certificates-ru a.certificates { background-position:-617px -42px;}

#navigation-and-search li.search-form {float:right;position:relative;}
#navigation-and-search li form {position:absolute;right:0;top:0;overflow:hidden;width:213px;height:42px;margin:0 -1px 0 0;padding:0;background:url('../images/facelift/bg-search.gif') top left no-repeat;}

.search-form input.query_val {color:#464646;font-size:11px;width:115px;height:18px;border:none;background: url('../images/input-search-field.png') top left no-repeat;float:left;padding:3px 10px;margin:10px 0 0 24px;}
.search-form input.submit-search {float: left;margin:10px 0 0 0;}

#ie-center {}

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

Main content. All columns.

--------------------------------------------------*/
#content {background:none;float:left;text-align:left;padding:0 0 10px 0;}
#breadcrumps {text-align: left;float: left;margin: 16px 0 0 0;}
#breadcrumps ul {margin: 0;}
#breadcrumps li {float: left;margin: 0 5px 0 0;}
#breadcrumps li a {font-size: 11px;color: #464646;font-weight:normal;}
#breadcrumps li.active a {font-weight:bold;}

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

Dynamic content rules

--------------------------------------------------*/
.content-canvas, .contact-info {padding: 25px 0 0 0;float: left;width: 460px;font-size: 12px;}
.grid_12 .content-canvas {width: 700px;}

.contact-info a {text-decoration: underline;}
.content-canvas p, .grid_12 .content-canvas p {line-height:1.5em;margin:0 0 16px 0;font-size:12px;}
.content-canvas ul, .grid_12 .content-canvas ul {margin: 0 0 16px 0;}
.content-canvas h1 {font-weight:bold;font-size:20px;color:#464646;text-transform:uppercase;margin:0 0 20px 0;}
.content-canvas h2 {font-weight:bold;font-size:15px;color:#464646;margin:0 0 10px 0;}
.content-canvas h3 {font-weight:normal;font-size:14px;color:#464646;margin:0 0 12px 0;text-transform:uppercase;}
.content-canvas h4 {font-weight:normal;font-size:14px;color:#464646;margin:0 0 3px 0;text-transform:uppercase;}
.content-canvas a {color:#464646;text-decoration:underline;font-size:12px;font-weight:normal;}
.content-canvas a:hover, .content-canvas a:active {color:#003977;}
.content-canvas blockquote {text-align: left;border: 1px solid #d3d7da;width: 95%;padding: 12px 10px 0 10px;margin: 0 0 16px 0;background-color: #f9f9f9;}
.content-canvas blockquote ul {margin: 0 0 16px 15px;}
.content-canvas blockquote li {list-style-type: disc;}
.content-canvas ul {margin: 0 0 20px 20px;padding: 0 0 0 12px;}
.content-canvas ol {margin: 0 0 20px 24px;padding: 0 0 0 12px;}
.content-canvas ul li {margin: 0 0 0 0;text-align: left;list-style-type: disc;}
.content-canvas ol li {list-style-type: decimal;}
.content-canvas ul.list-style-blue { margin-left: 0; }
.content-canvas ul.list-style-blue li { list-style-type:none;}
.content-canvas ul.list-style-blue li a {padding: 0 0 0 16px;color: #464646;font-weight: bold;text-decoration: none;background: url('../images/facelift/icons/icon-arrow-blue.gif') left center no-repeat;}
.content-canvas li a:active, .content-canvas li a:hover, .grid_12 .content-canvas li a:active, .grid_12 .content-canvas li a:hover  {color:#003977;}

table.contentTable {}
table.contentTable tr {}
table.contentTable td {padding:5px;}

table.accessability-table {float: left;}
table.accessability-table th {padding: 0 30px 12px 0;text-align: left;font-size: 12px;}
table.accessability-table td {padding: 0 30px 12px 0;text-align: left;}
div.capability-list-wrapper {float: left;height: 550px;overflow: scroll;width: 700px;overflow-x:hidden;}
table.capability-list-table {float: left;width: 690px;}
table.capability-list-table tr.even td {background-color: #f2f3f4;}
table.capability-list-head {margin-bottom: 0;}

.capability-list-table .capa-part-no {width: 132px;padding-left: 5px;}
.capability-list-table .capa-description{width: 251px;}
.capability-list-table .capa-repair-level{width: 55px;}
.capability-list-table .capa-repair-approval{width: 84px;}
.capability-list-table .capa-effectivity{width: 163px;}
.capability-list-table th.capa-part-no {width: 117px;}
.capability-list-table th.capa-description{width: 236px;}
.capability-list-table th.capa-repair-level{width: 40px;background: url('/images/icons/icon_info.gif') no-repeat 39px 0%;}
.capability-list-table th.capa-repair-approval{width: 69px;}
.capability-list-table th.capa-effectivity{width: 148px;}
.capability-list-table .surplus-part-no{width: 137px;padding-left: 5px;}
.capability-list-table .surplus-description{width: 231px;}
.capability-list-table .surplus-condition{width: 250px;}
.capability-list-table .surplus-qty{width: 67px;}
.capability-list-table th.surplus-part-no{width: 122px;}
.capability-list-table th.surplus-description{width: 216px;}
.capability-list-table th.surplus-condition{width: 235px;}
.capability-list-table th.surplus-qty{width: 52px;}

table.capability-list-table th {text-align: left;font-size: 10px;padding: 0 15px 20px 0;}
table.capability-list-table th.sorted {padding-right: 0;}
table.capability-list-table th.sorted span.asc{padding-right: 15px;background: url('../images/sortAsc.jpg') no-repeat right 2px;}
table.capability-list-table th.sorted span.desc{padding-right: 15px;background: url('../images/sortDesc.jpg') no-repeat right 2px;}
table.capability-list-table td {text-align: left;font-size: 10px;padding: 3px 0 3px 0;}

.content-canvas .contacts, .contact-info .contacts {float: left;width: 460px;}
.contacts .contact {float: left;width: 460px;margin: 0 0 37px 0;}

.mobile, .phone {padding: 2px 0 2px 25px;}
.mobile {background: url('../images/icons/icon-mobile.gif') 5px 0 no-repeat;}
.phone {background: url('../images/icons/icon-phone.gif') 5px 0 no-repeat;}

form#contact-form {margin: 0;padding: 0;}
form#contact-form label {font-weight: bold;}
form#contact-form input, form#contact-form textarea#message {border-top: 1px solid #aaadb2;border-right: 1px solid #dcdfe6;border-bottom: 1px solid #e2e9ef;border-left: 1px solid #dcdfe6;padding: 3px 5px;}
form#contact-form textarea#message {width: 420px;height:114px;font-family:Arial;color:#464646;font-size:11px;float: left;}
form#contact-form input#submit_contact_form {float: right;margin: 7px 18px 0 0;position:relative;z-index: 1;border: none;}
form#contact-form input#sex_mr, form#contact-form input#sex_ms, form#contact-form input#sex_mrs {border: none;}

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

Landing page boxes

--------------------------------------------------*/
.grid_6 .products-and-services, .grid_6 .select-your-fleet, .grid_6 .contact, .grid_6 .finnair-aog-desk {float: left;width: 340px;height: 235px;margin: 20px 0 0 0;background: #DDDDDD;}
.grid_6 .products-and-services {background: url('../images/facelift/en/bg-products-and-services.gif') top left no-repeat;width: 327px;height: 125px;padding: 110px 0 0 13px;display: inline;}
	body.lang-ru .grid_6 .products-and-services {background: url('../images/facelift/ru/bg-products-and-services.gif') top left no-repeat;}
.grid_6 .select-your-fleet {background: url('../images/facelift/en/bg-select-your-fleet.gif') top left no-repeat;width: 327px;height: 125px;padding: 110px 0 0 13px;display: inline;}
	body.lang-ru .grid_6 .select-your-fleet {background: url('../images/facelift/ru/bg-select-your-fleet.gif') top left no-repeat;}
.grid_6 .contact {background-color: #ffffff;}
.grid_6 .finnair-aog-desk {background-color: #ffffff;}
.grid_6 .finnair-aog-desk img {display:block;}
.grid_6 .finnair-aog-desk .inner-box, .grid_6 .contact .inner-box {float: left;/*margin: 29px 0 0 13px;*/margin: 29px 0 0 13px;}
.grid_6 .finnair-aog-desk .finnair-aog-desk-content, .grid_6 .contact .contact-content {border: 1px solid #d3d7da;float: left;width: 338px;border-top:0;background: url('../images/facelift/en/bg-finnair-aog-desk.gif') no-repeat 100% 100%;padding-bottom:46px;}
.grid_6 .contact .contact-content {background: url('../images/contact-bg.jpg') no-repeat 100% 100%;}
.grid_6 .contact img {display:block;}
.grid_6 .contact h3, .grid_6 .finnair-aog-desk h3 {font-family:Arial, Sans-serif;font-size:12px;margin:0 0 12px 0;color:#07034e;}
.grid_6 .contact p, .grid_6 .finnair-aog-desk p {margin: 0 0 12px 0;font-size: 12px;}
.grid_6 .contact p a, .grid_6 .finnair-aog-desk p a {color: #000000;font-weight: normal;text-decoration: underline;margin: 0;}

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

Sidebar, news etc.

--------------------------------------------------*/
.grid_4 .lift {float:left;width:220px;margin:20px 0 0 0;}
.grid_4 .news { }
.grid_4 .news h3 {margin: 0 0 0 0;}
.grid_4 .news .box-head-grid_4 h2 {text-indent:-3000px;width:220px;height:35px;background: url('../images/facelift/en/bg-head-news.gif') top left no-repeat;margin:0;}

.grid_4 .cabability-list {}
.grid_4 .cabability-list h3 {margin: 0 0 10px 0;}
.grid_4 .cabability-list .box-head-grid_4 h2 {text-indent: -3000px;width: 220px;height: 35px;background: url('../images/facelift/en/bg-head-cabability-list.gif') top left no-repeat;margin: 0;}
	body.lang-ru .grid_4 .cabability-list .box-head-grid_4 h2 {background: url('../images/facelift/ru/bg-head-cabability-list.gif') top left no-repeat;}
.grid_4 .cabability-list p {margin: 0 0 8px 0;}
.grid_4 .cabability-list ul {margin: 0 0 12px 0;}
.grid_4 .cabability-list .search-form, .grid_12 .search-form {margin: 0 0 16px 0;*margin:0;float: left;position: relative;display: inline;}
.grid_4 .cabability-list .search-form input.query_val, .grid_12 .search-form div.query_val {width: 115px;height: 18px;border: none;background: transparent url('../images/input-search-field-grey.png') top left no-repeat;float: left;padding: 3px 10px;margin: 0 0 0 0;}
.grid_12 .search-form div.query_val input {background-color: #f7f7f7;width: 124px;}
.grid_4 .cabability-list .search-form input.submit-search, .grid_12 .search-form input.submit-search {float: left;margin: 0 0 0 0;position: relative;}

.grid_4 .material-sales {}
.grid_4 .material-sales h3 {margin: 0 0 2px 0;}
.grid_4 .material-sales .box-head-grid_4 h2 {text-indent: -3000px;width: 220px;height: 35px;background: url('../images/facelift/en/bg-head-material-sales.gif') top left no-repeat;margin: 0;}
	body.lang-ru .grid_4 .material-sales .box-head-grid_4 h2 {text-indent: -3000px;width: 220px;height: 35px;background: url('../images/facelift/ru/bg-head-material-sales.gif') top left no-repeat;margin:0;}

.grid_4 .about-us {}
.grid_4 .about-us .box-head-grid_4 h2 {text-indent: -3000px;width: 220px;height: 35px;background: url('../images/facelift/en/bg-head-about-us.gif') top left no-repeat;margin: 0;}
	body.lang-ru .grid_4 .about-us-ru .box-head-grid_4 h2 {background: url('../images/facelift/ru/bg-head-about-us.gif') top left no-repeat;text-indent: -3000px;width: 220px;height: 35px;margin:0;}

.grid_4 .aircraft-and-engines {}
.grid_4 .aircraft-and-engines .box-content-grid_4 {padding: 0;width: 218px;text-align: left;border-bottom: none;}
.grid_4 .aircraft-and-engines .box-head-grid_4 h2 {text-indent: -3000px;width: 220px;height: 35px;background: url('../images/facelift/en/bg-head-aircraft-and-engines.gif') top left no-repeat;margin: 0;}
	body.lang-ru .grid_4 .aircraft-and-engines-ru .box-head-grid_4 h2 {text-indent: -3000px;width: 220px;height: 35px;background: url('../images/facelift/ru/bg-head-aircraft-and-engines.gif') top left no-repeat;margin: 0;}

.grid_4 .certificates {}
.grid_4 .certificates .box-content-grid_4 {padding: 0;width: 218px;text-align: left;border-bottom: none;}
.grid_4 .certificates .box-head-grid_4 h2 {text-indent: -3000px;width: 220px;height: 35px;background: url('../images/facelift/en/bg-head-certificates.gif') top left no-repeat;margin: 0;}
	body.lang-ru .grid_4 .certificates-ru .box-head-grid_4 h2 {text-indent: -3000px;width: 220px;height: 35px;background: url('../images/facelift/ru/bg-head-certificates.gif') top left no-repeat;margin: 0;}

.grid_4 .home {}
.grid_4 .home .box-head-grid_4 h2 {text-indent: -3000px;width: 220px;height: 35px;background: url('../images/background-home-head.png') top left no-repeat;margin: 0;}
.grid_4 .home-ru .box-head-grid_4 h2 {text-indent: -3000px;width: 220px;height: 35px;background: url('../images/background-home-head.png') top left no-repeat;margin: 0;}

.grid_4 .contact {}
.grid_4 .contact .box-head-grid_4 h2 {text-indent: -3000px;width: 220px;height: 35px;background: url('../images/facelift/en/bg-head-contact.gif') top left no-repeat;margin: 0;}
	body.lang-ru .grid_4 .contact .box-head-grid_4 h2 {background:url('../images/facelift/ru/bg-head-contact.gif') top left no-repeat;}
.grid_4 .products-and-services {}
.grid_4 .products-and-services .box-head-grid_4 h2 {text-indent: -3000px;width: 220px;height: 35px;background: url('../images/facelift/en/bg-head-products-and-services.gif') top left no-repeat;margin: 0;}
	body.lang-ru .grid_4 .products-and-services-ru .box-head-grid_4 h2 {text-indent: -3000px;width: 220px;height: 35px;background:url('../images/facelift/ru/bg-head-products-and-services.gif') top left no-repeat;margin:0;}
	
#footer {background: transparent url('../images/facelift/bg-footer.png') 1px 0 no-repeat;height:65px;margin:0 auto;width:970px;position:relative;z-index:999;}
#footer span, #footer a {font-size: 10px;color: #464646;font-weight:normal;}
#footer .center {padding: 20px 0;display: block;text-align:center;}

/*
 * Media queries for responsive design
 * These follow after primary styles so they will successfully override. 
 */

@media all and (orientation:portrait) { 
  /* Style adjustments for portrait mode goes here */
  
}

@media all and (orientation:landscape) { 
  /* Style adjustments for landscape mode goes here */
  
}

/* Grade-A Mobile Browsers (Opera Mobile, iPhone Safari, Android Chrome)  
   Consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {
  
  
  /* Uncomment if you don't want iOS and WinMobile to mobile-optimize the text for you
     j.mp/textsizeadjust 
  html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } */
}

/* 
 * print styles
 * inlined to avoid required HTTP connection www.phpied.com/delay-loading-your-print-css/ 
 */
@media print {
  * { background: transparent !important; color: #444 !important; text-shadow: none !important; }
  a, a:visited { color: #444 !important; text-decoration: underline; }
  a:after { content: " (" attr(href) ")"; } 
  abbr:after { content: " (" attr(title) ")"; }
  .ir a:after { content: ""; }  /* Don't show links for images */
  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  thead { display: table-header-group; } /* css-discuss.incutio.com/wiki/Printing_Tables */ 
  tr, img { page-break-inside: avoid; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3{ page-break-after: avoid; }
}
