@charset "utf-8";

/* ------------------------------------
 * --        TABLE OF CONTENT        --
 * ------------------------------------
 * 1. Global CSS reset
 * 2. Typografia (typography)
 * 3. Listy (lists)
 * 4. Tabele (tables)
 * 5. Formularze (forms)
 * 6. Często używane klasy (common classes)
 * 7. Layout
 */

/* ------------------------------------ *
 * --           1. RESET             -- *
 * ------------------------------------ */

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, 
pre, a, abbr, acronym, address, cite, code, del, dfn, em, font, img, ins, kbd, 
q, samp, small, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, hr, 
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td { 
	margin: 0; 
	padding: 0; 
}

html, body  {
	background: #eaf1fb;
	color: #5b5b5b;
	font-family: Tahoma, Geneva, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 1.5;		
	text-align: left;
}

:root { overflow-y: scroll !important; }

img, fieldset { border: 0 none; outline: 0 none; }

form :focus, a:focus { outline: 0 none; }  

a, em, span, acronym, abbr, q, cite {
  color: inherit;	
	font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-variant: inherit;	
  font-weight: inherit;
}

em { font-style: italic; }

strong { font-weight: bold; }

em strong, strong em {
  font-style: italic;
	font-weight: bold;
}

acronym, abbr {
	border-bottom: 1px dotted;	
	cursor: help;
}

q, cite, blockquote { quotes: none; }

a:link, a:active, a:visited, a:hover { 
	color: #00f;
	font-weight: bolder;
	text-decoration: underline;
}

a:hover {
	color: #333;
	text-decoration: none;
}

/* ------------------------------------ *
 * --        2. TYPOGRAPHY           -- *
 * ------------------------------------ */

h1, h2, h3, h4, h5, h6 {
	font-family: 	Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bolder;
	padding-bottom: 6px;
}

h1 { font-size: 14px; } 

h2 { 

}

h2.blue { font-size: 14px; }

h3 {
	
}

h4, h5, h6 { padding-bottom: 0; }

h4, h5, h6 { 

}

h5 {
	
}

h6 { 

}

p, address, ul, ol, dl {
	font-style: normal;
	font-weight: normal;
	padding-bottom: 18px;
}

/* ------------------------------------ *
 * --           3. LISTS             -- *
 * ------------------------------------ */

ol, ul { list-style: none; }

ol ul, ul ul { padding-bottom: 0; }

ol ul li, ul ul li { 
	padding-bottom: 1px;
	padding-top: 1px;
}

/* list 1 */
ul.bulleted-01 li {
	background: url(../img/common/bull-01.png) no-repeat 18px 7px;
	padding-left: 40px;
	color: #6097e0;
}

ul.bulleted-01 li a {
	color: #6097e0 !important;
	text-decoration: none !important;	
}

ul.bulleted-01 li a:hover{ text-decoration: underline !important; }

/* list 2 */
ul.bulleted-02 li {
	background: url(../img/common/bull-02.gif) no-repeat 6px 6px;
	padding-left: 24px;
}

