/* -------------------------------------

Title : CSS for ExploreSteamboat.com
Author : Jeff Croft for World Online
URL : http://exploresteamboat.com

Description : The base stylesheet imports other stylesheets and provides basic styling for XHTML elements.

---------------------------------------- */


/* Core stylesheets */
@import url("layout.css"); 
@import url("navigation.css"); 
@import url("typography.css"); 
@import url("homepage.css"); 
@import url("comments.css"); 
@import url("misc.css"); 
@import url("inlines.css"); 

/* Page/section-specific stylesheets */



/* Neutralize styling:
   Remove padding and margin on some elements: */
html, body, form, fieldset {
	margin: 0;
	padding: 0;
}

/* Neutralize styling:
   Linked image should not have borders */
a img {
	border: none;
}

/* Neutralize styling:
   Elements with a vertical margin: */
h1, h2, h3, h4, h5, h6, p, pre,blockquote, ul, ol, dl, address {
	margin: 1em 0;
	padding: 0;
}

ol {
  list-style-type: inside;
  margin-left: 2em;
}

dt {
  font-weight: bold;
  margin-top: 1em;
}

dl.place-list dt {
	font-weight: normal;
}

dl.place-list dt strong {
	font-weight: bold;
	font-size: 1.25em;
}

dl.place-list dt a {
	text-decoration: none;
}

dl.place-list dt a:hover {
	color: #461F00;
	text-decoration: underline;
}

dd {
  margin-left: 0;
  padding-left: 0;
}

/* Apply left margin:
   Only to the few elements that need it: */
blockquote {
	margin-left: 1em;
}

/* Miscellaneous conveniences: */
label {
	cursor: pointer;
}
fieldset {
	border: none;
	margin: 0;
	padding: 0;
}

/* Form field text-scaling */
input, select, textarea {
	font-size: 12px;
	padding: 0 5px;
	font-family: "Lucida Grande", Verdana, Arial, Helvetica, serif;
}

/* Redefine standard XHTML elements
----------------------------------------------- */

body {
    background-image: url('body-background.gif');
    background-repeat: repeat-x;
    background-color: #D7D3B0;
    color: #461F00;
    font-size: 62.5%;
    font-family: "Lucida Grande", Verdana, Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    color: #461F00;
    font-family: Georgia, serif;
    font-weight: normal;
    margin: 0 0 .5em 0;
}

h1 {
    font-size: 2.2em;
}

h2 {
    font-size: 2.0em;
}

h3 {
    font-size: 1.8em;
    color: #31522D;
}

h4 {
    font-size: 1.5em;
    color: #31522D;
	font-weight:bold;
}

a:link,
a:visited,
a:active {
    color: #31522D;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}