﻿/*-----------------------------------------------------------------------------------------
	MAIN Styles - They apply to the entire storefront, unless otherwise defined below
	----------------------------------------------------------------------------------------*/

/* pcMain is the container for all information displayed by ProductCart on the page
	   This is where you can change the font used storewide, for example.  */
#pcMain
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    color: #333333;
    text-align: left;
    background-color: #FFFFFF;
    width: 100%;
}

/* The following two statements assign a style to links storewide. They are sometimes
	   overwritten by other styles that target specific links. */
#pcMain a:link
{
    text-decoration: none;
    color: #000099;
}
#pcMain a:visited
{
    text-decoration: none;
    color: #000099;
}

#pcMain a:hover
{
    color: #0000FF;
    text-decoration: none;
}

/*-----------------------------------------------------------------------------------------
	 Storefront Tables - Styles within the table are defined later 
	----------------------------------------------------------------------------------------*/

/* pcMainTable is the container for all information displayed on the
     by ProductCart on the page */
.pcMainTable
{
    width: 100%;
    font-size: 12px;
    border: 0;
    border-collapse: collapse;
}

/* pcShowProducts is the table that organizes the display of products
	   (e.g. in a category or when viewing best sellers or new arrivals.
		 By default it's set to 100% width and to align in the center of the page. */
.pcShowProducts
{
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 100%; /*border: 1px dotted #E1E1E1;*/
    margin-top: 0px;
    padding: 0px;
}

.pcShowProducts td
{
    padding: 2px;
}

/* pcShowContent is the table that organizes the display of information other than
	   products. It does not have a dotted border around it. 
		 By default it's set to 100% width and to left of the page. */
.pcShowContent
{
    font-size: 13px;
    color: #555555;
    text-align: left;
    margin-left: 0;
    width: 100%;
    border: 0;
    border-collapse: collapse;
    margin-top: 4px;
    padding: 4px;
}

.pcShowContent td
{
    padding: 0px;
    padding: 3px;
    vertical-align: top;
}

/* pcShowCart is the table that organizes the display of information on
		 the shopping cart page */
.pcShowCart
{
    font-size: 13px;
    text-align: left;
    margin-left: 0;
    width: 100%;
    border: 0;
    border-collapse: collapse;
}

.pcShowCart td
{
    font-size: 13px;
    padding: 1px;
    vertical-align: top;
}

/* pcShowList is used when showing a list of items such as quantity discounts */
.pcShowList
{
    text-align: left;
    width: 80%;
    border: 1px solid #e1e1e1;
    border-collapse: collapse;
}

/* pcPageNav handles the page navigation at the bottom of the page, when present. */

.pcPageNav
{
    text-align: left;
    width: 100%;
    border: 0;
    border-collapse: collapse;
    margin: 5px 0 0 0;
    color: #7F7F7F;
    font-size: 12px;
}

.pcPageNavRed
{
    color: #FF0000;
}

#pcMain .pcPageNav a:link, .pcPageNav a:visited, .pcPageNav a:hover
{
    color: #7F7F7F;
}
#pcMain .pcPageNavRed a:link, .pcPageNavRed a:visited, .pcPageNavRed a:hover
{
    color: #FF0000;
}

/* Styles within MAIN TABLE */

/* Style the page title */
.pcMainTable h1
{
    background-color: #F2F2F2;
    font-size: 15px;
    font-weight: bold;
    margin: 0;
    padding: 3px;
}

/* Style the table title (e.g. table showing quantity discounts) */
.pcMainTable h2
{
    background-color: #F5F5F5;
    font-size: 14px;
    margin: 0 0 5px 0;
    padding: 5px;
}

.pcMainTable h3
{
    font-size: 12px;
    margin-top: 10px;
    margin: 5px 0 5px 0;
    padding: 5px;
}

/* Style the table headings */
.pcMainTable th
{
    background-color: #F4F4F4;
    font-size: 12px;
    font-weight: bold;
    padding: 4px;
    border-bottom: 1px solid #E1E1E1;
    color: #555555;
}