ul.bulleted-02 * { color: #6097e0 !important; }

/* list 3 */
ol.numbered {
	list-style: decimal-leading-zero outside;
	margin-left: 40px;
}

/* nested lists */
ol ul.bulleted-01 li, ul ul.bulleted-01 li {
	background: url(../img/common/bull-01.gif) no-repeat 2px 8px;
	padding-left: 22px;
}
ol ul.bulleted-02 li, ul ul.bulleted-02 li {
	background: url(../img/common/bull-02.gif) no-repeat 0 3px;
	padding-left: 22px;
}

/* ------------------------------------ *
 * --           4. TABLES            -- *
 * ------------------------------------ */

table { /* 'cellspacing="0"' in code */
	border: 0 none;
	border-collapse: collapse;
	border-spacing: 0;
}

th, td {
	background: #aac8ef;
	padding: 5px;
	text-align: left;
	vertical-align: top;	
}

th {
	font-weight: bold;
	background: #2b75d6;
	border-bottom: 1px solid #f1f1f1;
	color: #fff;
}

.everySecond td { background: #d7e5f8; }

caption {
	caption-side: top;
	font-weight: bolder;
	padding: 0 0 5px 5px;
	text-align: left;
}

/* ------------------------------------ *
 * --           5. FORMS            -- *
 * ------------------------------------ */

form { margin-bottom: 18px; }

textarea { overflow: auto; }

/* buttons */
.button {
	background: #666666 url(../img/common/button-01.gif) no-repeat 0 0;
	border: medium none;
	color: #fff;
	cursor: pointer;
	display: block;
	font: bold 11px/24px Arial, Helvetica, sans-serif;
	height: 24px;
	margin: 0;
	padding: 0 0 3px;
	text-align: center;	
	width: 90px;
}

.button:hover { background: #ff8c00 url(../img/common/button-01.gif) no-repeat 0 -24px; }

/* messages */
.failure, .success {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	margin: 0 10px 18px; 
	padding: 9px 10px 9px 60px;		
}
.failure { 
	background: #fbe3e4 url(../img/common/error.gif) no-repeat 18px 50%;
	border: 1px solid #dc1919;
	color: #dc1919;
}

.failure a {
	color: #ff7348 !important;
	border: 0 none !important;
}

.failure a:hover { text-decoration: underline; }

.success { 
	background: #e6efc2 url(../img/common/success.gif) no-repeat 18px 50%;
	border: 1px solid #c6d880;
	color: #264409;
}

/* ------------------------------------ *
 * --       6. COMMON CLASSES        -- *
 * ------------------------------------ */

.fl_l { float: left !important; }

img.fl_l { margin: 0 12px 12px 0; }

.fl_r { float: right !important; }

img.fl_r { margin: 0 0 12px 12px; }

.clear { clear: both; }

.bold { font-weight: bold; }

.noBorder { border: 0 none !important; }

.uppercase { text-transform: uppercase; }

.blue { color: #2b75d6 !important; }

.blue a { color: #2b75d6 !important; }

.orange { color: #f77f00 !important; }

.orange a { color: #f77f00 !important; }

.blue a, .orange a { text-decoration: none !important; }

.blue a:hover, .orange a:hover { text-decoration: underline !important; }

.thin { font-weight: normal !important; }

.section {
	border-bottom: 1px solid #f77f00;
	margin-bottom: 18px;
	overflow: hidden;
}

/* ------------------------------------ *
 * --        7. LAYOUT        -- *
 * ------------------------------------ */

/* common for few blocks */
#wrapper, #contentWrapper, #masthead, #footer, #content, #sidebar, #sideCol, #mainCol, .logo, .logo a {
	overflow: hidden;
}

#masthead, #contentWrapper {
	background: url(../img/common/page-mid.gif) repeat-y 0 0;
	padding: 0 50px;
	position: relative;
}

#contentWrapper { padding-bottom: 18px; }

/* main block */

#wrapper {
	background: url(../img/common/page-top.gif) no-repeat 0 0;
	width: 1040px;
	margin: 15px auto 0;
	padding: 25px 0 0;
}

#masthead {
	height: 145px;
	width: 940px;
}

/* logo */
h1.logo, h1.logo a {
	height: 76px;
	width: 286px;
}

h1.logo {
	background: url(../img/common/logo.jpg) no-repeat 0 0;
	margin-top: 3px;
	padding: 0;	
}

h1.logo a {
	display: block;
	text-indent: -9999px;
}

#flash01 {
	width: 554px;
	height: 76px;
	position: absolute;
	top: 3px;
	right: 0;
	background: #fff url(../img/common/flash-subsitute.gif) no-repeat 0 0;
}

/* left panel */
#content {
	float: left;
	padding: 0 10px 0 0;
	width: 710px;
}

#breadcrumbs {
	font: normal 17px/34px Tahoma, Geneva, Arial, Helvetica, sans-serif;
	color: #f77f00;
	margin-bottom: 28px;
}

