@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 oraz używane do debugowania (common & debugging classes)
 * 7. Master layout
 * 8. Pozostałe elementy (other elements)
 */

/* ------------------------------------ *
 * --           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, b, i { 
	margin: 0; 
	padding: 0; 
}

html, body  {
	background: #bec5c7;
	color: #000;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 16px;		
	min-width: 968px;
	text-align: left;
	width: 100%;	
}

html > body {
	position: absolute;
	min-height: 100%;
}


/* przełączanie tła */

.homePage {
	background: #bec5c7 url(../../img/common/home-bg.jpg) no-repeat center -54px; /* było -34 jeszcze linia 500 - zmniejszyłem wysokość masthead o 20px */
}

.aboutPage {
	background: #bec5c7 url(../../img/common/about-bg.jpg) no-repeat center -54px; /* było -34 */
}

.contactPage, .textPage {
	background: #bec5c7 url(../../img/common/contact-bg.jpg) no-repeat center -54px; /* było -34 */
}

.nlPage {
	background: #bec5c7 url(../../img/common/nl-bg.jpg) no-repeat center -34px;
}

.worksPage {
	background: #bec5c7 url(../../img/common/works-bg.jpg) no-repeat center -34px;
}

:root { overflow-y: scroll !important; } 

img, fieldset { 
	border: 0 none; 
	outline: 0 none; 
}

form :focus, a:focus { 
	outline: 0 none; 
}

a, em, strong, span, acronym, abbr, q, cite, b, i {
  color: inherit;	
	font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-variant: inherit;	
  font-weight: inherit;
}

em, i { 
	font-style: italic; 
}

strong, b { 
	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;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: no-open-quote;
	content: no-close-quote;
}


/* ------------------------------------ *
 * --        2. TYPOGRAPHY           -- *
 * ------------------------------------ */

h1, h2, h3, h4, h5, h6 {
	font-size: 16px;
	font-weight: bold;
	padding-bottom: 16px;
}

h1 { 
	font: normal 24px/1 Arial, Helvetica, sans-serif;
	padding-bottom: 12px;
}

h2 {
	 
}

h3 {
	 
}

h4 {
	 
}

h5 { 

}

h6 { 

}

p, address, ul, ol, dl {
	font-style: normal;
	padding-bottom: 16px;
}

/* linki */

/* pierwszy wariant linków - text-decoration */

a { 
	color: #000;
	text-decoration: underline;
}

a:hover { 
	color:#0054ff;
}

/* cytaty */

/* v.01 */
blockquote {
	background: url(../../img/common/quote.gif) no-repeat scroll 9px 0px;
	color: #f3f3f3;
	font-family: Georgia, Times New Roman, Times, serif;	
	font-style: italic;
	margin: 0 10px 8px;
	padding: 0 24px 8px 36px;
}

blockquote p {
	font-style: italic;
	padding-bottom: 8px
}


/* ------------------------------------ *
 * --           3. LISTS             -- *
 * ------------------------------------ */

ol, ul { 
	list-style: none; 
}

ol ul, ul ul { 
	padding-bottom: 0; 
}

/* lista wypunktowana */
ul.bulleted li {
	background: url(../../img/common/bull-01.gif) no-repeat 18px 7px;
	padding-left: 40px;
}

/* lista numerowana */
ol.numbered {
	list-style: decimal-leading-zero outside;
	margin-left: 40px;
}

/* listy zagnieżdżone */
ol ul.bulleted-01 li, ul ul.bulleted-01 li {
	background: url(../../img/common/bull-01.gif) no-repeat 2px 8px;
	padding-left: 22px;
}

/* lista definicji */
dt {
	font-weight: bolder;
	padding: 0 10px;
}

dd {
	padding: 0 10px 6px 20px;	
	color: #444;
}

dl {
	padding-bottom: 12px;
}

/* ------------------------------------ *
 * --           4. TABLES            -- *
 * ------------------------------------ */

table { /* nadać 'cellspacing="0"' w kodzie */
	border: 0 none;
	border-collapse: collapse;
	border-spacing: 0;
	margin-bottom: 16px;
}

