/*
 * $RCSfile: $
 *
 * SnapGalaxy4CPG - a plugin for Coppermine gallery to create photo prints, and print product gift items
 * Copyright (C) 2007 SnapGalaxy, Inc. 
 *
 * This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA  02110-1301, USA.
 *
 */
 
/**
 * @version $Revision: $ $Date: $
 * @package SnapGalaxy4CPG
 * @author Bhavin Suthar <service@snapgalaxy.com> for SnapGalaxy, Inc. http://www.snapgalaxy.com/
 */

/* container to hold the cartview and the itemview divs.*/
#snapgalaxy-hidden-divs{
  position: absolute;
  left: 0px;
  top: 25px;
  width: 95%;
  padding-left: 25px;
  padding-right: 25px;
}

/* Storage area to place images until the order is over. */
#snapgalaxy-cartview{
  width: 100%;
  display: none;
  background: #fff;
  border: solid 1px #000;
}

#snapgalaxy-carthead{
  border-bottom: solid 1px #000;
  padding-left: 5px;
  padding-right: 15px;
  padding-bottom: 3px;
}

#snapgalaxy-carthead .snapgalaxy-left{
  font-size: 12pt;
  font-weight: bold;
}

#snapgalaxy-carthead .snapgalaxy-right{
  padding-top: 2px;
  font-size: 10pt;
}

#snapgalaxy-cartarea{
  padding: 10px;
}

#snapgalaxy-cartfoot{
  border-top: solid 1px #000;
  padding-left: 5px;
  padding-right: 15px;
  padding-top: 3px;
  padding-bottom: 3px;
}

/* Item product preview. */
#snapgalaxy-itemview{
  width: 99%;
  height: 450px;
  display: none;
  background: #fff;
  border: solid 1px #000;
}

#snapgalaxy-itemhead{
  border-bottom: solid 1px #000;
  padding-left: 5px;
  padding-right: 15px;
  padding-bottom: 3px;
}

#snapgalaxy-itemhead .snapgalaxy-left{
  font-size: 12pt;
  font-weight: bold;
}

#snapgalaxy-itemhead .snapgalaxy-right{
  padding-top: 2px;
  font-size: 10pt;
}

/* classes for the add/remove and view buttons. */
.snapgalaxyButtonAdd {
  border: 1px solid #000;
  color: #000;
  display: block;
  float: left;
  font-size: 8pt;
  font-family: arial;
  margin-left: 5px;
  padding: 1px 2px 1px 2px;
  text-align: center;
  text-decoration: none;
  width: 45px;
}
.snapgalaxyButtonView {
  border: 1px solid #000;
  color: #000;
  display: block;
  float: left;
  font-size: 8pt;
  font-family: arial;
  margin-left: 5px;
  padding: 1px 2px 1px 2px;
  text-align: center;
  text-decoration: none;
  width: 55px;
}       
.snapgalaxyButtonAdd:hover {
  background: #ddd;
  border: 1px solid #db0000;
  color: #db0000;
  text-decoration: none;
}       
.snapgalaxyButtonView:hover {
  background: #ddd;
  border: 1px solid #db0000;
  color: #db0000;
  text-decoration: none;
}     

.snapgalaxy-sub-menu{
}

.snapgalaxy-sub-menu:hover{
}

.snapgalaxy-left{
  float: left;
}

.snapgalaxy-right{
  float: right;
}

/* Need a div to clear things that float. */
.snapgalaxy-clear,.clear {
    clear: both; 
    font-size: 1px;
    line-height: 1px;
}