#breadcrumbs a {
	color: #f77f00;
	font-weight: normal !important;
	text-decoration: none !important;
}

#breadcrumbs strong a { font-weight: bold !important; }

#breadcrumbs a:hover { text-decoration: underline !important; }

#sideCol {
	width: 228px;
	float: left;
	padding: 0 12px 104px 0;
}

#mainCol {
	width: 470px;
	float: right;
}

.sideNav { font: bold 14px/1.2 "Trebuchet MS", Helvetica, sans-serif; }

.sideNav li { padding: 2px 0; }

.sideNav li a {
	text-decoration: none !important;
	color: #2b75d6 !important;
	display: block;
	padding: 1px 5px;
}

.sideNav li a:hover { background: #fff url(../img/common/active.gif) repeat-y 0 0; }

.sideNav li ul a:hover {
	color: #2b75d6 !important;
	background: #fff url(../img/common/active-sub.gif) repeat-y 0 0;	
}

.sideNav li ul li { padding-left: 16px; }

.sideNav li ul a { color: #f77f00 !important; }

.sideNav li a.active {
	color: #2b75d6 !important;
	background: #fff url(../img/common/active.gif) repeat-y 0 0 !important;	
}

.sideNav li ul a.active {
	background: #fff url(../img/common/active-sub.gif) repeat-y 0 0 !important;	
	color: #2b75d6 !important;
}

/* right side panel */
#sidebar {
	float: right;
	width: 220px;
	padding: 0 0 108px 0;
}

.searchFrm fieldset {
	width: 215px;
	height: 33px;
	background: url(../img/common/search-bg.gif) no-repeat 0 0;
	position: relative;
	margin-bottom: 29px;
}

.searchFrm .keyword {
	border: 0 none;
	width: 170px;
	margin: 6px 0 0 5px;
	padding: 2px;
	color: #aac8ef;
	font: normal 13px/1 "Trebuchet MS", Helvetica, sans-serif;
}

.goSearch {
	width: 33px;
	height: 33px;
	padding: 0 !important;
	margin: 0 !important;
	border: 0 none !important;
	background: url(../img/common/search-but.gif) no-repeat 0 0;	
	position: absolute;
	overflow: hidden;
	text-indent: -9999px;
	top: 0;
	right: 0;
	cursor: pointer;
}

#sidebar .box { padding: 10px; }

.grad01 { background: url(../img/common/grad-01.gif) no-repeat 0 0;	}

.grad02 { background: url(../img/common/grad-02.gif) no-repeat 0 0; }

#sidebar h4 { padding-bottom: 6px; }

#sidebar h3, .clients h3, #sidebar legend, .subscrFrm label, .enquiryFrm label {
	color: #6097e0;
	font: normal 18px "Trebuchet MS", Helvetica, sans-serif;
	padding-bottom: 3px;
}

.sideInfo p, .sideInfo a {
	color: #aac8ef !important;	
	font-weight: normal;
}

#sidebar .news h4, #sidebar .contact strong {
	color: #f77f00;
	font: normal 15px Tahoma, Geneva, Arial, Helvetica, sans-serif;
	padding-bottom: 2px;
}

#sidebar .contact strong {
	display: block;
	font-weight: bolder;
}

#sidebar .contact span {
	display: block;
	font: normal 12px/1.2 Tahoma, Geneva, Arial, Helvetica, sans-serif;
	padding-bottom: 4px;
	color: #aac8ef;
}

#sidebar .contact span a {
	color: #aac8ef !important;
	font-weight: normal;	
}

#sidebar .contact strong a {
	color: #f77f00 !important;
	text-decoration: none !important;
}

#sidebar .contact strong a:hover { text-decoration: underline !important; }

#sidebar .news h4 a {
	color: #f77f00 !important;
	text-decoration: none !important;
	font-weight: normal !important;
}

#sidebar .news h4 a:hover { text-decoration: underline !important; }

#sidebar p {
	padding-bottom: 6px;
	font: normal 12px/1.4 Tahoma, Geneva, Arial, Helvetica, sans-serif;
}

