/*
 * Engraving Labs LLC
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the EULA
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://shopdocker.com/index.php/license
 * 
 * =================================================================
 *                 MAGENTO EDITION USAGE NOTICE
 * =================================================================
 * This package designed for Magento COMMUNITY edition
 * Engraving Labs does not guarantee correct work of this extension
 * on any other Magento edition except Magento COMMUNITY edition.
 * Engraving Labs does not provide extension support in case of
 * incorrect edition usage.
 * =================================================================
 *
 * @category   ELABS
 * @package   ELABS_CList
 * @copyright  Copyright (c) 2011 Engraving Labs LLC (http://shopdocker.com)
 * @license    http://shopdocker.com/index.php/license
 */


.clist-block{ 				/* Holds everything */
	width:100%;
}
.clist-title{ 				/* Holds Current Category Title */

}
.clist-content{ 				/* Holds Category Blocks */
	width:100%;
}

.clist { 					/* Indiviual Category Blocks */
	background-color:#000;
	float: left;
	width: 28%;
	margin: 0px 5px 5px 0px;
	padding: 10px;
	border: #000;
	text-align:center;
}

.clist .clist-title {		/* Style Div that Holds Title of Category */
	margin-bottom: 8px;
	padding-bottom: 4px;
}

.clist .clist-title a, .clist .clist-title a:hover
{									/* Style Link of Category Title */
	text-decoration: none;
	font-weight: bold;
	font-size: larger;
	color: #FFF;
}

.clist .clist-image {		/* Styling for Div that holds Category Image */
	text-align: center;
	height:65%;
}

.clist .clist-image img {	/* Styling for Category Image */
	width: auto;
	height: 120px;
}

.clist .subclist {		/* Style Div that Holds Subcategory Data */
      margin: 0px;	
}

.clist ul {					/* Style List That Holds All Subcategories in a clist */
	list-style-type: none;
	list-style-position: inside;
	padding: 0px 0px 0px 10px;
	margin: 0px;
} 

.clist li a, .clist li a:hover
{									/* Styles Each Item and Link in UL */
	padding-left: 4px;
	color: #124989;
}