th, td {
	border-bottom: 1px solid #000;
	padding: 6px;
	text-align: left; /* wyrównanie tekstu można usunąć i zdefiniować dla klas nadanym col */
	vertical-align: top;	
}

th {
	font-weight: bold;
}

thead th {

}

caption {
	caption-side: top;
	font-weight: bolder;
	padding: 0 0 9px 6px;
	text-align: left;
}

/* ------------------------------------ *
 * --           5. FORMS            -- *
 * ------------------------------------ */

fieldset {
	overflow: hidden;
}

legend {
	white-space: normal !important;
	display: block !important;
	font: bold 13px/26px Arial, Helvetica, sans-serif;
	color: #636a6b;
	padding: 0 12px;
}

textarea {
	overflow: auto;
	resize: none;
}

input[type="radio"], input[type="checkbox"] {
	vertical-align: middle;
	margin: 0 3px 0 0;
}

.textInput {
	border: 1px solid #cacfd2;
	font: 11px/normal Arial, Helvetica, sans-serif;
	padding: 2px;
	width: 206px;
}

textarea.textInput {
	display: block;
	height: 54px;
}

.textInput:focus, select:focus {
	border-color: #BEC4C9;
	background: #f3f3f3;
}

/* buttony */
.button {
	background: #0087f7;
	border: medium none;
	color: #fff;
	cursor: pointer;
	display: block;
	font: bold 12px/26px Arial, Helvetica, sans-serif;
	height: 26px;
	margin: 0;
	overflow: hidden;
	padding: 0;
	text-align: center;	
	width: 98px;
}

/* komunikaty o błędzie i powodzeniu */
.msg {
	background: url(../../img/common/msg-box.gif) no-repeat 0 0;
	font: normal 13px/18px Arial, Helvetica, sans-serif;
	color: #636a6b;
	height: 134px;
	width: 460px;
	overflow: hidden;
	margin: 28px auto 0;
}

.msg strong {
	background: url(../../img/common/msg-heading.gif) repeat-x 0 0;
	margin: 0 20px;
	line-height: 26px;
	font-weight: bolder;
	height: 26px;
	padding: 0 5px;
	display: inline-block;
}

.msg p.msgCont {
	text-align: center;	
	line-height: 17px;
	margin-top: 40px;
	font-weight: bolder;
}

.failure { 
	padding: 0 0 0 30px;
	background: url(../../img/common/error.gif) no-repeat 0 0;
}

.success { 
	padding: 0 0 0 36px;
	background: url(../../img/common/success.gif) no-repeat 0 0;
}

/* ------------------------------------ *
 * --       6. COMMON CLASSES        -- *
 * ------------------------------------ */

.invisible { 
	visibility: hidden;
}

.disp-n { 
	display: none;
}

.fl-l { 
	float: left !important; 
}

img.fl-l {
	margin: 0 20px 18px 0;
}

.fl-r { 
	float: right !important; 
}

img.fl-r {
	margin: 0 0 18px 20px;
}

.clear { 
	clear: both; 
}

.clearer {
	clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

.cir {
	display: block;
	overflow: hidden;
	padding: 0;
	margin: 0;
	text-align: left;
	text-indent: -9999px;
}

.bold { 
	font-weight: bold; 
}

.noBorder { 
	border: 0 none !important;
}

.uppercase { 
	text-transform: uppercase; 
}

.debug { border: 1px solid red; } /* ukazanie elementu */

/* kolory */

.pink *, * .pink {
	color: #ff003e;	
}

a.pink:hover, .pink a:hover {
	color: #0054ff;
}

/* ------------------------------------ *
 * --        7. MASTER LAYOUT        -- *
 * ------------------------------------ */

/* wspólne ustawienia kilku bloków */
#wrapper, #contentWrapper, #footer {
	margin: 0 auto;
	overflow: hidden;
}

/* głowny blok strony */
#wrapper {
	position: relative;
	width: 968px;
}

/* kolumny */
#contentWrapper {
	background: #bec4c9;
	padding: 8px 8px 0;	
	width: 952px;
}

.homePage #contentWrapper {
	background: transparent;
	padding: 0;	
	width: 968px;
}

/* główna zawartość */
#content {
	position: relative;
	width: 952px;
}

