/*   
Theme Name: Numenaria Theme
Theme URI: http://www.georgehatt.com
Description: Theme for the Numenaria website
Author: George "Trey" Hatt
Author URI: http://www.georgehatt.com
Version: 1
*/

@media screen {
body  {
	font: 100% "Palatino Linotype", "Book Antiqua", Palatino, serif;
	background: #efedd7;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}

/*background image for body--if I want to put it back in--url(parchemin_5.jpg); background-position: top; background-repeat: no-repeat*/

h1, h2, h3, h4{
font-family: 'MedievalSharp', arial, serif;
}

#container { 
	width: 1000px;  
	background: none;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	
} 
#header { 
	background: url(header.png); 
	padding: 0 10px 0 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	height:160px;
	-moz-box-shadow: 0px 5px 3px #392F24; /* Firefox 3.6 and earlier */
	-webkit-box-shadow: 0px 5px 3px #392F24; /* Safari */
	box-shadow: 0px 5px 3px #392F24;
	border: 1px solid #000000; 
} 
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#sidebar1 {
	background: url(design.png) no-repeat top;
	float: left; /* since this element is floated, a width must be given */
	width: 150px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding: 80px 10px 15px 20px; /* padding keeps the content of the div away from the edges */
	margin-top: 10px;
	
}

#sidebar1 ul li a {
	font-family: 'MedievalSharp', arial, serif; 
	font-size: 24px; 
	display:block; 
	text-decoration:none; 
	color:#800040; 
	padding-top: 10px;
	text-shadow: 2px 2px 1px #CCC;
	
}

#sidebar1 ul li a:hover {text-shadow: 2px 2px 1px #FFF;}

#sidebar1 ul {list-style:none;}


#sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 160px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: none; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px; /* padding keeps the content of the div away from the edges */
	
}

#sidebar2 ul li a {
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif; 
	display:block; 
	text-decoration:none; 
	color:#800040; 
	padding-top: 10px;
	text-shadow: 2px 2px 1px #CCC;
}

#sidebar2 ul li a:hover {text-shadow: 2px 2px 1px #FFF;}

#sidebar2 ul {list-style:none;}

#mainContent { 
	margin: 0 200px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	
}

#transbox {
background-color:#ffffff;
/* for IE */
  filter:alpha(opacity=65);
  /* CSS3 standard */
  opacity:0.65;
  padding: 0px 10px 10px;
  -moz-box-shadow: 0px 5px 3px #392F24; /* Firefox 3.6 and earlier */
  -webkit-box-shadow: 0px 5px 3px #392F24; /* Safari */
  box-shadow: 0px 5px 3px #392F24;
  
}

#footer { 
	padding: 15px 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: url(footer.png) center no-repeat;
	height: 90px;
} 
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 100px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: center;
	}
	
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}


/* Wordpress */
/* Text wrap and image alignment in the post */
img.alignright {float:right; margin:0 0 1em 1em}
img.alignleft {float:left; margin:0 1em 1em 0}
img.aligncenter {display: block; margin-left: auto; margin-right: auto}
a img.alignright {float:right; margin:0 0 1em 1em}
a img.alignleft {float:left; margin:0 1em 1em 0}
a img.aligncenter {display: block; margin-left: auto; margin-right: auto}

.screen-reader-text { position: absolute; left: -9999px; top: -9999px; }
.clear { clear: both; }
.group:after { visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0; }
* html .group, *:first-child+html .group { zoom: 1; } /* First selector = IE6, Second Selector = IE 7 */

p { margin: 0 0 10px 0; }

a 
{
text-shadow: 2px 2px 1px #CCC; 
text-decoration:none; 
color: #233872; 
}

a:hover {
	text-decoration:none;
	text-shadow: 2px 2px 1px #FFF; text-decoration:none;
} 

blockquote { }
blockquote p { }

ul { }

li { }

.post { }

.entry { }
.entry a { }
.entry a:hover { }

pre { }
code, tt { }

