/**
 * @file
 * Page Styling
 *
 * Style the markup found in page.tpl.php. Also includes some styling of
 * miscellaneous Drupal elements that appear in the $content variable, such as
 * ul.links, .pager, .more-link, etc.
 */


/*
 * Body
 */
body {
  margin: 0;
  padding: 0;
}

#page-wrapper {
}

#page {
	color: #ffffff;
}

/*
 * The skip navigation link will be completely hidden until a user tabs to the
 * link. See http://www.webaim.org/techniques/skipnav/
 */
#skip-link a,
#skip-link a:visited {
  position: absolute;
  display: block;
  left: 0;
  top: -500px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  text-align: center;
  background-color: #666;
  color: #fff;
}

#skip-link a:hover,
#skip-link a:active,
#skip-link a:focus {
  position: static;
  width: 100%;
  height: auto;
  padding: 2px 0 3px 0;
}

/*
 * Header
 */
#header {
}

#header .section {
}

#logo /* Wrapping link for logo */ {
  float: left; /* LTR */
  margin: 15px 0 0 0;
  padding: 0;
}

#logo img {
  vertical-align: bottom;
}

#name-and-slogan /* Wrapper for website name and slogan */ {

width: 260px;	
font-style: italic;
font-size: 1.1em;
line-height: 2em;

clear: none;


}

h1#site-name,
div#site-name /* The name of the website */ {
  margin: 0;
  font-size: 1.5em;
  line-height: 1.3em;
}

#site-name a:link,
#site-name a:visited {
  color: #979797;
  text-decoration: none;
}
#site-name a {
	font-variant: small-caps;
	font-family: Georgia,"Times New Roman",Times,serif;
	font-weight: normal;
}
#site-name a:hover,
#site-name a:focus {
  text-decoration: underline;
}

#site-slogan /* The slogan (or tagline) of a website */ {
	padding-left: 15px;
	color: #979797;
font-variant: small-caps;
	
}

.region-header /* Wrapper for any blocks placed in the header region */ {
}

/*
 * Main (container for everything else)
 */
#main-wrapper {

top: -15px;
}

#main {
}

/*
 * Content
 */
#content {
	
}

#content .section {
}

#mission /* The mission statement of the site (displayed on homepage) */ {
}

.region-content-top /* Wrapper for any blocks placed in the "content top" region */ {
}

.breadcrumb /* The path to the current page in the form of a list of links */ {
  padding-bottom: 0; /* Undo system.css */
  position: absolute;
  top: -60px;
  left: 0;
  color: #ffffff;
  font-size: 9px;
}

.breadcrumb a {
	color: #ffffff;
}

h1.title, /* The title of the page */
h2.title, /* Block title or the title of a piece of content when it is given in a list of content */
h3.title /* Comment title */ {
  margin: 0;
  color: #295e0c;
  	font-size: 1.2em;
  	clear: left;

}

h1.title {

	border-left: 10px solid #295e0c; 
	padding: 0 0 0 10px;
}

h2.title {

	font-size: 1em; 
	margin-top: 10px;
	padding-bottom: 5px;
	  	border-bottom: 1px solid #295E0C;

	  	text-align: right;
}



tr.even /* Some tables have rows marked even or odd. */ {
  /* background-color: #eee; */ /* Drupal core uses a #eee background */
}

tr.odd {
  /* background-color: #eee; */ /* Drupal core uses a #eee background */
}

div.messages /* Important messages (status, warning, and error) for the user. See also the declarations in messages.css. */ {
}

div.status /* Normal priority messages */ {
}

div.warning,
tr.warning /* Medium priority messages */ {
  /* border: 1px solid #f0c020; */ /* Drupal core uses: 1px solid #f0c020 */
}

div.error,
tr.error /* High priority messages. See also the .error declaration below. */ {
}

.error /* Errors that are separate from div.messages status messages. */ {
  /* color: #e55; */ /* Drupal core uses a #e55 background */
}

.warning /* Warnings that are separate from div.messages status messages. */ {
  /* color: #e09010; */ /* Drupal core uses a #e09010 background */
}

div.tabs /* See also the tabs.css file. */ {
}

.help /* Help text on a page */ {
  margin: 1em 0;
}