/* podstrona prace */

#cols {
	overflow: hidden;
	background: #fff;
}

#mainContent {
	width: 698px;
	padding: 8px;
	float: left;
}

#sidebar {
	padding: 8px;
	width: 222px;
	float: right;
}

/* podstrona textowa */
.textPage #content {
	background: #fff;
	padding: 8px 98px 8px 8px;
	position: relative;
	width: 846px;
}

/* nagłówek */
#masthead {
	height: 133px; /* było 153 */
	margin: 0 auto 8px;
	position: relative;
	width: 968px;
	z-index: 1;
}

/* logo */
#logo, #logo img {
	height: 60px;
	overflow: hidden;
	width: 303px;
	display: block;
}

#logo {
	left: 0;
	position: relative;
	top: 42px;
}

/* główna nawigacja - operuję pikselami*/

.navList {
	right: 0;
	padding: 0;
	position: absolute;
	top: 16px;
	z-index: 2;
}

#var-nav-links {
	height: 13px;
	line-height: 13px;
	margin: 0 0 30px;
	overflow: hidden;
	text-align: right;
}

#var-nav-links li {
	display: inline;
	padding: 0 0 0 8px;
}

#var-nav-links li a {
	padding: 1px
}

#var-nav-links li a:hover {
	background: #0087f7
}

#mainNav {
	margin: 0 0 22px;
	overflow: hidden;
}

#mainNav li { 
	display: inline; 
}

#mainNav a {
	display: block;
	float: left;
	height: 15px;
	overflow: hidden;
	text-indent: -9999px;
}

#mainNav .start {
	background: url(../../img/common/start.png) no-repeat 0 -15px;
	width: 85px;
}

#mainNav .works {
	background: url(../../img/common/works.png) no-repeat 0 -15px;
	width: 93px;
}

#mainNav .about {
	background: url(../../img/common/about.png) no-repeat 0 -15px;
	width: 107px;
}

#mainNav .contact {
	background: url(../../img/common/contact.png) no-repeat 0 -15px;
	width: 80px;
}

#mainNav a:hover, #mainNav a.active {
	background-position: 0 0 !important;
}

#mainNav a.active {
	cursor: default;
}

#networking {
	font: 13px/1 Arial, Helvetica, sans-serif;
	height: 13px;
	overflow: hidden;
	padding: 5px 0;
}

#networking li {
	border-right: 1px solid #000;
	float: right;
	padding: 0 5px;
}

#networking .first {
	border: 0 none;
	padding: 0 0 0 5px;	
}

#networking a { 
	text-decoration: none;
}

#networking a:hover { 
	text-decoration: underline;
}

#networking .active { 
	color: #ff0042;
	text-decoration: underline;
	cursor: default;	
}

/* stopka */

#footer {
	background: #bec4c9;
	font: 11px/12px Arial, Helvetica, sans-serif;
	height: 12px;
	padding: 16px;
	width: 936px;
}

#fb {
	background: #e1e6eb;
	font: 11px/12px Arial, Helvetica, sans-serif;
	height: 62px;
	padding: 0px;
	width: 966px;
	border: 1px solid #bec4c9;
}

#footer * {
	color: #303030;
	text-decoration: none !important;
}

#footer ul {
	float: left;
	width: 450px;
}

#footer li {
	border-left: 1px solid;
	float: left;
	padding: 0 5px;
}

#footer li.first {
	border: 0 none;
	padding: 0 5px 0 0;	
}

#footer a.active { 
	color: #ff0042 !important;
	cursor: default;
}


#footer a:hover { 
	color:#fefefe !important;
}

#footer a.active { 
	color: #fefefe !important;
	cursor: default;
}

#footer p {
	float: right;
	padding: 0;
	text-align: right;
	width: 450px;
}

#sloganBox {
	position: relative;
	padding-bottom: 60px
}

.slogan {
	/*background: red; */
	bottom: 0;
	color: #7b8084;
	font: normal 11px/16px Arial, Helvetica, sans-serif;
	height: 32px;
	left: 50%;
	overflow: hidden;
	margin: 0 0 0 -340px;
	padding: 0 0 20px;
	position: absolute;
	text-align: center;
	width: 680px;	
}

