/*@charset "UTF-8";*/

/* SpryAccordion.css - version 0.4 - Spry Pre-Release 1.6.1 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/* This is the selector for the main Accordion container. For our default style,
 * we draw borders on the left, right, and bottom. The top border of the Accordion
 * will be rendered by the first AccordionPanelTab which never moves.
 *
 * If you want to constrain the width of the Accordion widget, set a width on
 * the Accordion container. By default, our accordion expands horizontally to fill
 * up available space.
 *
 * The name of the class ("Accordion") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style the
 * Accordion container.
 */
.Accordion {
	border-left: solid 1px gray;
	border-right: solid 1px black;
	border-bottom: solid 1px gray;
	overflow: hidden;
}

/* This is the selector for the AccordionPanel container which houses the
 * panel tab and a panel content area. It doesn't render visually, but we
 * make sure that it has zero margin and padding.
 *
 * The name of the class ("AccordionPanel") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel container.
*/
.AccordionPanel {
	margin: 25px;
	padding: 10px;
	background-color: #FFF;
}

/* This is the selector for the AccordionPanelTab. This container houses
 * the title for the panel. This is also the container that the user clicks
 * on to open a specific panel.
 *
 * The name of the class ("AccordionPanelTab") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel tab container.
 *
 * NOTE:
 * This rule uses -moz-user-select and -khtml-user-select properties to prevent the
 * user from selecting the text in the AccordionPanelTab. These are proprietary browser
 * properties that only work in Mozilla based browsers (like FireFox) and KHTML based
 * browsers (like Safari), so they will not pass W3C validation. If you want your documents to
 * validate, and don't care if the user can select the text within an AccordionPanelTab,
 * you can safely remove those properties without affecting the functionality of the widget.
 */
.AccordionPanelTab {
	background-color: #FFF;
	border-top: solid 1px black;
	border-bottom: solid 1px gray;
	margin: 10px;
	padding: 2px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
}

/* This is the selector for a Panel's Content area. It's important to note that
 * you should never put any padding on the panel's content area if you plan to
 * use the Accordions panel animations. Placing a non-zero padding on the content
 * area can cause the accordion to abruptly grow in height while the panels animate.
 *
 * Anyone who styles an Accordion *MUST* specify a height on the Accordion Panel
 * Content container.
 *
 * The name of the class ("AccordionPanelContent") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel content container.
 */
