/*
File:			custom.css
Description:	Custom styles for Thesis
Edited: 		Annica Thomsson / anico.no
Last change		2009-12-31

I am hacking the width of the design here for sheer laziness (or because I can't see how to do it in the wordpress settings file. Just remember to change the widths accordingly when I change the width of the design in params


*/

/*
Setting the body width manually is a hack, since I would like to right align the design. But the downside is that I must redefine the body width every time I change the design width.
*/

.custom #container { width: 85em; }

body.custom {
	width: 85em;	
}

.custom #content_box {  background: url('images/dot-ddd.gif') 70em 0 repeat-y; }

.custom #header {
	margin-left: 10px;
	height: 265px;
	background: url(/wp-content/themes/thesis_16/jon-terje-images/topp-hjem.jpg) no-repeat;
	border-bottom: none;
}

/* hack a la hack - må bort! */
/* endre høyden på hver post */
.custom .post_box { padding-top: 0em;
	text-align: left;
	vertical-align: top;
	line-height: normal;
}

.custom .headline_area h1, .headline_area h2 { font-size: 1em; line-height: 0em; }


/*
We set the CSS style with Thesis styling and thus replacing the top header solely with CSS. Neat, Thesis!
*/

.om_meg #header {background:url(/wp-content/themes/thesis_16/jon-terje-images/topp-om-meg.jpg) center top no-repeat;}

.lytt #header {background:url(/wp-content/themes/thesis_16/jon-terje-images/topp-lytt.jpg) center top no-repeat;}

.presseklipp #header {background:url(/wp-content/themes/thesis_16/jon-terje-images/topp-pressklipp.jpg) center top no-repeat;}

.kontakt #header {background:url(/wp-content/themes/thesis_16/jon-terje-images/topp-kontakt.jpg) center top no-repeat;}



.custom #header #logo {
	font-size: 16px;
	font-style:normal;
	font-weight:normal;
	position: relative;
	top: 240px;
	left: 245px;
}


.custom #header #tagline {
				visibility:hidden;
	position: relative;
	top: 245px;
	left: 245px;
}

.custom h1 { color: #bc3526;  }
.custom h1 a { color: #bc3526; }

.custom h2 { color: #bc3526; margin-top:10px; text-transform:uppercase;}
.custom h2 a { color: #bc3526;text-transform:uppercase; }

.custom h3 { color: #bc3526; font-size:14px; }
.custom h3 a { color: #bc3526;  font-size:14px;}

.custom #content { margin-left: 30px;
width: 620px; }


.custom  #container {
background: url(/wp-content/themes/thesis_151/jon-terje-images/skugga-venster.jpg) repeat-y left;

}

.custom #page { margin-left: 68px; 
background: url(/wp-content/themes/thesis_151/jon-terje-images/skugga-hoger.jpg) repeat-y right;}

/* endre formatering av navigasjonstabs*/

.custom #tabs { 
	width: 700px; 
	border: 0px solid #ddd; 
	border-width: 0 0 0px 0px; 
	position: relative;
	top: 310px;
	left: 34px}

.custom	#tabs li { margin-bottom: -0.1em; background: #fff; border: 0px solid #ddd; border-left: 0; float: left; }

/* endre høyden på hver post */
.custom .post_box { padding-top: 1em; }


/* skjule sidenavn */

.custom .headline_area { visibility: hidden; }


/* skjule sidebar */

.custom #sidebars { visibility: hidden; }

/* skjule coments */

.custom #comments { visibility: hidden; }


/* skjule footer strek */
.custom #footer { 
	border-top: 0px;

}

/*
BASIC USAGE:

If you have enabled the custom stylesheet in the Thesis options panel, the <body> tag 
will be appended with the "custom" class, like so: <body class="custom">. You can use 
the "custom" class to override *any* CSS declarations contained in the style.css file.

For example, if you wish to change the default link color to green, you would add the 
following declarations to this file:

	.custom a, .custom a:visited { color: #090; }	<--- This makes links green
	.custom a:hover { color: #00f; }				<--- This makes links blue when you mouse over them

WHY THIS WORKS:

By using the "custom" class, you are creating more specific CSS declarations for HTML
elements. CSS styling is applied through rules of specificity, and because declarations
prepended with .custom are more specific, they get applied when the page is rendered!

More information about styling your Thesis installation using this file can be found
in the User's Guide:
	http://diythemes.com/thesis/rtfm/customizing-thesis-with-customcss/
*/