#sidebar .box > p:first-child { padding-bottom: 10px; }

#sidebar .news p {
	color: #aac8ef;
	line-height: normal;
}

.downloads {
	height: 68px;
	width: 208px;
	padding: 0 0 0 20px;
	position: absolute; left: 50px; bottom: 18px;
}

.downloads a {
	display: block;
	overflow: hidden;
	text-indent: -9999px;
	height: 67px;
	width: 48px;
	float: left;
}

.pcast-dl {
	background: url(../img/common/dl-pcast.gif) no-repeat 0 0;
	margin-right: 20px;
}

.pdf-dl { background: url(../img/common/dl-pdf.gif) no-repeat 0 0; }

.clients {
	height: 96px;
	width: 220px;
	overflow: hidden;	
	position: absolute; right: 50px; bottom: 18px;
}

#clientsPresentation {
	/*background: url(../img/common/clients-substitute.gif) no-repeat 0 0;	*/
	height: 64px;
	width: 220px;
	margin-top: 6px;
}

/* footer */
#footer {
	width: 1040px;
	font: 11px/1 Verdana, Geneva, Arial, Helvetica, sans-serif;
}

#footer * { color: #2b75d6 !important; }

#bottomNav {
	background: url(../img/common/footer.gif) no-repeat 0 0;
	height: 12px;
	overflow: hidden;
	padding: 16px 50px;
}

#bottomNav li {
	float: left;
	border-left: 1px solid;
	padding: 0 5px;
}

#bottomNav li:first-child {
	border: 0 none;
	padding: 0 5px 0 0;
}

#footer a {
	text-decoration: none !important;	
	font-weight: normal !important;
}

#footer a:hover {	text-decoration: underline !important; }

#footer p {
	font-size: 9px;
	line-height: 1.2;
	padding: 15px 50px;
}

.credit { float: right; }

.box-mid {
	width: 456px;
	background: url(../img/common/callout-mid.gif) repeat-y 0 0;	
	position: relative;
	margin-bottom: 15px;
}

.box-bot { background: url(../img/common/callout-bot.gif) no-repeat 0 100%; }

.box-top { background: url(../img/common/callout-top.gif) no-repeat 0 0; }

.box-content {
	height: 144px;
	overflow: hidden;
	padding: 0 10px 0 155px;
}

.box-content h2 {
	font: bolder 17px/20px Tahoma, Geneva, Arial, Helvetica, sans-serif;
	color: #f77f00;
}

.box-content h2 span {
	font: bolder 14px/20px "Trebuchet MS", Helvetica, sans-serif;
	color: #2b75d6;
	display: block;
	padding-top: 6px;
}

.box-content p {
	font: normal 12px/1.2 Tahoma, Geneva, Helvetica, sans-serif;
	padding-bottom: 6px;
}

p.more { text-align: right; }

p.more a, a.more {
	padding-right: 16px;
	background: url(../img/common/more.png) no-repeat 100% 4px;
	color: #2b75d6 !important;
	text-decoration: none !important;
}

p.more a:hover, a.more:hover { color: #f77f00 !important; }

#choosingTalent { background: url(../img/common/box-01.jpg) no-repeat 0 0; }

#devTalent { background: url(../img/common/box-02.jpg) no-repeat 0 0; }

#engagingTalent { background: url(../img/common/box-03.jpg) no-repeat 0 0;	 }

#sidebar .bulleted-01 { padding: 6px 0 4px; }

#sidebar .bulleted-01 li {
	background: url(../img/common/bull-01.png) no-repeat 0 7px;
	padding-left: 22px;
	padding-bottom: 4px;
	color: #6097e0;
}

#sidebar .bulleted-01 li a { font-weight: normal !important; }

#sidebar .bulleted-01 li a:hover {
	color: #f77f00 !important;
	text-decoration: none !important;	
}

#sidebar .bulleted-01 li a.active {
	color: #f77f00 !important;
	font-weight: bolder !important;
}