.slogan strong {
	font-weight: normal;
}

/* ------------------------------------ *
 * --      8. POZOSTAŁE ELEMENTY     -- *
 * ------------------------------------ */

/* flash na home */
.homeFlashBox {
	height: 388px;
	width: 968px;
	overflow: hidden;
}

.homeFlashBox img, #flashIntro img {
	display: block;
	margin: 0 auto;
	position: relative;
	z-index: 1; 
}

.fb-link-01, .fb-link-02 {
	display: block;
	overflow: hidden;
	position: absolute;
	text-decoration: none !important;	
	z-index: 2;
}

.fb-link-01 {
	background: #0087f7 url(../../img/common/fb-link-bg.gif) no-repeat 288px 0;
	color: #fff !important;
	font: bold 12px/30px Arial, Helvetica, sans-serif;
	height: 30px;
	left: 330px;
	padding: 0 36px 0 12px;
	top: 330px;
	width: 264px;
}

.fb-link-01:hover {
	background: #0012ff url(../../img/common/fb-link-bg.gif) no-repeat 288px -30px;
}

.fb-link-02 {
	height: 15px;
	line-height: 15px;
	right: 290px;
	text-align: right;
	top: 300px;
	width: 100px;
}

.fb-link-02 span {
	visibility: hidden;
}

/* flash i info o projekcie na 'o firmie' i w 'prace' */

#projectInfo {
	background: #fff;
	height: 338px;
	padding: 8px;
	position: absolute;
	top: 8px;
	right: 8px;
	width: 206px;
}

.worksPage #projectInfo {
	height: 281px;
}

#projectInfo .innerContainer {
	width: 206px;
	height: 338px;
/*	overflow: auto; */ /* odkomentowanie tej linii pozwoli bez rozpadu układu wyświetlić text, gdy jest go za dużo, ale ze scrollbarem */
}

.worksPage #projectInfo .innerContainer {
	height: 281px;
}

#projectInfo p {
	padding: 0 0 20px;
}

#projectInfo .date {
	color: #868686;
	font: italic bold 12px/18px Georgia, "Times New Roman", Times, serif; 
	padding-bottom: 12px;
}

#projectInfo a {
	color: #868686;
	font: italic bold 12px/18px Georgia, "Times New Roman", Times, serif; 
	padding-bottom: 12px;
}

#projectInfo a:hover {
	color:#FF0099;
	font: italic bold 12px/18px Georgia, "Times New Roman", Times, serif, #FF0099; 
	padding-bottom: 12px;
}

#projectInfo h1 {
	word-spacing: -1px;
}

#flashPresentation {
	background: url(../../img/common/show-bg.jpg) no-repeat 0 0;
	height: 370px;
	margin: 0 0 8px;
	overflow: hidden;
	position: relative;
	width: 952px;
}

.worksPage #flashPresentation {
	background:none;
	height: 313px;
	margin: 0;
}

.flashContainer-01 {
	background: url(../../img/common/player-brd.gif) repeat-x 0 0;
	height: 274px;
	left: 140px;
	padding: 1px 0 0;
	position: absolute;
	top: 60px;
	width: 434px;
}

.worksPage .flashContainer-01 {
	background: url(../../img/common/player-brd.gif) repeat-x 0 0;
	left: 146px;
	position: absolute;
	top: 31px;
}

object {
	display: block;
	margin: 0 auto;
}

/* element o nieznanym przeznaczeniu na 'o firmie' - zrobiłem z niego nagłówek 2-giego stopnia - dodatkowa klasa daje mu tło zamiast textu */

.reel-2009 {
	background: url(../../img/common/reel-2009.gif) no-repeat 6px 8px;
	height: 24px;
	width: 171px;
	padding: 8px 0 0 6px;
}

/* kontakt */
#flashIntro {
	height: 189px;
	width: 968px;
	overflow: hidden;
}

.contact-frm, .nl-frm {
	background: #fff;
	overflow: hidden;
	height: 258px;
	padding: 8px;
}

.nl-frm {
	background: #fff url(../../img/common/nl-frm-bg.jpg) no-repeat 242px 0;
}

.nl-frm .msg {
	background: none;
	margin-top: 21px;
}

