@charset "utf-8";
/**
 * Author: Damian Samolej
 * Compatibility: IE6, IE7, IE8, Fx2, Fx3, O9x, SWin
 */

/* Reset:
 * ___________________________________________________________________________
 */ 

a:link,
a
{
  color: #646464;
  text-decoration: none;
}

a:visited
{
}

a:hover
{
  text-decoration: underline;
}

a:active
{
}

:focus 
{
}

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, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
form, fieldset, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td
{
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

html
{
  color: #595A5D;
	font: normal 62.5%/1.4em "Times New Roman", Times, Georgia, Arial, "Helvetica Neue", Helvetica, Verdana, sans-serif;
}

body
{
	background: #FFF;
	}

ol, ul
{
	list-style: none;
}

blockquote, q
{
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after
{
	content: '';
/*	content: none;*/ /* Opera zglasza blad */
}

ins
{
	text-decoration: underline;
}

del
{
	text-decoration: line-through;
}

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

/* Structural labels for accessibility */
.Accessibility
{
	left: -9999px;
	overflow: hidden;
	position: absolute;	
	width: 100px;
}

/* Layout:
 * ___________________________________________________________________________
 */

#Content
{
	/*min-width: 260px;
	overflow: hidden;
  padding-right: 350px;
	padding: 0 350px 0 230px;*/
	font-size: 12px;
	padding-left: 260px;
}

* html #Content
{
  padding-left: 90px;
} 


*:first-child + html #Content
{
}

#Main
{
  background: #fff;
	padding: 0 0 10px 30px;
	width: 100%;
}

#Content div#SidebarLeft
{
  background: #fff;
  /*margin-left: -100%;*/
	padding: 30px 0 10px 30px;
	/*right: 260px;*/
	width: 200px;
}

#Content #SidebarLeft
{
  left:1em;
  position:absolute;
  top:1em;
}

#SidebarRight
{
	margin-right: -100%;
	padding: 0 30px 10px 0;
	width: 220px;
}

#Main,
#SidebarRight
{
  /*
  float: left;
	margin-bottom: 0;
  position: relative;*/
  padding-top: 30px;
}

#MainAndSidebar
{
  padding: 0 290px 0 0;
	position: relative;
	min-width: 300px;
	overflow: hidden;	
}

#MainAndSidebar #Main,
#MainAndSidebar #SidebarRight
{
  float:left;
}

/* SidebarLeft:
 * ___________________________________________________________________________
 */
h1
{
  text-align: center;
  padding-bottom: 12px;
  border-bottom: 1px solid #000;
}

/* SidebarLeft --> Nav:
 * ___________________________________________________________________________
 */
#Nav
{
  border-bottom: 1px solid #000;
  padding: 30px 0 30px 30px;
}

#Nav li a
{
  background-position:  left top;
  background-repeat: no-repeat;
  display: block;
  height: 18px;
  text-indent: -9999px;
  width: 93px;
}

#Nav li a.hover,
#Nav li .selected a
{
  background-position: -93px 0;
}

#Nav li.Top
{
  padding-top: 25px;
}

#Nav .SubNav
{
  padding-left: 3px;
  /*padding: 15px 0 15px 3px;*/
}

.SubNav .First
{
  padding-top: 15px;
}

.SubNav .Last
{
  padding-bottom: 15px;
}

#Nav .SubNav li a
{
  background: none;
  color: #afafaf;
  font-size: 12px;
  text-indent: 0;
  width: auto;
}

#Nav .SubNav li a:hover,
#Nav .SubNav .On
{
  color: #000;
  font-weight: bold;
  text-decoration: none;
}


/* Main:
 * ___________________________________________________________________________
 */
.Intro,
.Description
{
  /*border-bottom: 1px solid #afafaf;*/
  padding-bottom: 3px;
}

.Description
{
  padding-top: 20px;
}

.Intro hr
{
  background: #AFAFAF;
  border: none;
  clear: both;
  height: 1px;
  float: left;
  display: block;
}

.Intro p
{
  clear: both;
}

* html .Intro hr
{
  margin: 5px 0 0;
}

*:first-child + html .Intro hr
{
  margin: 5px 0 0 0;
}

/* SidebarRight:
 * ___________________________________________________________________________
 */
#SidebarRight
{
  text-align: right;
}

#SidebarRight a
{
  font: normal 10px "Times New Roman", Times, Georgia, Arial;
}

#SidebarRight .On
{
  font-weight: bold;
}

/* Footer:
 * ___________________________________________________________________________
 */
#Footer
{
  clear: both;
  text-align: right;
  font-size: 12px;
  padding: 85px 30px 50px 0;
}

#Footer span
{
  display: block;
}


/* position: fixed; tricks:
 * ___________________________________________________________________________
 */
@media screen
  {
 #Content div#SidebarLeft
    {
    position: fixed;
    }
  /* Don't do this at home */
  * html
    {
    overflow-y: hidden;
    }
  * html body
    {
    overflow-y: auto;
    height: 100%;
    padding: 0 1em 0 14em;
    font-size: 100%;
    }
  * html #Content div#SidebarLeft
    {
    position: absolute;  
    }
  /* All done. */
  }