/* Remove the default marging from paragraphs */
.pcMainTable p
{
    margin: 0 0 0 5px;
}

/* Style within SHOW PRODUCTS table */

/* Style the product name */
#pcMain .pcShowProductName
{
    font-size: 12px;
    color: #003399;
}
#pcMain .pcShowProductName a:link, #pcMain .pcShowProductName a:visited
{
    color: #003399;
}

#pcMain .pcShowProductName a:hover
{
    color: #0000FF;
}


/* Style the product sku */
#pcMain .pcShowProductSku
{
    color: #666666;
    font-size: 10px;
}

/* Style the product weight */
#pcMain .pcShowProductWeight
{
    color: #666666;
}

/* Style the product brand */
#pcMain .pcShowProductBrand
{
    font-size: 10px;
    color: #666666;
}

/* Style the product stock */
#pcMain .pcShowProductStock
{
    color: #666666;
    font-size: 13px;
}

/* Style the Product BTO Default Config */
#pcMain .pcShowProductBTOConfig
{
    color: #666666;
}

/* Style the Product Custom Search */
#pcMain .pcShowProductCustSearch
{
    color: #666666;
    font-size: 10px;
}

/* Style the Product Free Shipping Text */
#pcMain .pcShowProductShipping
{
    color: #666666;
}

/* Change font color for "Show Product's Price" feature */
#pcMain .pcShowProductPrice
{
    color: #003399;
    font-size: 13px;
    font-weight: bold;
}
#pcMain .pcShowProductPriceW
{
    color: #003399;
    font-size: 13px;
    font-weight: bold;
}
/*Moje - list Price*/
#pcMain .pcShowProductListPrice
{
    color: #003399;
    font-size: 13px;
    font-weight: normal;
}
/*Moje - strike list price*/
#pcMain .pcShowProductListPriceStrike
{
    color: #003399;
    font-size: 12px;
    text-decoration: line-through;
    font-weight: normal;
}

#pcMain .pcShowProductPriceVat
{
    color: #666666;
    font-size: 11px;
}

/* Change font color for "Show Savings" feature */
#pcMain .pcShowProductSavings
{
    color: #FF0000;
    font-size: 12px;
}

/* Style the short product description */
#pcMain .pcShowProductSDesc
{
    font-size: 13px;
    color: #555555;
    padding-right: 30px;
}
#pcMain .pcShowProductSDesc p 
{
    margin: 0px;
}

/* Style the "Not for Sale" text */
#pcMain .pcShowProductNFS
{
    color: #0066FF;
    font-weight: bold;
    margin: 5px;
}

/* Style the paragraph that includes the "More Details" button */
.pcShowProductLink
{
    padding-top: 3px;
}

/* Style the paragraph that includes the "Sort by" drop-down */
.pcSortProducts
{
    text-align: right;
}

/* pcShowProductsH handles the table that shows product info
	   when products are displayed horizontally */

