/* $Id: nodes.css,v 1.6 2009/11/02 15:37:29 johnalbin Exp $ */

/**
 * @file
 * Node Styling
 *
 * Style anything that isn't in the $content variable.
 */


.node /* Node wrapper */ {
	padding-bottom: 20px;
	padding-top: 10px;
	padding-left: 10px;
	padding-right: 10px;
	border-bottom: 1px solid black;
	margin-bottom: 10px;
}

.node-sticky /* A sticky node (displayed before others in a list) */ {
}

.node-unpublished /* Unpublished nodes */ {
  /* background-color: #fff4f4; */ /* Drupal core uses a #fff4f4 background */
}

.node-unpublished div.unpublished,
.comment-unpublished div.unpublished /* The word "Unpublished" displayed underneath the content. */ {
  height: 0;
  overflow: visible;
  color: #d8d8d8;
  font-size: 75px;
  line-height: 1;
  font-family: Impact, "Arial Narrow", Helvetica, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  word-wrap: break-word; /* A very nice CSS3 property */
}

.node-by-viewer /* A node created by the current user */ {
}

.node-teaser /* A node displayed as teaser */ {
}

/* All nodes are given a node-type-FOO class that describes the type of
 * content that it is. If you create a new content type called
 * "my-custom-type", it will receive a "node-type-my-custom-type" class.
 */
.node-type-page /* Page content node */ {
}

.node-type-story /* Story content node */ {
}

.node h2.title /* Node title */ {
}

.node h2.title a:visited /* Node title */ {
	color: #FFA500;
}

.marker /* "New" or "Updated" marker for content that is new or updated for the current user */ {
  color: #c00;
}

.node .picture /* The picture of the node author */ {
}

.node.node-unpublished .picture,
.comment.comment-unpublished .picture {
  position: relative; /* Otherwise floated pictures will appear below the "Unpublished" text. */
}

.node .meta /* Wrapper for submitted and terms data */ {
	color: #818386;
	font-family: Arial, 'Times', 'Times New Roman', sans-serif;
	font-size: 11.5px;
}

.node .meta p a {
 	color: #818386;
 	font-family: Arial, sans-serif;
 	font-size: 11px; 
 	background: url(http://theanthill.org/sites/all/themes/six/images/read-on.png) no-repeat;
 	width: 85px;
 	height: 29px;
 	display: block;
	text-indent: -99999px;
}

.author-name {
	text-transform: uppercase;
}

.node .submitted /* The "posted by" information */ {
}

.node .terms /* Node terms (taxonomy) */ {
}

.node .content /* Node's content wrapper */ {
	font-size: 14.5px;
	font-family: 'Georgia', "Liberation Serif", "Bitstream Vera Serif", "DejaVu Serif", 'Times', 'Times New Roman', 'Constantia', serif;
	line-height: 19px;
}

.node ul.links /* Node links. See also the ul.links declaration in the pages.css. */ {
	display: block;
	margin-bottom: 1em;
}

.preview .node /* Preview of the content before submitting new or updated content */ {
  /* background-color: #ffffea; */ /* Drupal core uses a #ffffea background */
}

#content h1 {
	font-family: 'Georgia', "Liberation Serif", "Bitstream Vera Serif", "DejaVu Serif", 'Times', 'Times New Roman', 'Constantia', serif;
	font-weight: normal;
	font-size: 24px;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 10px;
}

#content h2,#content h3,#content h4,#content h5,#content h6 {
	font-family: 'Georgia', "Liberation Serif", "Bitstream Vera Serif", "DejaVu Serif", 'Times', 'Times New Roman', 'Constantia', serif;
	font-weight: normal;
	font-size: 24px;
}

blockquote {
	font-size: 12.5px;
	font-family: Arial, 'Times', 'Times New Roman', sans-serif;
	color: #666;
}

indent {
	font-size: 12px;
	font-family: Arial, 'Times', 'Times New Roman', sans-serif;
	color: #666;
}

.node .terms-inline ul.links {
	display: inline;
}

.node .terms-inline  ul.links li {
	padding: 0;
}


