/* 
Theme Name: Moving Again Custom Theme
Theme URI: http://movingagain.com.au/
Description: three column
Version: 1.0
Author: Kickass Web Design
Author URI: http://www.kickasswebdesign.com/
*/

/*******************************************************************************
*  skidoo_too.css : 2005.08.29
* -----------------------------------------------------------------------------
*  A remake of the skidoo layout with the middle column appearing first in
*  source ordering.
*******************************************************************************/

/* begin with generic selectors so that they can be overridden if needed
 * by classes deeper in the stylesheet
 */
.clear {
	clear: both;
	padding-bottom: 1px;	/* for Gecko-based browsers */
	margin-bottom: -1px;	/* for Gecko-based browsers */
}
.hide {
	display: none !important;
}
.inside, .insideright {
	/* glitch in IE caused by vertical padding in this class, so 0 padding is
	 * set here and those blocks that need the vertical padding must be 
	 * applied to the parent element. the purpose of this class is to provide
	 * horizontal padding without using hacks to get around IE's broken box 
	 * model. so it's okay to apply vertical padding to the parent element, 
	 * just not horizontal padding.
	 */
	padding: 0 1em;
}

/* margin values and font sizes for headings, and margins on paragraphs
 * and lists are not consistent across browser platforms. to achieve a
 * consistent look we need to explicity set these values here. it may
 * seem an odd way to declare the margins like this but you never
 * know what kind of horizontal padding a browser may be using on an
 * element, and I only want to change the vertical padding.
 *
 * pixels are used here, rather than ems, because I want a consistent
 * margin on the different headings. if I use ems, 1em for an h1 element
 * is much larger than 1em on an h6 element. I don't wnat this.
 *
 * salt to taste
 */
ul, ol, dl,h1, h2, h3, h4, h5, h6 {
	margin-top: 5px;
	margin-bottom: 0px;
	padding-top: 0;
	padding-bottom: 0;
	color:#036;
}

h1{
	font-size: 180%;
	letter-spacing:-1px;
}
h2 {
	font-size: 155%;
	letter-spacing:-1px;
}
h3 {
	font-size: 133%;
	letter-spacing:-1px;
}
h4 {
	font-size: 115%;
}
h5 {
	font-size: 100%;
}
h6 {
	font-size: 90%;
}

p {
	margin-top:3px;
	line-height:150%;
}

/* alter some HTML elements' default style
 */
a, a:link, a:visited, a:active {
	color:#33c;
	text-decoration: underline;
}
a:hover {
	color:#c33;
	text-decoration: underline;
}

label {
	cursor: pointer;
}
table {
	font-size: 100%;
}
td, th {
	vertical-align: top;
}

/* now we craft the core layout of the page. this includes positioning and
 * gutter space. colors and fonts should not come into play at this point.
 * when defining a border, default its color to white which is probably
 * the safest thing to do.
 */