.pcShowProductsH
{
    width: 125px;
    min-height: 225px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.pcShowProductImageH
{
    width: 125px;
    height: 125px;
    text-align: center;
    padding-bottom: 3px;
    position: relative;
    overflow: hidden;
}

#pcMain .pcShowProductImageH p
{
    text-align: center;
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 125px;
}

#pcMain .pcShowProductImageH img
{
    border: 1px solid #E1E1E1;
    padding: 5px;
}

.pcShowProductInfoH
{
    min-height: 100px;
    margin-top: 5px;
    vertical-align: top;
}


.pcShowProductInfoH p
{
    text-align: center;
}

/* pcShowProductsP handles the table that shows product info
	   when products are displayed vertically */

.pcShowProductsP
{
    margin: 5px;
    padding: 5px;
    width: 100%;
}

.pcShowProductImageP
{
    height: 125px;
    width: 125px;
    text-align: center;
}

.pcShowProductImageP img
{
    border: 1px solid #E5E5E5;
    padding: 5px;
}

.pcShowProductInfoP
{
    text-align: left;
    width: 95%;
    padding-left: 10px;
}

/* pcShowProductsL handles the table that shows product info
	   when products are displayed in a list */

.pcShowProductsL
{
    width: 100%;
    text-align: left;
}

.pcShowProductsLheader
{
    text-align: left;
    background-color: #F7F7F7;
}

.pcShowProductsLCell
{
    vertical-align: top;
    text-align: left;
}

.pcShowProductImageL
{
    height: 25px;
    width: 25px;
    text-align: left;
    padding: 5px 5px 0 5px;
}

/* pcShowProductsM handles the table that shows product info
	   when products are displayed in a list with the quantity field */

.pcShowProductsMheader
{
    text-align: left;
    background-color: #F7F7F7;
}

.pcShowProductsM
{
    width: 100%;
    text-align: left;
    vertical-align: top;
}

.pcShowProductImageM
{
    height: 25px;
    width: 25px;
    text-align: left;
    padding: 0 5px 0 5px;
}



/*-----------------------------------------------------------------------------------------
	 ProductCart Build To Order
	----------------------------------------------------------------------------------------*/

/* Style the product configuration pages */
.pcBTOmainTable
{
    width: 100%;
    background-color: #FFFFFF;
    border: 0;
    border-collapse: collapse;
}

.pcBTOfirstRow
{
    background-color: #F5F5F5;
}

.pcBTOsecondRow
{
    background-color: #E1E1E1;
}

/* Style the pop-up window used by ProductCart Build To Order to show additional
			 item information on the configuration pages */
.pcBTOpopup
{
    width: 98%;
    background-color: #FFFFFF;
    border: 0;
    border-collapse: collapse;
    margin: 5px;
    font-size: 10px;
}

.pcBTOpopup img
{
    margin: 5px;
    height: 125px;
    vertical-align: bottom;
    text-align: center;
    padding-bottom: 3px;
}

/* Style the detailed product configuration when shown on the shopping cart page
			 order details page, etc. */
.pcShowBTOconfiguration
{
    text-align: left;
    background-color: #F7F7F7;
}

.pcShowBTOconfiguration p
{
    size: 10px;
    color: #666666;
}

/*-----------------------------------------------------------------------------------------
	 Browse by Category or Brand
	----------------------------------------------------------------------------------------*/

.pcShowCategory
{
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-size: 12px;
}

.pcShowCategory td
{
    padding: 0px;
    vertical-align: bottom;
}

.pcShowCategoryP
{
    width: 100%;
    text-align: left;
}

.pcShowCategoryImage
{
    height: 125px;
    vertical-align: bottom;
    text-align: center;
    padding-bottom: 3px;
}

.pcShowCategoryImage img
{
    border: 1px solid #E5E5E5;
    padding: 5px;
}

#pcMain .pcShowCategoryInfo
{
    margin-top: 5px;
    vertical-align: top;
}

#pcMain .pcShowCategoryInfo p
{
    text-align: center;
}

#pcMain .pcShowCategoryInfo a
{
    color: #003399;
}

#pcMain .pcShowCategoryInfo a:hover
{
    color: #0000FF;
}


.pcShowCategoryInfoP
{
    width: 100%;
    margin-top: 5px;
    text-align: left;
    vertical-align: top;
}

/*-----------------------------------------------------------------------------------------
	 Product details page
	----------------------------------------------------------------------------------------*/

/* Visually separate prices from the rest of the information */
.pcShowPrices
{
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: bold;
}


/*-----------------------------------------------------------------------------------------
	 Page Navigation
	----------------------------------------------------------------------------------------*/

.pcPageNav
{
    text-align: left;
    margin: 10px 0 10px 5px;
}

.pcPageName a:link, #pcCatNav a:visited
{
    color: #999999;
}

.pcPageNav a:hover
{
    /*color: #000000;*/
    text-decoration: none;
}

/*-----------------------------------------------------------------------------------------
	 Forms
	----------------------------------------------------------------------------------------*/

/* Clear the margins for all forms used by ProductCart */
#pcMain form
{
    margin: 0;
    font-size: 12px;
}

.pcForms input
{
    border: 1px solid #CCCCCC;
    background-color: #F7F7F7;
    font-size: 11px;
    color: #666666;
    padding: 2px 3px 2px 3px;
}

.pcForms input:focus
{
    border: 1px solid #999999;
    background-color: #FFFFCC;
}

.pcForms textarea
{
    border: 1px solid #CCCCCC;
    background-color: #F7F7F7;
    font-size: 11px;
    color: #666666;
    padding: 2px 3px 2px 3px;
}

.pcForms textarea:focus
{
    border: 1px solid #999999;
    background-color: #FFFFCC;
}

/* Style drop-down menus */
.pcForms select
{
    font-size: 10px;
    color: #333333;
    background-color: #F5F5F5;
    border: 1px solid #CCCCCC;
}

/* Style submit image button */
#submit
{
    border: 0;
    background-color: transparent;
    padding: 0px;
}
/* Style submit image button */
#pcMain .submit
{
    border: 0;
    background-color: transparent;
    padding: 0px;
}

/* Style submit button (when an image is NOT used) */
#pcMain .submit2
{
    border: 1px solid #CCCCCC;
    background-color: #FFFFCC;
    font-size: 11px;
    color: #666666;
    padding: 2px 3px 2px 3px;
}

/* Style the transparent fields used by ProductCart Build To Order and Apparel Add-on */
#pcMain .transparentField
{
    border: 0;
    background-color: transparent;
    padding: 0;
    font-size: 12px;
}

#pcMain .transparentFieldPrice
{
    border: 0;
    background-color: transparent;
    padding: 0;
    color: #003399;
    font-size: 13px;
    font-weight: bold;
}

/* Clear border on checkboxes to fix IE bug */
#pcMain .clearBorder
{
    border: 0;
    background-color: transparent;
}

/*-----------------------------------------------------------------------------------------
	 Search results page
	----------------------------------------------------------------------------------------*/

/* Style list of categories in the category search results */
.pcCatSearchResults ul
{
    list-style-type: none;
    margin: 0 0 20px 15px;
    padding: 0;
    font-size: 12px;
}

.pcCatSearchResults ul li
{
    margin: 2px 0 0 0;
}


/*-----------------------------------------------------------------------------------------
	 Other styles
	----------------------------------------------------------------------------------------*/

/* Remove the default border from images */
#pcMain img
{
    border: 0;
}

/* Style the page description at the top of the page, when available */
.pcPageDesc
{
    margin-bottom: 5px;
    padding: 5px;
    background-color: #FBFBFB;
    font-size: 12px;
}

/* Styles section titles on pages with different sections (e.g. search results) */
#pcMain .pcSectionTitle
{
    background-color: #F2F2F2;
    text-align: left;
    padding: 5px;
    font-size: 11px;
    font-weight: normal;
    color: #666666;
}
#pcMain .pcSectionTitle a
{
    color: #666666;
}

#pcMain .pcSectionTitle a:hover
{
    color: #0000FF;
}


/* Example of usage: preview search results text on advanced search page */
.pcTextMessage
{
    color: #0066FF;
    font-weight: bold;
}

/* Styles alert and friendly error messages shown to the customer in the storefront */
.pcErrorMessage
{
    width: 90%;
    background-color: #F7F7F7;
    border: 1px solid #0080D5;
    margin: 15px;
    padding: 4px;
    color: #0044AA;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
}

/* Styles small text shown in various pages (e.g. "(mm/yy)" on the credit card page */
.pcSmallText
{
    font-size: 10px;
    color: #999999;
}

/* Sets the height of an empty table row */
.pcSpacer
{
    height: 0px;
}

/* Horizontal line */
#pcMain hr
{
    color: #e5e5e5;
    background: #e5e5e5;
    border: 0;
    height: 1px;
}

/* Add spacing to list items */
#pcMain li
{
    padding-bottom: 1px;
}

/*-----------------------------------------------------------------------------------------
 ProductCart Product ViewPrd.asp Images
----------------------------------------------------------------------------------------*/

#pcMain .pcShowMainImage
{
    width: auto;
    height: auto;
    text-align: center;
    vertical-align: bottom;
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 5px;
}

#pcMain .pcShowMainImage img
{
    padding: 5px;
    border: 1px solid #cccccc;
}

#pcMain .pcShowAdditional
{
    width: 240px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
#pcMain .pcShowAdditional a img
    {
        margin:3px 4px;
    }

#pcMain .pcShowAdditionalImage
{
    vertical-align: top;
    text-align: center;
    padding: 0 0 0 0;
}

#pcMain .pcShowAdditional img
{
    width: 50px;
    border: 1px solid #cccccc;
}

/*-----------------------------------------------------------------------------------------
	 ProductCart v2.7x styles
	----------------------------------------------------------------------------------------*/

/* Printer-friendly version of order details page */
table.invoice
{
    border-collapse: collapse;
    border: 1px solid #333333;
}
table.invoiceBto
{
    border-collapse: collapse;
    border: 1px solid #999999;
}
td.invoice
{
    border: 1px solid #666666;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 11px;
    vertical-align: top;
    text-align: left;
}
td.invoiceNob
{
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 11px;
    vertical-align: top;
    text-align: left;
}


/*------------------------------------------------------------------------------------------
Moje
------------------------------------------------------------------------------------------*/
.pcOutOfStock
{
    color: #003399;
    font-size: 12px;
    font-weight: normal;
}

.leftnav
{
    text-decoration: none;
    color: #000000;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: normal;
}
.leftnav_news
{
    text-decoration: none;
    color: #000000;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    margin-top: 15px;
    margin-bottom: 15px;
    line-height: 1.5em;
}
.leftnavStr
{
    text-decoration: none;
    color: #000000;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: bold;
}

a.leftnav
{
    text-decoration: none;
    color: #000000;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
}

a.leftnav:hover
{
    text-decoration: none;
    color: #000000;
}

.pcMainPage
{
    font-size: 17px;
    color: #003399;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}

.pcMainPageDesc
{
    font-size: 12px;
    color: #555555;
    line-height: normal;
    letter-spacing: normal;
    word-spacing: normal;
}

#pcMain .pcMainPageProductName
{
    font-size: 13px;
    color: #000099;
    font-weight: bold;
}


#pcMain .pcMainPageProductName a
{
    color: #000099;
}

#pcMain .pcMainPageProductName a:hover
{
    color: #0000FF;
}


.pcMainPageProductPrice
{
    font-size: 13px;
    color: #555555;
}
.sidebar_headers
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #FFFFFF;
    font-weight: bold;
    background: url(images/cat160round.gif) no-repeat left top;
}
a:link
{
    text-decoration: none;
    color: #000000;
}
a:visited
{
    text-decoration: none;
    color: #000000;
}
a:hover
{
    text-decoration: none;
}
a:active
{
    text-decoration: none;
}

.YouSave
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #FF0000;
    font-weight: normal;
}

.aprox_price_wrap1
{
    background-image: url(images/custombikes/corner1.gif);
    background-position: top left;
    background-repeat: no-repeat;
    width: 250px;
    background-color: #DDDDDD;
    margin: 0px 0px 10px 0px;
}

.aprox_price_wrap2
{
    background-image: url(images/custombikes/corner2.gif);
    background-position: bottom right;
    background-repeat: no-repeat;
}

.aprox_price_wrap3
{
    margin: 0px 15px 0px 15px;
    padding: 10px 5px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    color: #000082;
    font-weight: normal;
    line-height: 1.5;
}

.down_menu
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #000000;
    text-decoration: none;
}