.more-help-link /* Link to more help */ {
  font-size: 0.85em;
  text-align: right;
}

#content-area /* Wrapper for the actual page content */ {
}

ul.links /* List of links */ {
  margin: 1em 0;
  padding: 0;
}

ul.links.inline {
  margin: 0;
  display: inline;
}

ul.links li {
  display: inline;
  list-style-type: none;
  padding: 0 0.5em;
}

.pager /* A list of page numbers when more than 1 page of content is available */ {
  clear: both;
  margin: 1em 0;
  text-align: center;
}

.pager a,
.pager strong.pager-current /* Each page number in the pager list */ {
  padding: 0.5em;
}

.feed-icons /* The links to the RSS or Atom feeds for the current list of content */ {
  margin: 1em 0;
}

.more-link /* Aggregator, blog, and forum more link */ {
  text-align: right; /* LTR */
}

.region-content-bottom /* Wrapper for any blocks placed in the "content bottom" region */ {
}

/*
 * First sidebar (on left in LTR languages, on right in RTL)
 *
 * Remember to NOT add padding or margin to your .region-sidebar-first
 * (see the layout.css file.)
 */
.region-sidebar-first {
}

.region-sidebar-first .section {
}

/*
 * Second sidebar (on right in LTR languages, on left in RTL)
 *
 * Remember to NOT add padding or margin to your .region-sidebar-second
 * (see the layout.css file.)
 */
.region-sidebar-second {
}

.region-sidebar-second .section {
}

/*
 * Footer
 */
#footer {
}

#footer .section {
}

#footer-message /* Wrapper for the footer message from Drupal's "Site information"
                   and for any blocks placed in the footer region */ {
}

.region-footer {
}

/*
 * Closure
 */
.region-page-closure /* Wrapper for any blocks placed in the closure region */ {
font-size: 11px;
text-align: right;	
color: #979799;
padding: 5px;
}

.region-page-closure a {
text-decoration: none;
	color: #353637;
}
.region-page-closure a:hover {
text-decoration: underline;
}





/*
 * Drupal boxes
 *
 * Wrapper for Comment form, Comment viewing options, Menu admin, and
 * Search results.
 */
.box /* Wrapper for box */ {
}

.box h2 /* Box title */ {
}

.box .content /* Box's content wrapper */ {
}

/*
 * Markup free clearing (See: http://www.positioniseverything.net/easyclearing.html )
 */
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/**
 * Hide elements from all users.
 *
 * Used for elements which should not be immediately displayed to any user. An
 * example would be a collapsible fieldset that will be expanded with a click
 * from a user. The effect of this class can be toggled with the jQuery show()
 * and hide() functions.
 */
.element-hidden {
  display: none;
}

/**
 * Hide elements visually, but keep them available for screen-readers.
 *
 * Used for information required for screen-reader users to understand and use
 * the site where visual display is undesirable. Information provided in this
 * manner should be kept concise, to avoid unnecessary burden on the user. Must
 * not be used for focusable elements (such as links and form elements) as this
 * causes issues for keyboard only or voice recognition users. "!important" is
 * used to prevent unintentional overrides.
 */
.element-invisible {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
}


/**
 wszystko co poniżej sam dodałem
 */


#header ul.menu {
	text-align: left;
	font-size: 11px;
	font-style: normal;
	letter-spacing: 0.3em;

}

div#block-menu-primary-links {
float: left;
padding: 0;
margin: 15px 0 0 0;

width: 250px;
height: 150px;
}

#header ul.menu li, #header ul.menu li.leaf {
	list-style: none;
}

#header ul.menu li a, #header ul.menu li.leaf a {
	color: #979797;
text-decoration: none;
font-weight: bold;
background-color: #090909;
border: 1px solid #979797;
border-radius: 5px;
display: block;
margin: 4px 4px 4px 4px;
padding: 2px 2px 2px 20px;

}

#header ul.menu li a:hover, #header ul.menu li.leaf a:hover {

background-color: #393939;
}
#header ul.menu li a.active{
	text-decoration: underline;
}

/*graficzne menu


 */


div#block-block-18{


	margin: 0;
	padding: 0;

    float: right;
    position: relative;
    top: -75px;	
		width: 150px;
}