.contact-info {
	background: #fff;
	border-bottom: 8px solid #BEC4C9;
	padding: 8px;
	position: relative;
}

.contact-info h2.cir {
	background: url(../../img/common/contact-heading.gif) no-repeat 0 0;
	position: absolute;
		left: 8px;
		top: 8px;
		z-index: 2;
	height: 40px;
	width: 150px;
}

.contact-info ul {
	margin: 0 auto;
	padding: 12px 15px 0;
	position: relative;
		z-index: 1;
	text-align: center;
	width: 225px;
}

.contact-info ul span, .contact-info ul strong {
	display: block;
	font-weight: normal;
}

.contact-info dl {
	overflow: hidden;
	padding: 8px 0;
}

.contact-info dt {
	color: #FF0060;
	clear: left;
	font-weight: normal;
	float: left;
	padding: 0 10px 0 0;
	text-align: right;
	width: 66px;
}

.contact-info dd {
	color: #000;
	margin-left: 76px;
	padding: 0 10px 0 0;
	text-align: left;
}

.contact-frm h2.cir {
	height: 40px;
	background: url(../../img/common/contact-frm.gif) no-repeat 0 0;
}

.nl-frm h2.cir {
	height: 40px;
	background: url(../../img/common/nl-frm.gif) no-repeat 0 0;
}

.contact-frm .fieldset-m {
	width: 460px;
	background: url(../../img/common/fieldset-m.gif) repeat-y 0 0;
}

.contact-frm .fieldset-t {
	background: url(../../img/common/fieldset-t.gif) no-repeat 0 0;
}

.contact-frm fieldset {
	background: url(../../img/common/fieldset-b.gif) no-repeat 0 100%;
	padding: 0 8px 7px;
	height: 161px;
}

.contact-frm legend span {
	padding: 0 5px;
	background: url(../../img/common/contact-frm-legend.gif) repeat-x 0 0;
}

.contact-frm .options {
	float: left;
}

.contact-frm .personalData {
	float: right;
}

.contact-frm ul {
	padding: 8px 0 0;
	width: 214px;
	float: left;
	font-size: 11px;
}

.contact-frm ul+ul {
	float: right;
}


.contact-frm li {
	padding-bottom: 8px;
}

.contact-frm .personalData li {
	padding-bottom: 10px;
}

.contact-frm .personalData label span {
	display: block;
	padding-bottom: 2px;
	font-size: 11px;
}

.contact-frm .personalData label em {
	font-style: normal;
	color: #ff0060;
}

.butBox {
	overflow: hidden;
	clear: both;
	padding: 16px 0 0;
}

.sendButton {
	text-align: left;
	text-indent: -999px;
	background: url(../../img/common/send-but.gif) no-repeat 0 0;
}

.sendButton:hover {
	background: url(../../img/common/send-but.gif) no-repeat 0 -26px;
}

.contact-frm .info {
	font: 11px/13px Arial, Helvetica, sans-serif;
	color: #7c7c7c;
	padding: 0;
	margin-right: 98px;
	float: left;
	width: 320px;
}

/* newsletter */

.nl p {
	padding: 6px 10px;
	font-size: 13px !important;
}

.nl label {
	display: block;
	width: 222px;
	margin: 0 auto;
	font-weight: bold;
	font-size: 11px !important;
}

.nl label span {
	display: block;
}

.nl-frm .butBox {
	padding: 23px 0 0;
}

.nl-frm .sendButton {
	margin: 0 auto;
}

/* prace */

.pagination {
	color: #464b4f;
	font: bold 12px/25px Arial, Helvetica, sans-serif;
	padding: 0;
	margin-bottom: 8px;
}

.pagination a {
	background: #fff;
	display: inline-block;
	color: #bec4c9;
	font: bold 18px/25px Arial, Helvetica, sans-serif;
	padding: 0 7px;
	margin: 0 5px 0 0;	
	text-decoration: none !important;
}

.pagination a:hover {
	background: #0054ff;
	color: #fff;
}

.works-heading, .new-heading {
	height: 35px;
	margin-bottom: 8px;
}

.works-heading {
	background: url(../../img/common/works-heading.gif) no-repeat 0 0;
}