.content_bodyXXL
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 60px;
    color: #8F8F8F;
    font-weight: bold;
}
.content_bodySM
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #8F8F8F;
    font-weight: bold;
}
.custom_built2
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #000082;
    padding: 1px;
    font-weight: bold;
}
.custom_built3
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    color: #000000;
    padding: 2px;
    background-color: #F0F0F0;
    border-width: 1px;
    border-style: solid;
    border-left-color: #999999;
    border-right-color: #999999;
    border-top-color: #999999;
    border-bottom-color: #999999;
    margin: 5px;
}
.content_bodyLRblack
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 30px;
    color: #000000;
    font-weight: bold;
}

.content_bodyMDblack
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    color: #000000;
    font-weight: normal;
}

.content_bodySMblack
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #000000;
    font-weight: bold;
}
.content_bodyMDgrey
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 22px;
    color: #8F8F8F;
    font-weight: bold;
}
.content_body
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    color: #003399;
}
table.content_body
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    color: #000000;
    margin: 1.3em;
}
.sortby_stock
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #003399;
}
.red
{
    color: #FF0000;
}
.blue
{
    color: #0000FF;
}

.black
{
    color: #000000;
}

.grey
{
    color: #8F8F8F;
}
.darkgrey
{
    color: #616161;
}

.lightgrey
{
    color: #CCCCCC;
}

