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


.node /* Node wrapper */ {
}

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

.node-promoted /* A node that has been promoted to the front page */ {
}

.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 */ {
	background: transparent url(../images/bg-question.png) repeat-x 0% 0%;
border-bottom: 1px solid #EFEFEF;
float: left;
overflow: hidden;
padding: 11px 0px 10px;
width: 100%;
min-height:80px;
}

/* All nodes are given a node-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-my-custom-type" class.
 */
.node-page /* Page content node */ {
}

.node-article /* Article content node */ {
}

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

h2.node-title a/* Node title */ {color: #2F6CA4;
font-size: 16px;
font-weight: normal;
line-height: 19px;
margin-bottom: 20px;
}
h2.node-title a:hover{color: #5FABE8;text-decoration: none;-webkit-transition:all 0.3s ease-in;-moz-transition:all 0.3s ease-in;transition:all 0.3s ease-in;}
.node .user-picture /* The picture of the node author */ {
}

.node .submitted /* The "posted by" information */ {padding-top: 4px;
white-space: nowrap;
width: auto;color: #999;
float: right;
font-size: 12px;
line-height: 18px !important;
}
.node .submitted span { margin-right:10px;
}

.node .submitted-info{padding-top: 4px;white-space: nowrap;width: auto;color: #999;float: right;font-size: 12px;line-height: 18px !important;width:300px;}
.node .submitted-info span { margin-right:10px; float:left;}
.node .submitted-info h1{font-size:16px; padding:0; margin:0;}
.node .submitted-info .badge, .gravatar .badge{background-color: #999;padding: 1px 3px;font-size: 10px;font-weight: bold;line-height: 1.9;text-transform: uppercase;color: white;background: #AAA url(/images/glass.png) repeat-x 0 50%;-webkit-border-radius: 3px;-moz-border-radius: 3px;border-radius: 3px;}

.submitted .badge{background-color: #999;padding: 0px 3px;font-size: 10px;font-weight: bold;line-height: 1.9;text-transform: uppercase;color: white;background: #AAA url(/images/glass.png) repeat-x 0 50%;-webkit-border-radius: 3px;-moz-border-radius: 3px;border-radius: 3px;}

.node .submitted-info .badge a, .gravatar .badge a, .users .user-info .badge a, .submitted .badge a{color:#FFF;}
.node .submitted-info .badge a:hover, .gravatar .badge a:hover, .users .user-info .badge a:hover, .submitted .badge a:hover{color:#000; text-decoration:none;}

.node .submitted-info .user-details{float:left;}
.node .submitted-info ul{margin:8px 0; padding:0;}
.node .submitted-info ul li{margin:8px 0; padding:0;}


.node .content /* Node's content wrapper */ {
}

.node ul.links /* Node links. See also the ul.links declaration in the pages.css. */ {
}
