/*
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/
*/
.custom #page {font-size: 90%;}

#header { background: url(http://thecafeacademy.co.uk/wp-content/uploads/2010/01/headbkgd3.jpg) no-repeat top center; height: 120px; }
#logo, #tagline { padding-left: 210px; }
.headline_area { display: none; }
#sidebar_1 { background: #d9d919; -moz-border-radius: 20px; -webkit-border-radius: 20px; border-radius: 10px ; margin-top: 10px; margin-bottom: 10px; }
#sidebar_2 { background: #d9d919; -moz-border-radius: 20px; -webkit-border-radius: 20px; border-radius: 10px ; margin-top: 10px; margin-bottom: 10px; }

.custom ul.tooliconsmall { /*this is my class name you can choose your own*/
	line-height: 25pt;
	color: steelblue;
	padding-left: 20px; /*padding and margin should be identical*/
	margin-left: 20px;
list-style: disc url(http://thecafeacademy.co.uk/wp-content/uploads/2010/01/tick.gif) inside; /*make sure to
choose the url to your own image, relative path works fine as this url*/
}

.boxed { border: 1px solid #000; padding: 5px; margin-bottom: 5px; }
.boxyell { border: 1px solid #000; padding: 5px; margin-top: 0; margin-bottom: 5px; background: #d9d919; font-size: 1.5em; font-weight: 900; }
h2 { padding: 0; margin: 0; text-align: center; }
#sidebar_1 h3 { font-weight: 900; font-size: 2.0em; text-align: center; }
#sidebar_2 h3 { font-weight: 900; font-size: 2.0em; text-align: center; }

.custom #column_wrap {width:810px;}
.custom #content {width:590px;}

.centunbox { text-align: center; padding-bottom: 5px; }

.teaser-row
{
    float:left;
}
.teaser-row h3
{
    font-size:2em;
    background-color:red;
    padding:5px;
    color:white;
    margin-top:20px;
}

.custom .prev_next, .custom .post_nav { display: none; }
