/* layout/widgets.css */

/* ----- content ----

+ globalWidgets
	- boxSizing
	- floatLeft
	- floatRight
	- sideImage
	- margined (added default margin to an inline element which is the only child of a grid)
	
- slider
- buttonLink, button1
- deals
- widget_bg1, widget_bg2
- product thumbs
- contactInfo

+ widgetLists
	- widgetList1
	- widgetList2

- table

--- END OF content --- */


/* globalWidgets */
.boxSizing {
	-webkit-box-sizing: border-box; /* Safari */
	-moz-box-sizing: border-box; /* Firefox */		
	box-sizing: border-box;
}

.floatLeft {
	float: left;
}

.floatRight {
	float: right;
}

.textAlignCenter {
	text-align: center;
}


/* sideImage */
.sideImage {
	overflow: hidden;
}

.sideImage .sideImageLeft, 
.sideImage .sideImageRight {
	float: left;
}
/* END OF sideImage */


.margined {
	margin: 5px;
	display: block;
}
/* END OF globalWidgets */


/* slider */
#slider1 {
	height: 300px;
}
/* slider */


/* buttonLink, button1 */
.buttonLink, .button1 {
	border: none;
	padding: 10px;	
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;	
}

.button1 {
	cursor: pointer;	
}
/* END OF buttonLink, button1 */


/* deals */
#deals {
	overflow: hidden;
}

#deals .deal {
	float: left;
	width: 313px;	
}

#deals .deal p  {
	margin-bottom: 0;	
}

#deals .deal .dealTitle {
	height: 100px;
}

#deals .deal .dealTitle h3 a {
	padding-bottom: 5px;
}

#deals .deal .dealTitle p {
	line-height: 22px;
}

#deals .deal .dealDescription {
	height: 180px;
	position: relative;
}

#deals .deal .dealDescription p {
	font-size: 12px;
	line-height: 18px;
	text-align: justify;
}

#deals .deal .buttonLink {
	left: 20px;
	bottom: 20px;	
	position: absolute;
}
/* END OF deals */


/* widget_bg1, widget_bg2 */
.widget_bg1, .widget_bg2 {
	padding: 20px;
	overflow: hidden;
}
/* END OF widget_bg1 */


/* product thumbs */
.productThumb {	
	height: 90px;
	padding: 10px;
	overflow: hidden;
}

.productThumb img {
	margin-right: 10px;
}

.productThumb .productData {
	width: 140px;
}

.productThumb .productTitle {
	float: left;
	font-size: 18px;
	margin-bottom: 10px;
}

.productThumb .productDescription {
	clear: both;
	font-size: 11px;
	margin-bottom: 0;
	line-height: 14px;	
}
/* product thumbs */


/* contactInfo */
.contactInfo {
	height: 550px;
	padding: 20px;
}

.contactInfo b {
	font-size: 16px;
}

.contactInfo p {
	font-size: 16px;
}

.contactInfo a {
	letter-spacing: 0;
	padding-bottom: 2px;
}

.contactInfo .sideImage .sideImageLeft {
	padding-right: 10px;
}

.contactInfo .sideImage p {
	font-size: 11px;
}

.contactInfo .sideImage a {
	font-size: 10px;
}
/* END OF contactInfo */


/* widgetLists */
ul.widgetList {
	margin-left: 20px;
}

ul.widgetList li {	
	padding-bottom: 20px;
	list-style-type: disc;
}

/* widgetList1 */
ul.widgetList1 li {	
	font-size: 16px;
}
/* END OF widgetList1 */


/* widgetList2 */
ul.widgetList2 li {
	font-size: 14px;
}
/* END OF widgetList2 */
/* END OF widgetLists */


/* table */
table.productsTable {
	width: 100%;
}

table th {
	font-weight: bold;
}

table th, table td {
	padding: 5px;
	font-size: 12px;
	text-align: center;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
/* END OF table */