table.content_bodyXS
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    color: #000000;
    text-align: center;
}

.mainindex_text
{
    color: #444444;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
}

.mainindex_text p
{
    padding-top: 5px;
    padding-bottom: 5px;
    font-size:13px;
}

.mainindex_text table
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
}

.mainindex_text th
{
    color: #333333;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    background-color: transparent;
    border-bottom-style: none;
}

.mainindex_text h2
{
    background-color: transparent;
    font-weight: bold;
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.TbStyl_1
{
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    border: 1px solid black;
    padding: 5px;
}

.TbStyl_1 td
{
    padding: 5px;
}


.TbStyl_2
{
    margin: 5px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    padding: 0px;
    border-collapse: collapse;
}

.TbStyl_2 td
{
    border-width: 1px;
    border-style: solid;
    border-color: black;
    padding: 5px;
}

.TbStyl_2 th
{
    font-size: 13px;
    border: 1px solid black;
    padding: 5px;
    background-color: #FFFF80;
}
/* Products List */
.pcShowProductSearchListPrice
{
    font-size: 10px;
    font-family: Arial, Helvetica, sans-serif;
    color: #6F6F6F;
}
/*OrderVerify.asp*/
.MessageBox_1
{
    margin: 10px;
    padding: 8px 20px;
    background-color: #F4F4F4;
    border: 1px dashed #AAAAAA;
}
/*header*/
#HeaderMain
{
    margin: 0px auto 10px auto;
    width: 900px;
}
#HeaderColumnLeft
{
    float: left;
    width: 160px;
}
#HeaderColumnMain
{
    float: left;
    width: 729px;
    margin-left: 10px;
}
#TopBaner
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #000000;
}
#TopBaner a
{
    text-decoration: none;
}
#HeaderMain .HeaderMenu
{
    float: left;
    width: 682px;
    height: 42px;
    background-image: url(images/csslogo_05.gif);
    text-align: center;
}
#HeaderMain .HeaderMenu a
{
    margin: 0px 6px;
}
#Basket
{
    margin-top: 10px;
    width: 140px;
    height: 80px;
    border-color: #e1e1e1;
    border-style: dotted;
    border-width: thin;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
}
#Basket .BasketBox1
{
    text-align: center;
    background-color: #E9E9E9;
    padding: 5px 0px;
    height: 13px;
}
#Basket .BasketBox2
{
    background-color: #F2F2F2;
    padding: 5px 0px 5px 5px;
    height: 27px;
}
#Basket .BasketBox3
{
    text-align: center;
    background-color: #E9E9E9;
    height: 20px;
}
/*------------------------- Error float box -  Loyalty application form,Corporate application ---------------------------*/
.infoFloatBox_1 
{    
    display:none;
    position:absolute;
    left:0px;
    top:0px;
    background: rgb(150,150,150);
    background: rgba(150,150,150,0.4);
    padding:4px;
    border-radius: 8px;
    -moz-border-radius: 8px; 
    -webkit-border-radius: 8px;
    z-index:100;
    }
