﻿/* Home.css*/

/*
    Colors:
        #336699 - blue
        #ff9900 - orange
*/

/*
    ShopBox
        Using specific exact-width backgrounds.
        Should split to a left and right overlay that expands to width.
*/
.ShopBoxRow1
{
    margin-top: 0px;
    width: 680px;               /* Keeps the box rows from wrapping. */
}
.ShopBoxRow2
{
    margin-top: 4px;
    clear: left;
}
.ShopBox
{
	cursor: pointer;
    float: left;
	margin: 2px;
	position: relative;         /* This makes a starting point for the footer position. */
}
.ShopBoxRow1 .ShopBox
{
    width: 220px;
    height: 188px;
}
.ShopBoxRow2 .ShopBox
{
    width: 333px;
    height: 101px;
}
.ShopBoxHeader
{
    padding: 0px 0px 0px 0px;
    text-align: center;
    vertical-align: middle;
}
.ShopBoxRow1 .ShopBoxHeader
{
    background-image: url(/img/shopbox_top_bg1.gif);
    background-repeat: no-repeat;
    height: 34px;
}
.ShopBoxRow2 .ShopBoxHeader
{
    background-image: url(/img/shopbox_top_bg2.gif);
    background-repeat: no-repeat;
    height: 34px;
}
.ShopBoxTitle
{
    color: #cc6600;
	font-size: 14px;
	font-weight: bold;
	line-height: 18px;
	margin: 0px;
	position: relative;
	top: 2px;
}

a.ShopBoxTitle
{
    text-decoration: none;
}
.ShopBoxSubtitle
{
    color: #666666;
	font-size: 11px;
	font-weight: bold;
	margin: 0px;
	position: relative;
	top: -1px;
}
.ShopBoxContent
{
    border-left: 2px solid #ff9900;
    border-right: 2px solid #ff9900;
}
.ShopBoxRow1 .ShopBoxContent
{
    height: 140px;
}
.ShopBoxRow2 .ShopBoxContent
{
    height: 53px;
}
.ShopBoxContent p
{
    color: #666666;             /* This didn't inherit for some reason. */
    font-size: 10px;
    line-height: 12px;
    margin: 0px 0px 0px 4px;    /* Left margin prevents wrapping under the float image. Override in shopboxes. */
    padding-top: 4px;           /* This worked in firefox; margin pushed the borders down too. */
}
.ShopBoxContent a:hover
{
    text-decoration: underline;
}
.ShopBoxContent img
{
    float:left;
    margin-right: 2px;
}
.ShopBoxText2
{
    padding-top: 6px;
}
.ShopBoxFooter
{
    clear: left;
    color: white;
	font-size: 11px;
	font-weight: bold;
    height: 17px;
    text-align: center;
    vertical-align: middle;
    width: 100%;
}
.ShopBoxRow1 .ShopBoxFooter
{
    background-image: url(/img/shopbox_bot_bg1.gif);
    background-repeat: no-repeat;
    position: absolute;
    top: 173px
}
.ShopBoxRow2 .ShopBoxFooter
{
    background-image: url(/img/shopbox_bot_bg2.gif);
    background-repeat: no-repeat;
    position: absolute;
    top: 86px
}
.ShopBoxFooter img
{
    position: relative;
    top: 2px;                   /* This is instead of padding, which increases the footer height. */
    vertical-align: middle;
}
.ShopBoxFooter a
{
    color: white;
    position: relative;
    text-decoration: none;
    top: 2px;                   /* This is instead of padding, which increases the footer height. */
}
.ShopBoxFooter a:hover
{
    color: #336699;
}