#meta { }
.postmetadata { }


.navgation { }
   .next-posts { }
   .prev-posts { }

#searchform { }
	#s { }
	#searchsubmt { }
	
ol.commentlist { list-style: none; }
ol.commentlist li { }
ol.commentlist li.alt { }
ol.commentlist li.bypostauthor { }
ol.commentlist li.byuser { }
ol.commentlist li.comment-author-admin { }
ol.commentlist li.comment { border-bottom: 1px dotted #666; padding: 10px; }
ol.commentlist li.comment div.comment-author { }
ol.commentlist li.comment div.vcard { }
ol.commentlist li.comment div.vcard cite.fn { font-style: normal; }
ol.commentlist li.comment div.vcard cite.fn a.url { }
ol.commentlist li.comment div.vcard img.avatar { float:right; margin: 0 0 10px 10px; }
ol.commentlist li.comment div.vcard img.avatar-32 { }
ol.commentlist li.comment div.vcard img.photo { }
ol.commentlist li.comment div.vcard span.says { }
ol.commentlist li.comment div.commentmetadata { }
ol.commentlist li.comment div.comment-meta { font-size: 10px; }
ol.commentlist li.comment div.comment-meta a { color: #ccc; }
ol.commentlist li.comment p { }
ol.commentlist li.comment ul { }
ol.commentlist li.comment div.reply { font-size: 11px; }
ol.commentlist li.comment div.reply a { font-weight: bold; }
ol.commentlist li.comment ul.children { list-style: none; margin: 10px 0 0; }
ol.commentlist li.comment ul.children li { }
ol.commentlist li.comment ul.children li.alt { }
ol.commentlist li.comment ul.children li.bypostauthor { }
ol.commentlist li.comment ul.children li.byuser { }
ol.commentlist li.comment ul.children li.comment { }
ol.commentlist li.comment ul.children li.comment-author-admin { }
ol.commentlist li.comment ul.children li.depth-2 { border-left: 5px solid #555; margin: 0 0 10px 10px; }
ol.commentlist li.comment ul.children li.depth-3 { border-left: 5px solid #999; margin: 0 0 10px 10px; }
ol.commentlist li.comment ul.children li.depth-4 { border-left: 5px solid #bbb; margin: 0 0 10px 10px; }
ol.commentlist li.comment ul.children li.depth-5 { }
ol.commentlist li.comment ul.children li.odd { }
ol.commentlist li.even { background: #fff; }
ol.commentlist li.odd { background: #f6f6f6; }
ol.commentlist li.parent { border-left: 5px solid #111; }
ol.commentlist li.thread-alt { }
ol.commentlist li.thread-even { }
ol.commentlist li.thread-odd { }

form { }
input[type=text] { }
textarea { }
}


@media print {

.do-not-print { display: none; }
#comments { page-break-before: always; }

body { width: 100% !important; margin: 0 !important; padding: 0 !important; line-height: 1.4; word-spacing: 1.1pt; letter-spacing: 0.2pt; font-family: Garamond,"Times New Roman", serif; color: #000; background: none; font-size: 12pt; }
h1,h2,h3,h4,h5,h6 { font-family: Helvetica, Arial, sans-serif; }
h1 { font-size: 19pt; }
h2 { font-size:17pt; }
h3 { font-size:15pt; }
h4,h5,h6 { font-size:12pt; }
code { font: 10pt Courier, monospace; } 
blockquote { margin: 1.3em; padding: 1em; }
img { display: block; margin: 1em 0; }
a img { border: none; }
table { margin: 1px; text-align:left; }
th { border-bottom: 1px solid #333;  font-weight: bold; }
td { border-bottom: 1px solid #333; }
th, td { padding: 4px 10px 4px 0; }
caption { background: #fff; margin-bottom: 2em; text-align: left; }
thead { display: table-header-group; }
tr { page-break-inside: avoid; } 
a { text-decoration: none; color: black; }
	
} /* END print media */