.infoFloatBox_2 
{
    background-color:rgb(240,240,240);
    border-radius: 8px;
    -moz-border-radius: 8px; 
    -webkit-border-radius: 8px; 
    padding: 5px 10px;
    line-height:2;                      
    font-size:11px;
    font-family:Arial,Helvetica,sans-serif;
    color:#555555;    
}
/*--------------------------------- Loaders ---------------------------------------*/
.JSAjaxLoader_1 
{
    position:absolute; 
    width:150px;
    display:none;
    z-index:1000;
    background: rgb(150,150,150);
    background: rgba(150,150,150,0.4);
    padding:4px;
    border-radius: 8px;
    -moz-border-radius: 8px; 
    -webkit-border-radius: 8px; 
    margin:300px 0px 0px 300px;
    }
.JSAjaxLoader_2 
{
    background-color: rgb(240,240,240);
    border-radius:8px;
    -moz-border-radius: 8px; 
    -webkit-border-radius: 8px; 
    padding: 10px 10px 1px 10px;
    line-height:2;                      
    font-size:11px;
    font-family:Arial,Helvetica,sans-serif;
    color:#555555;   
    text-align:center;
    }
/*Custom header -  Loyalty application forms*/
.pointer {
    cursor:pointer
}
.ContentHeader1 {
    font-size: 15px; 
    font-weight: bold; 
    background: #EEEEEE; 
    padding-left: 10px;
    line-height:1.8;
}
.ContentHeader2 {
    line-height:2;
    background: #EEEEEE;
    padding-left: 8px;
    font-size: 13px;
    margin:10px 0px;
}
.ContentHeader3 {
    color:#666666;
    line-height:2;
    background: #EEEEEE;
    padding-left: 8px;
    font-size: 11px;
    margin:4px 0px;
}
/* koniec */
/* View Product*/
.AproxPriceSM_text 
{
    font-family:Arial,Helvetica,sans-serif;
    font-size:10px
    }

