/*
art.css - by Orjan Hansson, ohwada.se

Cascading style sheet for putting together the CSS framework for the design of 
the Insiktutveckling.se Web site.
Based on an article by Jeff Croft in ALA:
http://www.alistapart.com/articles/frameworksfordesigners

Version 1.3, 2010-02-20:
	Lowered the height in #sideText to move the picture up.
Version 1.4, 2010-02-28:
	Made #sideText transparent and put kvist125px.jpg at bottom of #container.
*/

@import "reset_v10.css"; /* Handles the mass reset of default browser styles */
@import "type_v11.css"; /* Handles the typography */
@import "grid_4col_v12.css"; /* Handles the layout grid */
@import "widgets_v11.css"; /* Handles things like menus, hidden */
@import "color_insutv_v10.css"; /* Handles the colors of the site */

/* The following are special settings for Insiktutveckling.se */

#container {
	background: #fff url('img/kvist145.jpg') no-repeat bottom left;
}
#header {
	text-align: right;
}
#sideText {
/*	height: 378px;*/ /* 21 lines of height 18px */
/*	height: 396px;*/ /* 22 lines of height 18px */
	height: 342px; /* 19 lines of height 18px */
	text-align: right;
	background: transparent;
}
#leftColumn {
	text-align: center;
}
#footer {
	padding: 0;
/*	padding: 1.25em 1em 0 0;*/ /* 1em is 16px */ /* This should push down the footer but doesn't work! */
	text-align: left;
}
a {
	font-weight: bold; /* To make it bold in the menu in sideText */
}
.subnav a, #mainText a {
	font-weight: normal; /* To restore it to normal everywhere else */
}
a:hover, a.current {
	text-decoration: underline; /* The links will be underlined when the mouse is over them or if class="current" */
}

