﻿/*
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/
*/
.menu {z-index: 1001;	
  }
.custom ul#cat_tabs li {position: relative; z-index: 1000;
  }

body.custom {
	background-image:url(http://all-occasion-tshirts.com/images/sitebackground.jpg);
        background-repeat:repeat-x;
        background-attachment: fixed;
}

/* Category Nav Menu */
ul#cat_tabs { list-style: none; border: 1px solid #ddd; border-width: 0 0 1px 1px; }
  ul#cat_tabs li { margin-bottom: -0.1em; background: #E8D6F5; border: 1px solid #ddd; border-left: 0; float: left; }
  ul#cat_tabs li.current_page_item, ul#cat_tabs li.current-cat { padding-bottom: 0.1em; background: #fff; border-bottom: 0; }
	ul#cat_tabs li a { display: block; line-height: 1em; color: #111; text-transform: uppercase; letter-spacing: 2px; padding:0.545em 0.818em; }
	ul#cat_tabs li a:hover { color: #111; text-decoration: none; }

      ul#cat_tabs li ul {position:absolute; display:none; list-style:none;}
	  ul#cat_tabs li:hover ul {display:block;}
	  ul#cat_tabs li ul li {float:none;}

ul#cat_tabs:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
/* end Category Nav Menu */


/* START CUSTOM MULTIMEDIA BOX */
.custom div.adblock img {
  padding: 2px;
  background-color: #FFFFFF;
}
.custom .cenx {text-align: center; background-color: #FFFFFF;}
/* END CUSTOM MULTIMEDIA BOX */

/* NEW CODE FOR CLICKABLE CUSTOM HEADER IMAGE */
/* This line sets up our clickable background image based on the site title's link */
/* DIY: Adjust the height & width attributes to reflect the actual size of your image */
/* DIY: Change the filename of your image to reflect the actual header's file name */
.custom #header #logo a { display: block; height: 200px; width: ;
background: url('http://www.all-occasion-tshirts.com/images/banner2a.gif') center left no-repeat;
outline: none;
 }

/* This line gets rid of the site title & tagline by casting them out to far left field */
.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }

/* This line collapses the vertical space of the tagline so that there isn't unnecessary white space after the header image */

/* This is a bit of a kludge, but it seems to work. */
.custom #header #tagline { height: 0; }

/* This line removes the padding from the header so that the background image sits close to the nav menu, the bottom border of the header, and the sides of the content */
.custom #header { padding: 0; }
/* END NEW CODE FOR CLICKABLE CUSTOM HEADER IMAGE */

/* old code
START CUSTOM HEADER IMAGE
.custom #header { border-bottom:none;
border-top: 2px solid #9982A5;
height:200px;
padding-top:0;
padding-bottom:0;
background:url(http://www.all-occasion-tshirts.com/images/banner2a.gif)
center left no-repeat;
background-color:#ffffff;
 }
.custom #header #logo { display:none; }
.custom #header #tagline { display:none; }
END CUSTOM HEADER IMAGE */

/* START CUSTOM TEXT WIDGET PROPERTIES */
.textwidget {
	line-height: 2.1em;
}
/* END CUSTOM TEXT WIDGET PROPERTIES */

/*---------------------------------*/
/* WIDGETIZED FOOTER               */
/* Mike Nichols - October 17, 2009 */
/*---------------------------------*/

/* footer widget area setup */
#footer_setup {
	/* widgetized footer background (not footer background) */
	background: #EEEEEE;
	/* widget padding */
	padding: 16px;
	/* margin at bottom of widgets */
	margin-bottom: 25px;
	/* do not change this! */
	overflow: hidden;
}

/* widget item setup */
#footer_setup .footer_items {
	/* contents alignment */
	text-align: left;
	/* widget width */
	width: 210px;
	/* space between widgets */
	padding-right: 10px;
	/* text color */
	color: #2361A1;
	/* do not change these! */
	display: inline-block;
	float: left;
	height: 100%;
}

/* widget item headers*/
#footer_setup .footer_items h3 {
	/* font size */
	font-size: 1em;
	/* bold or not */
	font-weight: bold;
	/* uppercase or not */
	text-transform: uppercase;
	/* space out the letters*/
	letter-spacing: 0px;
	/* font color*/
	color: #000000;
	/* padding under header text */
	padding-bottom: 3px;
	/* border under header text */
	border-bottom: 3px solid #ffdf00;
	/* distance between border and widget text */
	margin-bottom: 5px;
}
	
/* do not change these! */
#footer_setup .footer_items ul li { list-style: none; }
#footer_setup .footer_items ul { margin: 0px; padding: 0px; }

/*---------------------------------*/
/* END WIDGETIZED FOOTER           */
/*---------------------------------*/

/*----------------------------------*/
/* START WELCOME PAGE CLIPS */
/*----------------------------------*/

.custom .extra_space {
	margin: -20px 0 0 0;
}

.pbimg {
	visibility: hidden;
}

/*----------------------------------*/
/* END WELCOME PAGE CLIPS   */
/*----------------------------------*/

.custom .keywrd {
font-weight: normal;
font-size: 9px;
color: #000000;
font-style: normal;
font-family: verdana, arial, helvetica, geneva;
text-decoration: none;
}