body {
	margin: 15px 2%;	/* margin instead of padding for the gutterspace around 
	 			   the layout because IE breaks the layout when 
	 			   horizontal padding is applied to the body element.
	 			   % over pixels for that horizontal gutterspace so that
	 			   it automatically goes below 20px on low-res browsers
	 			   to create more space for the content. */
	font-size: 100.1%;	/* resolve some font size issues in some layouts for some browsers. (in other words, i got no clue.) */

}
#pageWrapper {
	border: solid 1px #fff;
	border-width: 0 1px;
	min-width: 40em;	/* IE doens't understand this property. EMs are used
				   so that as the font size increases, the proportional
				   limitations (min-width) increase with it, rather
				   than creating a middle column that can only fit
				   3 or 4 characters in it. */
	width: auto;
}
#masthead {
	border-top: solid 1px #000; 
	border-width: 1px 0;
	padding: 0px;
	height:160px;
	background:url(images/moving-again-header-new.jpg) bottom left no-repeat;
}
#masthead h1 {
	padding: 0;
	margin: 0;
}
#outerColumnContainer {
	/* reserves space for the left and right columns. you can use either
	 * padding, margins, or borders, depending on your needs. however you
	 * can use the border method to create a background color for both left
	 * and right columns
	 */
	border-left: solid 14em #fff;
	border-right: solid 14em #fff;
}
#innerColumnContainer {
	border: solid 1px #fff;
	border-width: 0 1px;
	margin: 0 -1px;		/* compensate for the borders because of 100% width declaration */
	width: 100%;
	z-index: 1;
}
#leftColumn, #middleColumn, #rightColumn, * html #SOWrap {
	overflow: visible;	/* fix for IE italics bug */
	position: relative;	/* fix some rendering issues */
}
#SOWrap {
	float: left;
	margin: 0 -1px 0 0;
	width: 100%;
	z-index: 3;
}
#middleColumn {
	float: right;
	margin: 0 0 0 -1px;
	width: 100%;
	z-index: 5;
}
#leftColumn {
	float: left;
	margin: 0 1px 0 -14em;
	width: 14em;
	z-index: 4;
}
#rightColumn {
	float: right;
	width: 14em;
	margin: 0 -14em 0 1px;
	z-index: 2;
	font-size:95%;
	line-height:100%;
}
#footer {
	border: solid 1px #fff;
	border-width: 1px 0;
	padding: 0.5em;
	clear: both;
}

p.fontsize-set {
	text-align: center;
}
p.fontsize-set img {
	border-width: 0;
}

/* vertical navigation stuff. mostly exactly as seen in the vnav.css styleheet
 * in the original skidoo layout.
 */
.vnav {
	margin: 1em 0;
}
.vnav ul, .vnav ul li {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: block;
}
.vnav ul {
	border: solid 1px #fff;
	border-bottom-width: 0;
}
.vnav ul li {
	border-bottom: solid 1px #fff;
}
.vnav ul li, .vnav ul li a {
	margin: 0;
	display: block;
	padding: 0;
	line-height: normal;
}
.vnav ul li a {
	display: block;
	padding: 2px 5px 3px 5px;
}
.vnav ul li a, .vnav ul li a:link, .vnav ul li a:visited, .vnav ul li a:active, .vnav ul li a:hover {
	text-decoration: none;
	cursor: pointer;
}
.vnav h3, .vnav h2 {
	margin-bottom: 0;
	padding-bottom: 0;
	font-size: 126%;
}
.v2nav {
	margin: 1em 0;
}
.v2nav ul, .v2nav ul li {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: block;
}
.v2nav ul {
	border: solid 1px #fff;
	border-bottom-width: 0;
}
.v2nav ul li {
	border-bottom: solid 1px #cdc;
}
.v2nav ul li, .v2nav ul li a {
	margin: 0;
	display: block;
	padding: 0;
	line-height: normal;
}
.v2nav ul li a {
	display: block;
	padding: 2px 5px 3px 5px;
}
.v2nav ul li a, .v2nav ul li a:link, .v2nav ul li a:visited, .v2nav ul li a:active, .v2nav ul li a:hover {
	text-decoration: none;
	cursor: pointer;
}
.v2nav h3, .v2nav h2 {
	margin-bottom: 0;
	padding-bottom: 0;
	font-size: 126%;
	text-align: center;
}


/* horizontal navigation elements. create a DIV element with the class hnav
 * and stick one unordered list inside it to generate a horizontal menu.
 */