div#block-block-18 a{ 	margin: 2px; border: 1px solid #090909; }
div#block-block-18 a:hover{ 	border: 1px solid #979797; }
	

/* ukrywa nawigację książek - każda książka ma swój numer na końcu po myślniku */
.book-navigation{
	display: none;
}

a.minilink {
	display: block;
	float:left;
	font-size: 10px;
	width: 80px;
	height: 120px;
	padding: 0;
	text-align: center;
	text-decoration: none;
	border: 10px solid #dcd9d9;
	border-width: 0 0 10px 0;
	margin: 0 20px 20px 0;
	
}
a.minilink img {
border: 8px solid #dcd9d9;
margin-left: -8px;
}
 a:hover.minilink {
 	border: 10px solid #CECCCC;
	border-width: 0 0 10px 0;

 }

a:hover.minilink img{
	 border: 8px solid #CECCCC;
	}
	
	.pas {
	width: 98%;	

padding-left: 8px;
	}

#footer .section{

color: #353637; 

}


 #footer a{
color: #B9B9BB;
	text-decoration: none;
}


#footer a:hover{ 
color: #353637; 
text-decoration: underline;
}

#footer li a.active{
text-decoration: underline;
}

#footer .section #block-menu-menu-menu-stopka, #footer .section #block-block-1, #footer .section #block-block-2 {
	width: 27%;
	float: left;
	margin-top: 20px;
	padding: 0 0 0 6%;
border-right: 1px solid #747575;
height: 160px;

}


#footer .section #block-block-2 {


border: none;

}



#footer .section ul {


}
/*
#footer .section ul li {
font-size: 11px;
line-height: 1.8em;
list-style-image: url("/stronki/mysliwiec/sites/all/themes/blogbuzz/images/punktlist.gif");	

}
*/

#footer h2.title{
	color: #353637;
	border-bottom: 1px solid #747575;
	width: 90%;
font-size: 0.8em;
	
}
/*
#footer a img {
	border: 10px solid #dcd9d9;
}
#footer a:hover img{
	 border: 10px solid #CECCCC;
}
*/
a.minilink40 {
	display: block;
	float:left;
	font-size: 9px;
	width: 60px;
	height: 60px;
	padding: 0;
	text-align: center;
	text-decoration: none;

	margin: 0 20px 20px 0;
	
}
a.minilink40 img {
border: 8px solid #dcd9d9;

}


a:hover.minilink40 img{
	 border: 8px solid #CECCCC;
	}
	
	.pas {	/*  div dla zdjęć (linków do poszczegulnych działów) w diałach materiały, oferta  */
width: 100%;	
min-height: 80px;
padding-left: 8px;
clear: both;
	}
#login{ 	float: left; } /* div dla ikonki L - login  */

#login a{
	font-size: 0.8em;
	display: block;
	text-align: center;
	padding: 0.5em 1em;
	background-color: #CECCCC;

	color: #ffffff;
	border: 1px solid #FFFFFF; 
}
#login a:hover{ color: #67686A; }

form.webform-client-form{

	width: 50%;
	float: left;

}


 /* początek klas dla formularza kontaktowego i opisu */
#contact{
	width: 40%;
	float: left;
	padding: 0 5% 0 0;
}
.webform-component {
color: #67686A;
	width: 200px;
font-size: 0.8em;
}

.webform-component input , .webform-component .form-select, input#edit-title {
	width: 160px;
	font-size: 1em;
	color: #000000;
border: 1px solid #295E0C;
background-color: #979797;
}
.webform-component-textarea{ float: right; clear: right; 	width: 280px; margin-top: -1em;}
#webform-component-temat{ float: right; width: 280px;  margin-top: -1em;}
#webform-component-temat input { width: 270px; }

.webform-component-textarea textarea , textarea#edit-field-wpis-0-value{
font-size: 1em;
color: #000000;
width: 270px;
border: 1px solid #295E0C;
background-color: #979797;
resize: none; 
}

textarea#edit-field-wpis-0-value, input#edit-title  { 
width: 600px;
}

/* koniec klas dla formularza kontaktowego i opisu */
#logout{
position: absolute;
margin: 40px 0 0 460px;
font-size: 10px;
color: #ffffff;	
	}
	
#logout a {	color: #ffffff;}