#mainCol > p:first-child, #mainCol > h2:first-child + p, 
#mainCol > h2:first-child +h3 + p, .firstOfType {
	font-size: 14px;	
}

.sColImg {
	display: block;
	margin-bottom: 18px;
}

.members .section {
	margin: 0 auto 18px;
	padding-bottom: 18px;
}

.section.last { border-bottom: 0 none; }

.members img {
	display: block;
	float: left;
}

.members .text { margin-left: 80px; }

.members .text p { padding-bottom: 0; }

.members .text p.more { padding-top: 10px; }

.memberPhoto { float: left; }

.memberInfo { margin-left: 160px; }

#mainCol .inner {
	width: 394px;
	margin: 0 auto;
}

#mainCol .innerWide {
	width: 450px;
	margin: 0 auto;
}

.mainImg {
	display: block;
	margin-bottom: 12px;
}

.eventsTbl td, .eventsTbl th {
	border: 0 none;
	background: none;
}

.eventsTbl { margin-bottom: 12px; }

.eventsTbl th {
	color: #f77f00;
	width: 15%;
}

.eventsTbl td { width: 80%; }

.r-col {
	width: 150px;
	padding: 0 6px 0 0;
	overflow: hidden;
	float: left;
}

.l-col { margin-left: 156px; }

.top {
	border-top: 1px solid #f77f00;	
	margin-top: 4px;
}

.diff {
	padding-top: 4px;
	margin-bottom: 0;
}

h2 span { display: block; }

.movieContainer {
	width: 270px;
	overflow: hidden;
	padding-bottom: 6px;
}

.subscrFrm { margin-top: 20px; }

.subscrFrm label, .enquiryFrm label {
	display: block;
	color: #f77f00;	
}

.textInput {
	padding: 2px;
	border: 1px solid #3f69a1;
}

.subscrFrm .textInput { width: 190px; }

.subscrFrm li { padding: 0 0 6px; }

.subscrFrm fieldset + fieldset {
	text-align: right;
	padding-right: 4px;
}

.nls .section {
	padding: 12px 0 0;
	margin-bottom: 0;
}

.nls .section p { padding-bottom: 12px; }

.nls .section:first-child { padding-top: 0; }

.section blockquote, .section cite { font-weight: bolder; font-style: normal;}

.section cite, .section cite span { display: block; 	padding-bottom: 6px}

.section cite { padding-bottom: 12px; }

.section blockquote p {
	padding-bottom: 6px !important;
	font-weight: bolder;
}

.enquiryFrm {
	width: 372px;
	padding: 10px;
	background: url(../img/common/e-frm-bg.gif) no-repeat 0 0;
	margin: 0 auto;
}

.enquiryFrm label { padding: 12px 0 6px; }

.enquiryFrm > ul > li:first-child label { padding: 0 0 6px; }

.enquiryFrm .textInput { width: 364px; }

.enquiryFrm fieldset { text-align: right; }

.enquiryFrm textarea { height: 120px; }

/* FIXED STYLES FOR CONTENT */
#mainCol table
{
	width: 100% !important;
}
#mainCol td
{
	background-color: #FFFFFF !important;
}

.wrappedImage
{
	float: left;
	padding: 3px 3px 0px 3px;
}

/* Special style rules for CMS content */
.contentStyle * li 
{
	background: url(../img/common/bull-01.png) no-repeat 18px 7px;
	color: #5b5b5b !important;
}

.contentStyle ul li
{
	padding-left: 40px;
}

.contentStyle * ul li a:hover{ text-decoration: underline !important; }

.contentStyle blockquote
{
	padding-left: 30px;
}

.contentStyle ol > li
{
	list-style-type:decimal;
	background-image: url(none);
}

.contentStyle ol
{
	padding-left: 40px;
}

/* Style fixing content hard-coded in the views */
.no_image
{
	background-image: url(none) !important;
	padding-left: 0px !important;
}

/* Blue content colour definition */
.blue_content
{
	color: #00f !important;
}