@charset "UTF-8";

* {
	margin:0;
	padding:0;
}


body {
	background: #fff;
	background-image:url(images/ideasbackground_03.png); background-repeat:repeat-x;
	font-family: Sans-Serif;
	margin: 0;
	padding: 0;
	color: #000;
}

/* This code below eliminate Jumps in Horizontal Centering By Forcing a Scroll Bar @http://css-tricks.com/eliminate-jumps-in-horizontal-centering-by-forcing-a-scroll-bar/ */
html {
        overflow-y: scroll;
}


#ul, ol, dl { 
	padding: 0;
	margin: 0;
}

#construction {
	height: 500px;
	margin-top:300px;
	width:500px:
	align:auto;
	margin: 0;
	}

h1 {
	color: #000;
	font-weight:bold;
	font-size:21px;
	font-family: Sans-Serif;
	margin-top: 0;	
	padding-top:0px;
	padding-bottom:0px;
	padding-right: 15px;
	padding-left: 15px;
	text-align:left;
}


h2 {
	color: #000;
	font-weight:bold;
	font-size:17px;
	font-family: Sans-Serif;
	margin-bottom: -6px;
	margin-top: 0;	
	padding-top:10px;
	padding-bottom:0px;
	padding-right: 15px;
	padding-left: 15px; 
	text-align:left;
}


h3 {
	color: #000;
	font-weight:bold;
	font-size:15px;
	font-family: Sans-Serif;
	margin-bottom:-6px;
	margin-top: 5px;	 
	padding-top:10px;
	padding-bottom:-10px;
	padding-right: 15px;
	padding-left: 15px; 
	text-align:left;
}

p {
	font-size:14px;
	font-family: Sans-Serif;
	margin-bottom:10px;
	margin-top:10px;
	line-height:20px;
	padding-right: 15px;
	padding-left: 15px;
	text-align:left;
}


signoff {
	clear:both;
	font: 80%;
	margin-bottom:10px;
	margin-top:10px;
	padding-right: 15px;
	padding-left: 15px;
	text-align:centre;
	}

a img { 
	border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #f57f20;
	text-decoration: underline; 
}
a:visited {
	color: #f57f20;
	text-decoration: underline;
}
a:hover, a:active, a:focus { 
	text-decoration: none;
}

/* ~~this fixed width container surrounds the other divs~~ */
#container {
	width: 950px;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}

/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
#header {
	background: url(images/ikheadbanner_04.png);
	width: 950px;
	height: 200px;
}

#sidebar1 {
	background:url(images/leftsidebarshadow.png) no-repeat;
	float: left;
	height:600px;
	width: 150px;
	padding-bottom: 10px;
	padding-top:15px;
}

#sidebar2 {
	float: right;
	margin-bottom:20px;
	width: 250px;
	padding: 10px 0;
}

		#sidebar2 h2{
			color: #f57f20;
			font:Verdana, Arial, Helvetica, sans-serif;
			margin-top: 0;	 
			padding-top:20px;
			padding-bottom:0px;
			padding-right: 15px;
			padding-left: 15px; 
			text-align:left;
		}	
		
		#sidebar2 p {	
			font-size:11px;
			text-align:left;
			margin-bottom:-4px;
		}

#content {
	padding: 10px 0;
	width: 540px;
	float: right;
}

#content_centre {
	margin-top:10px;
	padding: 10px 0;
	width: 540px;
	float: left;
}



/* ~~ This grouped selector gives the lists in the .content area space ~~ */
#content ul, #content ol { 
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}


/*
* a tutorial on how this menu works is at:
	http://www.webvamp.co.uk/blog/coding/graphical-css-rollover-menu/#example
Fraser
*/
ul.sidemenu {
	list-style: none;
	padding: 0px;
	}

.displace {
	position: absolute;
	left: -5000px;
	}

ul.sidemenu li {
	float: left;
	}

ul.sidemenu li a {
	display: block;
	width: 130px;
	height: 70px;
	background:url(images/IdeasKitchenSidebarbuttons.png)
	}

/*
*	Normal Links
*/
ul.sidemenu li.home a {
	background-position: 0 0;
	}

ul.sidemenu li.services a {
	background-position: 0px -70px;
	}

ul.sidemenu li.news a {
	background-position: 0px -140px;
	}
	
ul.sidemenu li.casestudy a {
	background-position: 0px -210px;
	}

/*
*	Hover Links
*/
ul.sidemenu li.home a:hover {
	background-position: -130px 0;
	}

ul.sidemenu li.services a:hover {
	background-position: -130px -70px;
	}

ul.sidemenu li.news a:hover {
	background-position: -130px -140px;
	}

ul.sidemenu li.casestudy a:hover {
	background-position: -130px -210px;
	}

/*
*	Clicked Links
*/
ul.sidemenu li.home a:active {
	background-position: -260px 0px;
	}

ul.sidemenu li.services a:active {
	background-position: -260px -70px;
	}

ul.sidemenu li.news a:active {
	background-position: -260px -140px;
	}

ul.sidemenu li.casestudy a:active {
	background-position: -260px -210px;
	}

/*
*	Selected/Active Links
*/
ul.sidemenu li.home a.selected {
	
	}

ul.sidemenu li.services a.selected {
	
	}

ul.sidemenu li.news a.selected {
	
	}

ul.sidemenu li.casestudy a.selected {

	}


/* ~~ This highlights the current page in the nav menu.
The body tag at the top of each page has been altered to match these IDs
and the nav bars all have a matching ids in each link.
When adding a new page, you must update in all three places ie:
1. In the code below,
2. The Body tag at the top of each page and 
3. in the nav list of links. */
body#index a#menu-index {
	background-position: -390px 0px;
	}
body#services a#menu-services {
	background-position: -390px -70px;
	}
body#news a#menu-news {
	background-position: -390px -140px;
	}
body#casestudy a#menu-casestudy {
	background-position: -390px -210px;
	}



/* ~~ The footer ~~ */
#footer {
	background:url(images/ikfooter.png);
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
	padding-bottom:38px;
	text-align:center;
	width: 950px;
}


	#footer ul, ol, dl { 
		color:#000;
		margin-left: 15px;
		padding-top: 0px;		
		}

	#footer li {
		display: inline;
		}

	#footer a:link {
		color:#000; 
		margin-right:15px;
		padding-top: 0px;
		text-decoration: none;
		}

	#footer a:visited {
		color:#000; 
		margin-right:15px;
		padding-top: 0px;
		text-decoration: none;
		}
		
	#footer a:hover, a:active, a:focus {
		color:#fff;
		font-weight:bold;
		margin-right:15px;
		padding-top:0px;
		text-decoration:none;
		}


#credits {
	font-size:12px;
	color:#f57f20;
	text-align:center;
}
#credits a:link, #credits a:visited {
	color: #f57f20;
	text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
	padding-right: 20px;
}
#credits a:hover, #credits a:active, #credits a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: underline;
}




/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}