.AccordionPanelContent {
	overflow: auto;
	margin: 10px;
	padding: 5px;
	height: 200px;
	background-color: #d0cfcb;
	font-size: 12px;
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open. The class "AccordionPanelOpen" is programatically added and removed
 * from panels as the user clicks on the tabs within the Accordion.
 */
.AccordionPanelOpen .AccordionPanelTab {
	background-color: #EEEEEE;
	color: #191c1f;
	font-weight: bold;
	font-size: 12px;
}

/* This is an example of how to change the appearance of the panel tab as the
 * mouse hovers over it. The class "AccordionPanelTabHover" is programatically added
 * and removed from panel tab containers as the mouse enters and exits the tab container.
 */
.AccordionPanelTabHover {
	color: #d0cfcb;
}
.AccordionPanelOpen .AccordionPanelTabHover {
	color: #FFFFFF;
}

/* This is an example of how to change the appearance of all the panel tabs when the
 * Accordion has focus. The "AccordionFocused" class is programatically added and removed
 * whenever the Accordion gains or loses keyboard focus.
 */
.AccordionFocused .AccordionPanelTab {
	background-color: #3399FF;
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open when the Accordion has focus.
 */
.AccordionFocused .AccordionPanelOpen .AccordionPanelTab {
	background-color: #33CCFF;
}

/* SpryCollapsiblePanel.css - version 0.5 - Spry Pre-Release 1.6.1 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/* This is the selector for the main CollapsiblePanel container. For our
 * default style, the CollapsiblePanel is responsible for drawing the borders
 * around the widget.
 *
 * If you want to constrain the width of the CollapsiblePanel widget, set a width on
 * the CollapsiblePanel container. By default, our CollapsiblePanel expands horizontally to fill
 * up available space.
 *
 * The name of the class ("CollapsiblePanel") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style the
 * CollapsiblePanel container.
 */
.CollapsiblePanel {
	margin: 2px;
	padding: 2px;
	border-left: solid 1px #FFF;
	border-right: solid 1px #FFF;
	border-top: solid 1px #FFF;
	border-bottom: solid 1px #FFF;
	font-size: 12px;
	border-bottom-color: #FFF;
	border-color: #FFF;
	border-left-color: #FFF;
	border-right-color: #FFF;
	border-top-color: #FFF;
	color: #FFF;
	text-align:left;
}

/* This is the selector for the CollapsiblePanelTab. This container houses
 * the title for the panel. This is also the container that the user clicks
 * on to open or close the panel.
 *
 * The name of the class ("CollapsiblePanelTab") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * CollapsiblePanel panel tab container.
 */
.CollapsiblePanelTab {
	font: bold 1.0
.em sans-serif;
	background-color: #FFF;
	border-bottom: solid 1px #CCC;
	margin: 5px;
	padding: 5px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	font: em1
.0sans serif;
	font-weight: bold;
	font: em1
.0pxsanserif;
	color: #191c1f;
}

/* This is the selector for a CollapsiblePanel's Content area. It's important to note that
 * you should never put any padding on the content area element if you plan to
 * use the CollapsiblePanel's open/close animations. Placing a non-zero padding on the content
 * element can cause the CollapsiblePanel to abruptly grow in height while the panels animate.
 *
 * The name of the class ("CollapsiblePanelContent") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style a
 * CollapsiblePanel content container.
 */
.CollapsiblePanelContent {
	margin: 0px;
	padding: 5px;
	color: #191c1f;
	margin-left: 50px;
}

/* An anchor tag can be used inside of a CollapsiblePanelTab so that the
 * keyboard focus ring appears *inside* the tab instead of around the tab.
 * This is an example of how to make the text within the anchor tag look
 * like non-anchor (normal) text.
 */
.CollapsiblePanelTab a {
	color: black;
	text-decoration: none;
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open. The class "CollapsiblePanelOpen" is programatically added and removed
 * from panels as the user clicks on the tabs within the CollapsiblePanel.
 */
.CollapsiblePanelOpen .CollapsiblePanelTab {
	background-color: #EEE;
	color: #191c1f;
}

/* This is an example of how to change the appearance of the panel tab when the
 * CollapsiblePanel is closed. The "CollapsiblePanelClosed" class is programatically added and removed
 * whenever the CollapsiblePanel is closed.
 */

.CollapsiblePanelClosed .CollapsiblePanelTab {
 /* background-color: #EFEFEF */
}

/* This is an example of how to change the appearance of the panel tab as the
 * mouse hovers over it. The class "CollapsiblePanelTabHover" is programatically added
 * and removed from panel tab containers as the mouse enters and exits the tab container.
 */
.CollapsiblePanelTabHover,  .CollapsiblePanelOpen .CollapsiblePanelTabHover {
	background-color: #191c1f;
	color: #FFF;
}

/* This is an example of how to change the appearance of all the panel tabs when the
 * CollapsiblePanel has focus. The "CollapsiblePanelFocused" class is programatically added and removed
 * whenever the CollapsiblePanel gains or loses keyboard focus.
 */
.CollapsiblePanelFocused .CollapsiblePanelTab {
	background-color: #191c1f;
	color: #FFF;
}


body
{
	color: #61584F;
	background-color: #FFFFFF;
	font-size: 13px;
	font-family: Helvetica;
}

a
{
    font-weight: 600;
    text-decoration: none;
    font-family: Helvetica;
    color: #61584f;
}

a:hover 
{
    text-decoration: underline; 
}



.White_Wrapper
{
	width: 90%;
	height: auto;
	padding-bottom: 10px;
	text-align: left;
	font-family: Helvetica;    
}

.Wrapper
{
    width: 90%;
    height: auto;
    background-color: #ffffff;

}

#Search_block
{
    width: 133px;
    height: auto;
    Float: left;
}

.Search_brown
{
    width: 160px;
    height: auto;
    float: left;
    padding-right: 8px;
}

.Search_table
{
    width: 148px;
    height: auto;
    float: left;
	background-color: #ffffff;
}

.Top
{
    height: 150px;
    background-position:center;
    padding-left: 10px;
    padding-right: 10px;
    background-repeat:no-repeat;
    vertical-align:middle;
}



.Top_left
{
	width: 50%;
	height: auto;
	vertical-align: middle;
	text-align:left;
	font-family: Helvetica;
}

.Logo_section
{
    background-image: url(../images/logo.jpg);
    background-repeat: no-repeat;
    width: 430px;
    height: 91px;
}

#Left
{
    width: 147px;
    height: auto;
    background-color: #ffffff;
    float: left;
}

.Left_bottom
{
    width: 235px;
    height: auto;
    background-color: #ffffff;
    float: left;
    padding-left: 2px;
}

.White_Block
{
    width: 226px;
    height: 200px;
    background-color: #ffffff;
    padding-right: 9px;
}

.Brown_Block
{
    width: 226px;
    height: auto;
    background-color: #383838;
    float: left;
    background-image: url(../images/left_strip.jpg);
    background-repeat: repeat-y;
    padding-bottom: 8px;
    padding-top: 8px;
}

.Brown_Block_txt
{
    width: 198px;
    font-family: Helvetica;
    font-size: 12px;
    padding-left: 10px;
    letter-spacing: 1px;
    line-height: 16px;
    color: #ffffff;
}


#Logo
{
    height: 132px;
    width: 237px;
    background-image: url(../images/logo.jpg);
    background-repeat: no-repeat;
    float: right;
}

.Search_txt
{
    color: #00000f;
    font-size: 12px;
    font-family: Helvetica;
}

.Search_inputtxt
{
    color: #532c23;
    font-size: 12px;
    text-align: right;
    font-family: Helvetica;
}





.white_strip
{
    width: 197px;
    height: 4px;
    background-color: #FFFFFF;
}

.lable
{
    width: 216px;
    height: 39px;
    background-image: url(../images/lable.jpg);
    background-repeat: no-repeat;
    font-family: Helvetica;
    font-size: 12px;
    font-weight: bold;
    text-align: left;
    color: #FFFFFF;
    padding-top: 5px;
    padding-left: 15px;
}

/*==========================Right Section Starts Here=================================*/
#Right
{
    width: 768px;
    height: auto;
    background-color: #191c1f;
    float: right;
}

.Top_Right
{
    width:50%;
    height: auto;
    float: right;
}

.top_content
{
    width: 425px;
    height: auto;
    float: right;
}

.top_content_table
{
    width: 230px;
    height: auto;
    float: right;
}

.top_content_table_login
{
    width: 260px;
    height: auto;
    float: right;
}

.Navigation
{
    width: auto;
    height: auto;
    float: right;
    padding-top: 20px;
}


.cart
{
    float: right;
}
.Nav_txt
{
    height: auto;
    font-family: Helvetica;
    font-size: 12px;
    color: #61584f;
    text-align: right;
    font-weight: 500;
}

.Nav_txt a
{
    color: #61584f;
    text-decoration: none;
}

.Nav_txt a:hover
{
    color: #998b82;
    text-decoration: underline;
}

.Nav_txt2
{
    height: auto;
    font-family: Helvetica;
    font-size: 12px;
    color: #61584f;
    font-weight: 600;
}

.Nav_txt2Normal
{
    height: auto;
    font-family: Helvetica;
    font-size: 12px;
    color: #61584f;
    padding-right: 3px;
    font-weight: 100;
}

.Nav_txt2 a
{
    font-family: Helvetica;
    color: #61584f;
}

.Nav_txt2 a:link
{
    color: #61584f;
    text-decoration: underline;
    text-align: left;
}

.Nav_txt4
{
    height: auto;
    font-family: Helvetica;
    font-size: 12px;
    color: #61584f;
    padding-right: 3px;
    font-weight: 600;
    text-align: left;
    text-decoration: none;
}

.Nav_txt3
{
    height: auto;
    font-family: Helvetica;
    font-size: 12px;
    color: #61584f;
    padding-right: 3px;
    font-weight: 600;
    text-align: left;
    text-decoration: none;
}


.Nav_txt3Normal
{
    height: auto;
    font-family: Helvetica;
    font-size: 12px;
    color: #61584f;
    padding-right: 3px;
    font-weight: 100;
}

.Nav_txt3 a
{
    font-family: Helvetica;
    color: #61584f;
    text-decoration: none;
}

.Nav_txt3 a:link
{
    color: #61584f;
    text-decoration: none;
    text-align: left;
}


.Nav_txt3 a:hover
{
    text-decoration: underline;
}

.Cart_txt
{
    height: auto;
    font-family: Helvetica;
    font-size: 12px;
    color: #61584f;
    text-align: right;
    font-weight: 600;
    text-decoration: none;
}

.Cart_txt a
{
    color: #61584F;
    text-decoration: none;
}

.Cart_txt a:hover
{
    text-decoration: underline;
}

.Cart_txt2
{
    height: auto;
    font-family: Helvetica;
    font-size: 12px;
    color: #61584f;
    text-align: left;
    font-weight: 600;
    text-decoration: none;
}


.Nav_txt_rt
{
    font-family: Helvetica;
    font-size: 12px;
    color: #663300;
    padding-left: 20px;
    padding-right: 10px;
    float: right;
    padding-top: 8px;
    letter-spacing: 1px;
}
.Nav_txt_rt a
{
    color: #663300;
    text-decoration: none;
}



#Flash_Section
{
    width: 766px;
    height: auto;
    padding-left: 1px;
    padding-right: 1px;
    padding-top: 5px;
    padding-bottom: 5px;
    margin: auto;
    background-color: #FFFFFF;
}

#Flash_img
{
    width: 766px;
    height: 215px;
    background-image: url(../images/flash_img.jpg);
    background-repeat: no-repeat;
}

#Brown_Section
{
    width: 768px;
    height: auto;
    background-color: #191c1f;
}

.White_Section
{
    width: 748px;
    height: auto;
    background-color: #FFFFFF;
    margin: auto;
}

#Gradient_Strip
{
    width: 735PX;
    height: 13PX;
    background-image: url(../images/Gradient_strip.jpg);
    background-repeat: no-repeat;
}

.Big_lable
{
    width: 735px;
    height: 33px;
    background-image: url(../images/big_lables.jpg);
    background-repeat: no-repeat;
}

.Big_lable1
{
    width: 735px;
    height: 33px;
    background-image: url(../images/big_lables1.jpg);
    background-repeat: no-repeat;
}

.Main_blockout
{
    width: 737px;
    height: auto;
    background-color: #ffffff;
    padding-left: 11px;
    padding-bottom: 8px;
}

.Main_block
{
    width: 723px;
    height: auto;
    border-bottom: 2px solid #ececec;
    border-left: 1px solid #ececec;
    border-right: 1px solid #ececec;
    background-color: #FFFFFF;
}

#Lftarr_outline
{
    height: auto;
    width: 15px;
    padding-left: 8px;
    padding-top: 80px;
    float: left;
}
.Lft_arrow
{
    height: 9px;
    width: 6px;
    background-image: url(../images/Arr_lft.jpg);
    background-repeat: no-repeat;
    float: left;
}
#Rtarr_outline
{
    height: auto;
    width: 15px;
    padding-right: 8px;
    padding-top: 80px;
    float: right;
}
.Rt_arrow
{
    height: 9px;
    width: 6px;
    background-image: url(../images/Arr_Rt.jpg);
    background-repeat: no-repeat;
    float: right;
}
#Smallbook_outline
{
    width: 674px;
    height: 198px;
    background-image: url(../images/Smallbook_bg.jpg);
    background-repeat: repeat-y;
    float: left;
    background-color: #FFFFFF;
}

.Smallbook_detail
{
    width: 644px;
    height: auto;
    float: left;
    padding-left: 30px;
    font-size: 12px;
    color: #191c1f;
    font-family: Helvetica;
}

.Small_book
{
    width: 148px;
    height: 198px;
    float: left;
    padding-left: 11px;
    padding-right: 9px;
}

.Zoom_btn
{
    width: 90px;
    height: 23px;
    background-image: url(../images/zoom.jpg);
    background-repeat: no-repeat;
}

.horizontal_line
{
    width: 723px;
    height: 1px;
    background-image: url(../images/horizontalline.jpg);
    background-repeat: repeat-x;
    float: left;
}

.Big_book
{
    width: 695px;
    height: auto;
    font-size: 12px;
    padding-left: 15px;
    padding-bottom: 20px;
    padding-top: 10px;
    color: #191c1f;
    font-family: Helvetica;
}

.View_All
{
    font-size: 12px;
    font-family: Helvetica;
    font-weight: bold;
    text-align: right;
    color: #191c1f;
}

.View_All a
{
    color: #191c1f;
    text-decoration: none;
}

.View_All a:hover
{
    color: #a07369;
}
.input
{
    background-color: #ccc3c4;
    border: 0px;
    color: #000000;
    padding-left: 2px;
}

.input_txt
{
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    font-family: Helvetica;
}
.inputxt_top
{
    color: #504740;
    font-size: 12px;
    font-weight: bold;
    font-family: Helvetica;
}

.input_top
{
    background-color: #987360;
    border: 0px;
    color: #ffffff;
    padding-left: 2px;
}

.list_box
{
    width: 170px;
    border: 1px solid #191c1f;
}

.Btn
{
    border: 0px;
}

.BigBtn
{
    border: 0px;
    width: 70px;
    height: 40px;
}

.Ads
{

    height: auto;
    background-color: #ffffff;
    vertical-align: top;
}

#Main
{
    width: 900px;
    height: auto;
    background-color: #ffffff;
    float: left;
    background-image: url(../images/left_strip.jpg);
    background-repeat: repeat-y;
    border-bottom: 1px solid #000000;
}

#Special_offer
{
    width: 870px;
    height: 100px;
    background-image: url(../images/special_offerbg.jpg);
    background-repeat: repeat-y;
    float: right;
    border-bottom: 1px solid #000000;
}

.Product_table
{
    /*width: 811px;*/
    height: auto;
    background-color: #ffffff;
    float: right;
    text-align: center;
    font-weight: bold;
    font-family: Helvetica;
    font-size: 12px;
}

.Product_table_result
{
    width: 100%;
    height: auto;
    background-color: #ffffff;
    float: right;
    margin: auto;
    text-align: left;
}


#Nav_Bottom
{
    width: 855px;
    height: auto;
    background-color: #ffffff;
    float: right;
    margin: auto;
    text-align: center;
    font-weight: bold;
    font-family: Helvetica;
    font-size: 12px;
    padding-bottom: 3px;
    padding-top: 30px;
    padding-right: 10px;
}

.Nav_txtBottom
{
    font-family: Arial;
    font-size: 12px;
    color: #61584f;
    padding-right: 5px;
    text-align: right;
}

.Nav_txtBottom a
{
    color: #61584f;
    text-decoration: none;
}

.WaterMarkedTextBox
{
    height: 16px;
    width: 168px;
    padding: 2px 2 2 2px;
    font-size: 8pt;
    text-align: left;
    background-color: #FFFFFF;
    border: 0px;
    color: gray;
    padding-left: 2px;
}
.WaterMarkedTextBoxPSW
{
    background-position: center;
    height: 16px;
    width: 168px;
    padding: 2px 2 2 2px;
    border: 1px solid #BEBEBE;
    background-color: #FFFFFF;
    color: gray;
    vertical-align: middle;
    text-align: right;
    background-image: url(Images/psw_wMark.png);
    background-repeat: no-repeat;
}
.NormalTextBox
{
    height: 16px;
    width: 168px;
}

.Button1
{
    font-family: Helvetica;
    font-size: 12pt;
    background: #ffffff url('../images/btn_bg.png') repeat-x left bottom;
    border: solid 1px #8E8F8F;
    height: 20px;
    padding-left: 7px;
    padding-right: 7px;
    text-align: right;
    text-align: center;
    color: White;
    cursor:pointer
}

.radText
{
	vertical-align:middle;
}

.leftVerticalLine
{
	border-right: 1px solid #FFFFFF
}

.leftCorner
{
	width: 5px;
	height: 35px;
	background-color:White;
	background-image: url('../images/left-corner.gif');
}

.rightCorner
{
	width: 5px;
	height: 35px;
	background-color:White;
	background-image: url('../images/Right-corner.gif');
}

.HeadLogo
{
    vertical-align:middle; text-align:left;width:auto;height:auto;
}
/************CSS Change: 7-1-2012************/
.modalWrapper
{
    position:fixed;
    margin:0px;
    padding:0px;
    display:none;
}
.modalContent
{
    display:block;
}
.modal
{
    border: 3px solid #191919;
    border-radius: 4px;
    display: none;
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 10001;
    background-color: #fff;
    min-width: 300px;
}
.modal ul
{
    margin:0px;
    padding:0px;
    list-style-type:none;
}
.modal ul li
{
    padding:7px;
}
.modal ul li.message
{
    height:60px;
    border:0px solid #111;
    font-weight:bold;
    font-family:Verdana;
}
.loadImage
{
    position: absolute;
    border: 0px solid #191919;
    padding: 5px;
    margin-top: 45px;
    margin-left: 120px;
    display: none;
}
.modalBackground
{
    background-color: Gray;
    filter: alpha(opacity=70);
    opacity: 0.7;
    position: fixed;
    z-index: 10000;
}
.button
{
	border:1px solid #ccc;
	padding:5px;
	min-width:40px;
	min-width:75px;
	background-color:#EEE;
	cursor:pointer;
	font-family:Verdana;
}
#Brown_strip
{
    width: 1005px;
    height: 21px;
    background-image: url(../images/top_line.jpg);
    background-repeat: repeat-x;
    float: left;
}

.LinkA
{
	
            color:Blue;
            border-bottom-style:solid;
            border-bottom-width:thin;
}
.findmyebook
{
    padding-left: 5px; font-weight: normal;text-align: left; color:White
}