.hnav {
	border-top:solid 1px #000;
	text-align: left;
}
.hnav, .hnav ul li a {
	/* need to middor veritcal padding on .hnav and child anchor elements
	 * because the anchors are _not_ block elements. since they are not
	 * block elements web browsers will not expand .hnav to contain them
	 * even with the extra padding. by applying the same padding to both
	 * the parent .hnav _looks_ like its containing the child anchor
	 * elements. 
	 */
	padding-top: 3px;
	padding-bottom: 4px;
}
.hnav ul, .hnav ul li {
	display: inline;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.hnav ul li a {
	margin: 0 -1px 0 0;
	padding-left: 10px;
	padding-right: 10px;	/* short-hand padding attribute would overwrite  top/bottom padding set in a previous rule */
	border: solid 1px #000;
	white-space: nowrap;
}
.hnav ul li a:link, .hnav ul li a:visited, .hnav ul li a:active, .hnav ul li a:hover {
	text-decoration: none;
}
.hnav ul li span.divider {
	display: none;
}

/* everything below this point is related to the page's "theme" and could be
 * placed in a separate stylesheet to allow for multiple color/font scemes on
 * the layout. you should probably leave a default theme within this stylesheet
 * just to be on the safe side.	
 */
#pageWrapper, #masthead, #innerColumnContainer, #footer, .vnav ul, .vnav ul li, .hnav, .hnav ul li a {
	border-color: #000;
}
.v2nav ul {
	border-color: #cdc;
}
.v2nav ul li ul, .v2nav ul li ul li {
	border-color: #000;
}
html, body {
	/* note that both html and body elements are in the selector.
	 * this is because we have margins applied to the body element
	 * and the HTML's background property will show through if
	 * it is ever set. _DO_NOT_ apply a font-size value to the
	 * html or body elements, set it in #pageWrapper.
	 */
	background-color: #ccf;
	color: #000;
	background:url(images/body-bg.jpg);
	font-family: arial, helvetica, sans-serif;
}
#pageWrapper {
	font-size: 80%;	/* set your default font size here. */
}
#masthead {
	/* background-color: #898; */
	color: #fff;
	border-bottom:1px solid #000;
}
.hnav {
	padding:15px 0 0 10px;
	/* background-color: #898; */
	color: #fff;
}
#outerColumnContainer {
	border-left-color: #ebebeb;	/* left column background color */
	border-right-color: #cdc;	/* right column background color */
	background-color: #fff;		/* set the background color for the middle column here */
}
.vnav ul li a:link, .vnav ul li a:visited, .vnav ul li a:active {
	text-decoration: none;
	background-color: #cdc;
	color: #000;
	text-align:right;
}
#rightColumn .vnav ul li a:link, #rightColumn .vnav ul li a:visited, #rightColumn .vnav ul li a:active {
	background-color: #ded;
}
.vnav ul li a:hover, #rightColumn .v2nav ul li a:hover {
	text-decoration: none;
	background-color: #036;
	color: #fff;
}
.v2nav ul li a:link, .v2nav ul li a:visited, .v2nav ul li a:active {
	text-decoration: none;
	background-color: #cdc;
	color: #000;
	text-align:right;
}
#rightColumn .v2nav ul li a:link, #rightColumn .v2nav ul li a:visited, #rightColumn .v2nav ul li a:active {
	background-color: #ded;
}
.v2nav ul li a:hover, #rightColumn .v2nav ul li a:hover {
	text-decoration: none;
	background-color: #036;
	color: #fff;
}
#rightcolumn .v2nav ul {
	padding-bottom: 0;
}
#rightcolumn .v2nav ul li ul {
	margin-bottom: 0;
}
.hnav ul li a:link, .hnav ul li a:visited {
	background-color: #bcb;
	color: #000;
}
.hnav ul li a:hover {
	background-color: #787;
	color: #fff;
}
#rightColumn .insideright {
	/* if you apply a font size to just #rightColumn, then its width,
	 * which is specified in EMs, will also be affected. you don't want
	 * that. so apply font size changes to the .inside element which exists
	 * inside underneath all three columns
	 */
	font-size: 90%;
}
#rightColumn .insideright .v2nav {
	font-size: 110%;
	padding-bottom: 0;
}

#footer {
	background-color: #fff;
	color: #fff;
	text-align: center;
}

/******************************************************************************/
/* floated images */
.floatright1 {
	float: right;
/*	margin: 0 0 6px 2px; */
	padding: 2px;
}
.floatleft1 {
	float: left;
	margin: 0px 6px 2px 0px;
	padding: 2px;
}
img {
	border:none;
}