.new-heading {
	background: url(../../img/common/new-heading.gif) no-repeat 0 0;
}

.projectsList {
	padding: 0;
	margin-left:0px;
	overflow: hidden;
	margin-bottom:-16px
}


.projectsList li {
	display: inline;
}

.projectsList a  {
	display: block;
	float: left;
	width: 103px;
	height: 91px;
	overflow: hidden;
	position: relative;
	text-decoration: none !important;
	margin: 0 16px 16px 0;
}

.projectsList .last a {
	margin-right: 0;
}

.projectsList .last-row a {
	margin-bottom: 0;
}


.sideProjectsList {
	padding:0px;
	margin:0px;
	overflow:hidden;
}

.sideProjectsList li {
	padding: 0;
	margin: 0 0 14px;
	width: 222px; 
	height: 153px;
	overflow: hidden;
}


.sideProjectsList a {
	display: block;
	position:relative;
	float: none;
	width: 222px; 
	height: 153px;
	margin: 0;
	text-decoration: none !important;
	margin-bottom:10px
}

.projectsList li a *, .sideProjectsList a * {
	display: block;
	position: absolute;
}

.projectsList img, .sideProjectsList img {
	z-index: 1;
	top: 0;
	left: 0;
}

.projectsList span, .sideProjectsList span {
	z-index: 2;
	width: 101px;
	height: 89px;
	background: url(../../img/common/project-pat.gif) 0 0;
	top: 1px;
	left: 1px;
}

.sideProjectsList span {
	width: 222px; 
	height: 153px;
	top: 0;
	left: 0;
}

.projectsList a:hover span, 
.sideProjectsList a:hover span, 
.projectsList a.activeProject span, 
.sideProjectsList a.activeProject span, 
.projectsList a.newProject span, 
.sideProjectsList a.newProject span {
	background: none;
}

.projectsList li a strong {
	color: #bec4c9;
	text-transform: uppercase;
	font: bold 10px/12px Arial, Helvetica, sans-serif; 
	background: #000;
	padding: 2px;	
	left: 3px;
	bottom: 3px;
	width: 91px;
	overflow: hidden;
	min-height: 12px;
	max-height: 24px;
}

.sideProjectsList li a strong {
	color: #73797f;
	font: normal 18px/24px Arial, Helvetica, sans-serif; 
	background: #fff url(../../img/common/side-project-link.gif) no-repeat 190px -26px;
	padding: 1px 21px 1px 5px;	
	left: 8px;
	bottom: 8px;
	width: 180px;
	overflow: hidden;
	height: 24px;
}

.projectsList a:hover strong, 
.projectsList a.activeProject strong, 
.projectsList a.newProject strong {
	background: #0054ff;
	color: #fff;
}

.sideProjectsList a:hover strong,
.sideProjectsList a.newProject strong,
.sideProjectsList a.activeProject strong {
	color: #fff;
	background: #0054ff url(../../img/common/side-project-link.gif) no-repeat 190px 0;
}

.activeProject, .activeProject * {
	cursor: default;
}

/* reszta */
.section {
	border-bottom: 1px dotted #666;
	margin-bottom: 17px;
}

.innerContainer {
	overflow: hidden;
	position: relative;
}

/* textowa */

.careerHeading {
	background: url(../../img/common/career-heading.gif) no-repeat 0 0;
	height: 40px;
	padding: 0 0 6px
}

.mapaHeading {
	background: url(../../img/common/mapa-heading.gif) no-repeat 0 0;
	height: 40px;
	padding: 0 0 6px
}

/* debug */
.grid {
	position: absolute;
	top: 0;
	left: 50%;
	background: url(../../img/grid.png) repeat-y 0 0;
	margin: 0 0 0 -484px;
	z-index: 1000;
	width: 968px;
	height: 1000px;
}

/* tooltip */
#tooltip {
	position: absolute;
	z-index: 3000;
	border: 1px solid #a9a9a9;
	background-color: #fffacd;
	padding: 2px 5px;
	opacity: 0.9;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}

#tooltip * { 
	margin: 0; 
	padding: 0;
	font: normal 11px/14px Arial, Helvetica, sans-serif !important;
}