/* END */
/* -----------------------JQuery -----------------------------*/
/* ----------------------- CSD Widget -----------------------------*/
#CSD_Widget {
	background: transparent url(./images/CSD_widget.png) no-repeat scroll 0 0;
	display:block;
	float:right;
	height:386px;
	padding:0;
	position:fixed;
	right:-205px;
	top:130px;
	width:244px;
	z-index:100;
	font-family:Arial,Helvetica,sans-serif;
	font-size:12px;
}
#CSD_Widget .widget_body 
{
    margin:10px 10px 10px 46px;
    }
#CSD_Widget .widget_ProductName a {    
    color:#38B3D1;
    font-weight:bold;
    font-size:15px;
    margin-bottom:5px;
}
#CSD_Widget .widget_Image img
{
    width:190px;
    border:1px solid #CCCCCC;
    }
#CSD_Widget .widget_Details 
{
    max-height:200px;
    }
#CSD_Widget .widget_MoreInfo 
{
    color:Red;
    }
#CSD_Widget .widget_Price 
{
    margin-top:5px;
    font-weight:bold;
    cursor:pointer;
    }
#CSD_Widget .PriceYouSave
{
    color:#ff0000;
    font-size:11px;
    font-weight:bold;
    }
#CSD_Widget .PriceShipping
{
    color:#8c8c8c;
    font-size:11px;
    font-weight:normal;
    }
#CSD_Widget .RRPPriceDesc
{
    color:#8c8c8c;
    font-size:14px;
    font-weight:bold;
    padding-right:5px;
    padding-left:0px;
    }
#CSD_Widget .RRPPrice
{
    color:#8c8c8c;
    font-size:14px;
    font-weight:bold;
    text-decoration: line-through;
    }
#CSD_Widget .PriceDesc
{
    color:#38b3d1;
    font-size:18px;
    padding-right:10px;
    }
#CSD_Widget .Price
{
    color:#ff0000;
    font-size:20px;
    }
/* END */
/*--------------------------------- Checkout ---------------------------------------*/
.chkGatewayRow 
{
    border:1px solid #E5E5E5;
    margin:10px;
    padding:10px;
    border-radius:5px;
    position:relative;
    height:53px;
    }
.chkGatewayRow .desc
{
    font-size:20px;
    position:absolute;
    left:200px;
    top:22px;
    color:#14328a;
    }    
.chkGatwayBtn 
{
    position:absolute;
    right:20px;
    top:25px;
    cursor:pointer;
    }
.chkGatewayRowSep 
{
    margin:15px 50px;
    font-size:20px;
    }
 