/* different horizontal nav */

#navcontainer {
	text-align:right;
}
ul#navlist
{
margin-left: 0;
padding-left: 0;
white-space: nowrap;
}

#navcontainer {
	padding:5px 0 0 10px;
}
#navlist li {
display: inline;
list-style-type: none;
}

#navlist a { padding: 3px 5px; }

#navlist a:link, #navlist a:visited {
color: #fff;
background-color: #036;
text-decoration: none;
border:1px solid #fff;
}

#navlist a:hover {
color: #333;
background-color: #cdc;
text-decoration: none;
border:1px solid #000
}

#leftside { 
	float:left;
	font-size:11px;
	padding-bottom:3px;
}
#rightside { 
	text-align:right;
	padding-bottom:3px;
 }
 #textlogo {
 	display:none;
}
#copyr {
	display:none;
}

fieldset {
	border: #26a solid 1px;
	padding-bottom:0px; 
	padding-top:0px; 
	margin-top:10px;
}
legend {
	background: #eee;
	border: #26a solid 1px;
	padding: 1px 10px;
	font-weight:bold;
	color:#336;
	font-family:arial, helvetica, sans-serif;
}
.submit { 
	background-color:#669; 
	color:#fff;
	font-weight:bold;
}
input,textarea { 
	border:1px solid #339; 
	background-color:#f7f7f7;
}

/* lists in content */
.inside ul {
	list-style-type:none;
	margin-bottom:10px;
}
/*.inside ul li {
	text-indent:1.5em;
	background-image: url(images/bullet_blu.gif);
	background-repeat: no-repeat;
	background-position: 0 .3em;
}*/

/* special paragraph classes for effects */
.quote {
	color:#003;
	padding:5px;
	margin:15px 0 15px 0;
	background:url(images/quote-bg.gif) top left no-repeat;
	background-color:#eee;
	border:1px solid #333;
	text-indent:35px;
}
.box {
	color:#003;
	padding:5px;
	margin:15px 10px 15px 10px;
	background-color:#fff;
	border:1px solid #339;
}
.question {
	margin-left:20px; 
	margin-bottom:0px; 
	font-weight:bold;
	padding:2px;
	color:#c00;
	background:url(images/back-q.gif) top left no-repeat;
	text-indent:30px;
}
.answer {
	margin-left:20px; 
	margin-top:3px; 
	padding:2px;
	background:url(images/back-a.gif) top left no-repeat;
	background-color:#eee; 
	text-indent:30px;
}
.answer p {
	background-color:#eee;
}
a img {
	border: 0;
}
/*some basic wp classes to define the look of the blog elements*/
.center {
	text-align: center;
	margin-right: auto;
	margin-left: auto;
	padding-bottom: 5px;
}
.description {
	margin: 8px 0 20px 0;
}
.navigation {
	font-size: 70%;
	width: 100%;
	float: left;
	margin: 0;
}
/*last entry and next entry link classes */
.alignleft {
	float:left;
	width: 45%;
	margin: 0 15px 0 0;
	display: block;
}
.alignright {
	float:right;
	width: 45%;
	margin: 0 0 0 15px;
	display: block;
}

.postmetadata {
	padding-bottom: 10px;
	font-size: 85%;
}
.post {
	padding: 18px 5px;
	clear: both;
	border-bottom: 1px dotted #8e8eb5;
}
.post h2 a:link, .post h2 a:visited {
	text-decoration: none;
}
.post h2 a:hover {
	text-decoration: underline;
}
.entry {
	padding: 6px 0;
}	
.bloginfo {
	margin: 0; padding: 0;
}
#searchform {
	margin: 20px 0 10px 5px;
}
.searchbox {
	width: 120px;
	background: #fffff1;
}
#searchsubmit {
	background: #e8ebfc;
	color: #242424;
	margin: 2px 0 0 1px;
}
.clearA {
	overflow: hidden;
	clear:both;
	height:0;
	margin:0;
	font-size: 1px;
	line-height: 0;
}
	
