/*
File:			custom.css
Description:	Custom styles for Thesis
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/
*/
body {
background:url(http://www.highlandwebdesign.co.uk/wp-content/themes/thesis_16/custom/images/bg.jpg);
}
/* Include the Header image */
.custom #header { 
position: relative;
border-bottom:none;
height:150px;
padding-top:0;
padding-bottom:0;
background:url(http://www.highlandwebdesign.co.uk/wp-content/themes/thesis_16/custom/images/header.jpg);
}
.custom #header #logo { padding: 40px 0;}
.custom #header #logo a:hover{ color: #fff; text-decoration: underline;}
.custom #multimedia_box { margin: 20px 0 20px 0;}
.custom .btn { background: #ff0000; color: #fff;}

.custom #header #logo { display:none; }
.custom #header #tagline { display:none; }
/* End Header image */

/* Header Widget */
.custom .sidebar ul.sidebar_list {position: relative;}
.custom #header_widget_1 ul.sidebar_list li.widget {position: absolute; display: block; top:0px; left:510px; width:468px; }
/* Header Widget */

/* Color sidebars 
.custom #content_box {background-color:#EEEEEE;}
.custom #content {background-color:#fff;} 
End Color sidebars */
/* Menu */
.custom ul.menu li {
padding-right: 3em;
}
/* Map */
.custom #map {
width: 429px;
height: 229px;
background:url(http://www.highlandwebdesign.co.uk/wp-content/themes/thesis_16/custom/images/map.png);
position: absolute; 
top: 0; 
left: 60%;
z-index: 100;
}
/* Menu Bar */
.custom #top_div { 
background:url(http://www.highlandwebdesign.co.uk/wp-content/themes/thesis_16/custom/images/menu_bg1.jpg);
width: 100%; 
height: 35px; 
position: absolute; 
top: 149px; 
}
/* Footer */
.custom #footer { 
background:url(http://www.highlandwebdesign.co.uk/wp-content/themes/thesis_16/custom/images/bg.jpg);
}
/* Posts */
.custom .entry-title {
font-size: 1.5em;
padding: 0 0 0 40px;
height: 30px;
background:url(http://www.highlandwebdesign.co.uk/wp-content/themes/thesis_16/custom/images/wp.jpg) no-repeat left center;
}
/* Comments closed */
.custom .comments_closed {
display: none;
}
.custom .to_comments {
display: none;
}
/* Text transitions */
.custom h1, h2 {
text-shadow: -1px 1px 1px rgba(2,0,0,.2);
}
/* User guides */
.custom #guides {
background: #DDDDDD;
padding: 10px 5px 5px 20px;
border: 1px solid #000;
}
.custom .user a {
font-size: 12px;
line-height: 25px;
}
/* User guides */
.custom #guides {
background: #DDDDDD;
padding: 10px 5px 5px 20px;
border: 1px solid #000;
}
.custom .user a {
font-size: 12px;
line-height: 25px;
}
/* Portfolio images */
img {
	border: none;	
}
.custom .portfolio a img {
	border: 1px solid #000;
}
.custom .portfolio a:hover img {
	border: 2px solid #ff0000;
}
