/*******************************************************************************

	Author: skladacze.pl

********************************************************************************

	1. BASE
		1.1 Reset
		1.2 Clearfix
		1.3 Default Styles

	2. COMMON
		2.1 Container

	3. PRINT

*******************************************************************************/


/* 1. BASE
--------------------------------------------------------------------------------
==============================================================================*/


/* 1.1 Reset
------------------------------------------------------------------------------*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
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;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

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

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

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

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* 1.2 Clearfix
------------------------------------------------------------------------------*/

.cf:after {
	content: ".";
	display: block;
	visibility: hidden;
	clear: both;
	height: 0;
}
.cf{
  display:inline-block
}
* html .cf{
  height:1%
}
.cf{
  display:block
}

/* 1.3 Default Styles
------------------------------------------------------------------------------*/
html{
	background: #3C003B;
  height:100%;
}
body {
	font-family:  Tahoma, Helvetica, sans-serif;
	font-size:12px;
	color: #fff;
	height:100%;
	background: #3C003B;
}
strong {
	font-weight: bold;
}
em {
	font-style: italic;
}
del {
	text-decoration: line-through;
}
th, td {
	vertical-align: top;
}
th {
	font-weight: normal;
	text-align: left;
}
address, cite, dfn {
	font-style: normal;
}
abbr, acronym {
	cursor: help;
}
input, textarea, select {
	font-family: Arial, Helvetica, sans-serif;
}
textarea {
	 overflow: auto;
}
a, a:visited {
	text-decoration: none;
	color: #026aa4;	
}
a:hover, a:active, a:focus {
	text-decoration: underline;
	color: #026aa4;
}
/* 2. COMMON
--------------------------------------------------------------------------------
==============================================================================*/


/* 2.1 Container
------------------------------------------------------------------------------*/
#main{
  width:1000px;
  margin:0 auto;
  background: url(../images/bg.jpg) repeat-y;
}

#left{
  width:417px;
  float:left;
}

#left .content{
  width:320px;
  padding-left:85px;
  padding-top:35px;
  font-size:10px;
  line-height:22px;
}
#left .content p{
  margin-bottom:20px;
}
a.logo{
  display:block;
  width:238px; 
  height:83px;
  margin-bottom:40px;
}
#left .desc img{
  float:left;
  margin-right:10px;
  margin-top:7px;
}
#right{
  width:583px;
  float:left;
  background: url(../images/bg1.jpg) repeat-y;
  color:#181619;
}
#right .content{
  padding:34px 10px;
  padding-bottom:0px;
}
#right .desc{
  line-height:22px;
  color:#565457;
  font-size:12px;
}
#right .content p{
  margin-bottom:20px;
}
#right .desc strong{
  color:#181619;
}
#right h2{
  font-size:17px;
  font-weight:normal;
  margin-bottom:20px;
}
#leftr{
  width:291px;
  float:left;
}
#rightr{
  width:292px;
  float:left;  
}
#right #rightr .content{
  padding-left:15px;
}
a.bottom{
  clear:both;
  display:block;
  width:270px;
  height:40px;
  float:right;
}

/* 3. PRINT
--------------------------------------------------------------------------------
==============================================================================*/


@media print {

	body { 
		font: normal normal 12pt/1.5em "Times New Roman", Times, serif; 
	}

	a[href]:after { 
		content: " (" attr(href) ") "; 
		font-size: 90%; 
	}

	a[href^="/"]:after { 
		content: " (http://domain.com" attr(href) ") "; 
	}

	ol#accessibility-nav, 
	.hide { 
		display: none !important; 
	}
}	