/* Stylesheet: CC : 3column_menu Modified On 2012-03-21 09:15:50 */
/*Stylesheet: CC : 3column_menu Modified On 2012-03-21 09:03:05
Stylesheet: CC : 3column_menu Modified On 2012-03-21 08:52:05
Stylesheet: CC : 3column_menu Modified On 2012-03-20 13:28:00
horizontal menu*/
#menu_vert
{
/*no margin/padding so it fills the whole div*/
	margin: 0;
	padding: 0;
}
.clearb
{
/*needed for some browsers*/
	clear: both;
}
#menuwrapper
{
/*set the background color for the menu here
IE6 Hack*/
	height: 1%;
	width: auto;
/*one border at the top*/
	margin: 0;
	padding: 0;
        float: right;
}
UL#primary-nav, UL#primary-nav UL
{
/*remove any default bullets*/
	list-style-type: none;
	margin: 0;
	padding: 0;
}
UL#primary-nav
{
/*pushes the menu div up to give room above for background color to show*/
	padding-top: 10px;
/*keeps the first menu item off the left side*/
	padding-left: 10px;
}
UL#primary-nav UL
{
/*make the ul stay in place so when we hover it lets the drops go over the content below else it will push everything below out of the way*/
	position: absolute;
/*top being the bottom of the li it comes out of*/
	top: auto;
/*keeps it hidden till hover event*/
	display: none;
/*same size but different color for each border*/
	border-top: 1px solid #C8D3D7;
	border-right: 1px solid #C8D3D7;
	border-bottom: 1px solid #ADC0C7;
	border-left: 1px solid #A5B9C0;
}
UL#primary-nav UL UL
{
/*now we move the next level ul down from the top a little for distinction*/
	margin-top: 1px;
/*pull it in on the left, helps us not lose the hover effect when going to next level*/
	margin-left: -1px;
/*keeps the left side of this ul on the right side of the one it came out of*/
	left: 100%;
/*sets the top of it inline with the li it came out of*/
	top: 0px;
}
UL#primary-nav LI
{
/*floating left will set menu items to line up left to right else they will stack top to bottom*/
	float: left;
/*no margin/padding keeps them next to each other, the padding will be in the "a"*/
	margin: 0px;
	padding: 0px;
}
#primary-nav LI LI
{
/*Set the width of the menu elements at second level. Leaving first level flexible.*/
	width: 220px;
/*removes any left margin it may have picked up from the first li*/
	margin-left: 0px;
/*keeps them tight to the one above, no missed hovers*/
	margin-top: -1px;
/*removes the left float set in first li so these will stack from top down*/
	float: none;
/*relative to the ul they are in*/
	position: relative;
}
/*set the "a" link look here*/
UL#primary-nav LI A
{
/*specific font size, this could be larger or smaller than default font size*/
	font: 1.2em Amaranth;
/*make sure we keep the font normal
set default link colors*/
	color: #631D31;
/*pushes out from the text, sort of like making links a certain size, if you give them a set width and/or height you may limit you ability to have as much text as you need*/
	padding: 12px 15px 15px;
	display: block;
/*sets no underline on links*/
	text-decoration: none;
	text-transform: lowercase;
}
UL#primary-nav LI A:hover
{
/*kind of obvious*/
	background-color: transparent;
}
UL#primary-nav LI LI A:hover
{
/*this is set to #000, black, below so hover will be white text*/
	color: #631D31;
}
UL#primary-nav LI A.menuactive
{
	color: #631D31;
/*bold to set it off from non active*/
	font-weight: bold;
/*set your image here*/
	border-bottom: 10px solid #C7E6E8;
}
UL#primary-nav LI A.menuactive:hover
{
	color: #631D31;
/*keep it the same*/
	font-weight: bold;
}
#primary-nav LI LI A.menuparent SPAN
{
/*makes it hold a shape*/
	display: block;
/*set your image here, right arrow, 98% over from the left, 100% or 'right' puts it to far*/
	background: url(/uploads/CC/parent.png) no-repeat 98% center;
}
/*gif for IE6, as it can't handle transparent png*/
* HTML #primary-nav LI LI A.menuparent SPAN
{
/*set your image here, right arrow, 98% over from the left, 100% or 'right' puts it to far*/
	background: url(/uploads/CC/parent.gif) no-repeat 98% center;
}
UL#primary-nav LI UL A
{
/*insures alignment*/
	text-align: left;
	margin: 0px;
/*keeps it relative to it's container*/
	position: relative;
/*less padding than first level no need for large links here*/
	padding: 6px 3px 6px 15px;
/*if first level is set to bold this will reset this level*/
	font-weight: normal;
/*first level is #FFF/white, we need black to contrast with light background*/
	color: #631D31;
	border-top: 0 none #000000;
	border-right: 0 none #000000;
	border-left: 0 none #000000;
}
UL#primary-nav LI UL
{
/*very lite grey color, by now you should know what the rest mean*/
	background: #F3F5F5;
	margin: 0px;
	padding: 0px;
	position: absolute;
	width: auto;
	height: auto;
	display: none;
	position: absolute;
	z-index: 999;
	border-top: 1px solid #FFFFFF;
	border-bottom: 1px solid #374B51;
/*Info: The opacity property is  CSS3, however, will be valid just in CSS 3.1) http://jigsaw.w3.org/css-validator2) More Options chose CSS3 3) is full validate;)*/
	opacity: 0.95;
/*CSS 3*/
}
UL#primary-nav LI UL UL
{
/*Info: The opacity property is  CSS3, however, will be valid just in CSS 3.1) http://jigsaw.w3.org/css-validator2) More Options chose CSS3 3) is full validate;)*/
	opacity: 95;
/*CSS 3*/
}
/*Styling the appearance of menu items on hover*/
#primary-nav LI:hover, #primary-nav LI.menuh, #primary-nav LI.menuparenth, #primary-nav LI.menuactiveh
{
/*set your image here, dark grey image*/
	background: #C7E6E8;
	color: #631D31;
}
/*The magic - set to work for up to a 3 level menu, but can be increased unlimited, for fourth level add
#primary-nav li:hover ul ul ul,
#primary-nav li.menuparenth ul ul ul,
*/
#primary-nav UL, #primary-nav LI:hover UL, #primary-nav LI:hover UL UL, #primary-nav LI.menuparenth UL, #primary-nav LI.menuparenth UL UL
{
	display: none;
}
/*for fourth level add
#primary-nav ul ul ul li:hover ul,
#primary-nav ul ul ul li.menuparenth ul,
*/
#primary-nav LI:hover UL, #primary-nav UL LI:hover UL, #primary-nav UL UL LI:hover UL, #primary-nav LI.menuparenth UL, #primary-nav UL LI.menuparenth UL, #primary-nav UL UL LI.menuparenth UL
{
	display: block;
}
/*IE6 Hacks*/
#primary-nav LI LI
{
	float: left;
	clear: both;
}
#primary-nav LI LI A
{
	height: 1%;
}
/* Stylesheet: CC : 3column_footer Modified On 2012-03-21 13:56:55 */

/*Stylesheet: CC : 3column_footer Modified On 2012-03-21 13:49:03
Stylesheet: CC : 3column_footer Modified On 2012-03-21 13:30:51
Stylesheet: CC : 3column_footer Modified On 2012-03-21 12:37:11
Stylesheet: CC : 3column_footer Modified On 2012-03-21 12:15:19
Stylesheet: CC : 3column_footer Modified On 2012-03-21 10:10:53
Stylesheet: CC : 3column_footer Modified On 2012-03-20 14:01:58
Footer*/
#BottomWrapper
{
	margin: 0 auto;
	width: 100%;
	clear: both;
	background: #C7E6E8 url(http://cleverclosets.ie/uploads/CC/footertop.png) repeat-x left top;
	height: auto;
	padding-bottom: 30px;
}
#footer
{
	width: 960px;
	clear: both;
	color: #333;
	/*+placement:margin-auto 0px 0px;*/
	margin-left: auto;
	margin-right: auto;
	position: relative;
	left: 0px;
	top: 0px;
	padding-top: 48px;
	height: auto;
}
#footer .share
{
	width: 290px;
	float: left;
	padding: 14px;
	background-color: #E3F2F3;
	height: 80px;
}
#footer .quicklinks
{
	width: 597px;
	float: left;
	padding: 14px;
	background-color: #E3F2F3;
	margin-left: 15px;
	height: 80px;
	margin-bottom: 25px;
}
#footer .quicklinks A
{
	font-size: 0.7em;
	font-family: Amaranth;
	text-decoration: none;
	color: #333333;
	font-size: 13.8pt;
}
#footer .quicklinks A:hover
{
	color: #631D31;
}
.quicklinks .qlhome
{
	width: 74px;
	height: 27px;
	float: left;
	background: url(http://cleverclosets.ie/uploads/CC/iconsprite_quicklink.gif) no-repeat;
	padding-left: 30px;
}
.quicklinks .qlquote
{
	width: 106px;
	height: 27px;
	float: left;
	background: url(http://cleverclosets.ie/uploads/CC/iconsprite_quicklink.gif) no-repeat -4px -39px;
	padding-left: 25px;
	margin-right: 20px;
}
.quicklinks .qlgallery
{
	width: 129px;
	height: 27px;
	float: left;
	background: url(http://cleverclosets.ie/uploads/CC/iconsprite_quicklink.gif) no-repeat 0px -83px;
	padding-left: 32px;
	margin-right: 20px;
}
.quicklinks .qlcontact
{
	width: 110px;
	height: 27px;
	float: left;
	background: url(http://cleverclosets.ie/uploads/CC/iconsprite_quicklink.gif) no-repeat 0px -132px;
	padding-left: 31px;
}
#footer .share .addthis_button_facebook
{
	float: left;
	margin-right: 20px;
}
#footer .share .addthis_button_twitter
{
	float: left;
	margin-right: 20px;
}
#footer .share .addthis_button_email
{
	float: left;
	margin-right: 31px;
}
#footer .copyright
{
	border-top: 1px solid #E3F2F3;
	clear: both;
	padding-top: 15px;
	text-align: center;
}
#footer .copyright .ad
{
	width: 123px;
	background-color: #631D31;
	color: #FFFFFF;
	text-decoration: none;
	padding: 4px;
	margin-top: 3px;
	/*+placement:margin-auto 0px 0px;*/
	margin-left: auto;
	margin-right: auto;
	position: relative;
	left: 0px;
	top: 0px;
	/*+border-radius:2px;*/
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	-khtml-border-radius: 2px;
	border-radius: 2px 2px 2px 2px;
}
#footer .copyright .ad A
{
	color: #FFFFFF;
	text-decoration: none;
}
#footer H1
{
	margin: 0px 0px 11px;
	font: 20.1pt Amaranth;
	color: #631D31;
}
/* Stylesheet: CC : 3column_home Modified On 2013-03-09 10:25:54 */
/*Stylesheet: CC : 3column_home*/

/*general styling*/




*
{
	padding: 0;
	margin: 0;
}
#slideshow H1
{
	background: #631D31 url(http://cleverclosets.ie/uploads/CC/logo.png) no-repeat 19px 6px;
	color: #FFFFFF;
	top: 167px;
	position: absolute;
	z-index: 10;
	width: 360px;
	height: 58px;
	font: 34pt Amaranth;
	padding-left: 75px;
	padding-top: 5px;
	/*+border-radius:0px 10px 10px 0;*/
	-moz-border-radius: 0px 10px 10px 0;
	-webkit-border-radius: 0px 10px 10px 0;
	-khtml-border-radius: 0px 10px 10px 0;
	border-radius: 0px 10px 10px 0;
	/*[disabled]border-top:5px solid #FFFFFF;*/
	/*[disabled]border-right:5px solid #FFFFFF;*/
	/*[disabled]border-bottom:5px solid #FCFCFC;*/
}
#slideshow H2
{
	color: #631D31;
	font-size: 27.2pt;
	font-family: Amaranth;
	top: 237px;
	position: absolute;
	z-index: 10;
	width: 245px;
	height: auto;
	padding-left: 77px;
	line-height: 1.5;
	padding-top: 23px;
	font-weight: normal;
}
#slideshow .facebookicon
{
	position: absolute;
	z-index: 10;
	margin-left: 911px;
	margin-top: -53px;
}
#slideshow .facebookicon A IMG
{
	border: 0px solid #000000;
	width: 40px;
}
BODY
{
	font-family: "Maven Pro", Arial, Helvetica, sans-serif;
	font-size: 13px;
	border-top: 10px solid #631D31;
}
P
{
	font: 13.4pt "Maven Pro", Arial, Helvetica, sans-serif;
        margin-bottom: 20px;
}
#content A
{
	text-decoration: none;
	font-weight: bold;
	color: #631D31;
}
#content A IMG
{
	border: 0px solid #000000;
}
#content A IMG:hover
{
	border: 0px solid #000000;
	/*+box-shadow:3px 3px 18px #C8D3D7;*/
	-moz-box-shadow: 3px 3px 18px #C8D3D7;
	-webkit-box-shadow: 3px 3px 18px #C8D3D7;
	-o-box-shadow: 3px 3px 18px #C8D3D7;
	box-shadow: 3px 3px 18px #C8D3D7;
}
#content P A:hover
{
	text-decoration: underline;
	font-weight: bold;
}
#wrapper
{
	margin: 0 auto;
	width: 960px;
}
#header
{
	color: #333;
	width: 960px;
	float: left;
	height: auto;
	margin: 10px 0px 0px;
}
#navigation
{
	float: left;
	width: 889px;
	color: #631D31;
	margin: 0px;
	font: 1em Amaranth;
	height: 57px;
}
#content
{
	float: left;
	color: #333;
	background: #F2F2E6;
	margin: 0px;
	height: auto;
	width: 100%;
	display: inline;
	padding-top: 30px;
	padding-bottom: 30px;
}
#column
{
	color: #333;
	margin: 30px 10px;
	width: 300px;
	float: left;
	height: auto;
}
#slideshow
{
	height: 663px;
}
#slideshow .bigbutton
{
	float: left;
	margin-left: 15px;
}
#slideshow .bigbutton A IMG
{
	border: 0px solid #000000;
}
#slideshow #buttons
{
	height: 188px;
	position: absolute;
	top: 562px;
	z-index: 20;
	width: 960px;
}
/* Stylesheet: CC: testimonial Modified On 2013-05-27 11:20:25 */
#testimonialbox
{
	width: 299px;
	background: url(http://cleverclosets.ie/uploads/CC/greyboxbottom_testimonials.gif) no-repeat left bottom;
	padding-bottom: 106px;
}
#testimonialbox .testimonials
{
	border-right: 50px solid #631D31;
	padding-right: 5px;
	padding-left: 10px;
	padding-top: 5px;
	background-color: #D5D6B7;
	padding-bottom: 5px;
	font-size: 13.1pt;
	display: block;
	width: 234px;
}
#testimonialbox .top
{
	background: url(http://cleverclosets.ie/uploads/CC/greybox_top.gif) no-repeat left top;
}
#testimonialbox .slides_container
{
	border: 1px solid #000000;
	overflow: visible;
}