@charset "UTF-8";
#panelwidget     {
	width: 500px;
	height: 400px;
}

/* SprySlidingPanels.css - version 0.1 - Spry Pre-Release 1.6 */

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

/* This is the selector for the main SlidingPanels container. This selector
 * defines the width and height of the view port for the widget. Note that
 * this selector does not set the overflow property since that is done programatically
 * by the widget. Setting the overflow property programatically ensures that
 * the contens of the widget will be fully visible should JavaScript be disabled
 * in the browser.
 *
 * If you want to constrain the width of the SlidingPanels widget, set a width on
 * the SlidingPanels container. By default, our sliding panels widget expands
 * horizontally to fill up available space.
 *
 * The SlidingPanels container is positioned relative so that content inside it
 * can be positioned relative to its upper left corner.
 *
 * Avoid placing any CSS border or padding properties on the SlidingPanels container
 * as they can affect the proper positioning and sliding animations of the contents
 * inside the container.
 *
 * The name of the class ("SlidingPanels") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style the
 * SlidingPanels container.
 */
.SlidingPanels {
	position: relative;
	width: 500px;
	height: 400px;
	border: none;
	float: left;
	padding-top: 0px;
	padding-bottom: 0px;
}

/* This is the selector for the container that holds all of the content panels
 * for the widget. The SlidingPanelsContentGroup container is what gets programtically
 * positioned to create the slide animation. It is also what governs the layout of
 * the panels.
 *
 * By default, the width of the container is the same as its parent, the SlidingPanels
 * container.
 *
 * You can make the panels within the SlidingPanelsContentGroup container layout
 * horizontally by giving the SlidingPanelsContentGroup container a width that is as wide
 * or larget than the sum of the widths of all of the content panels, and then floating
 * the content panels inside the SlidingPanelsContentGroup container so they all appear
 * on the same line. You may also need to float the SlidingPanels and SlidingPanelsContentGroup
 * containers to insure that none of the content panels "leak" outside of the widget.
 *
 * Avoid placing any CSS border, margin, or padding properties on the SlidingPanels
 * container as they can affect the proper positioning and sliding animations of the
 * the container within the widget.
 *
 * The name of the class ("SlidingPanelsContentGroup") used in this selector is not
 * necessary to make the widget function. You can use any class name you want to style the
 * SlidingPanelsContentGroup container.
 */
.SlidingPanelsContentGroup {
	margin: 0px;
	padding: 0px;
	min-height:0px;
	border: none;
	width: 1000em;
	position: relative;
}


/* This is the selector for the container that holds content for a given panel. In our
 * default style implementation, the dimensions of each content panel exactly match the
 * dimensions of the view port (SlidingPanels) container. This ensures that only one
 * panel ever shows within the view port.
 *
 * Avoid placing any CSS border, margin, or padding properties on the SlidingPanels
 * container as they can affect the proper positioning and sliding animations of the
 * the panel within the widget. You can place border, margins and padding on any content
 * *inside* the content panel.
 *
 * The name of the class ("SlidingPanelsContent") used in this selector is not
 * necessary to make the widget function. You can use any class name you want to style the
 * SlidingPanelsContent container.
 */
.SlidingPanelsContent {
	width: 500px;
	height: 400px;
	overflow: hidden;
	margin: 0px;
	border: none;
	float: left;
	background-repeat: no-repeat;
	background-position: left top;
}


/* The class used in this selector is programatically added to the SlidingPanels container
 * anytime we are animating between panels. This rule makes sure that *all* content inside
 * the widget is overflow:none to avoid a rendering glitch that occurs in FireFox 1.5 whenever
 * there is an element inside the widget that displays a scrollbar.
 *
 * The class is automatically removed once the animation has stopped so that the overflow
 * properties of the content inside the widget should be restored.
 */
.SlidingPanelsAnimating * {
	overflow: hidden !important;
}

/* The class used in this selector is programatically added to the SlindingPanelsContent
 * container that is currently visible in the view port. The class is automatically removed
 * when the widget switches to a different panel.
 */
.SlidingPanelsCurrentPanel {
}

/* The class used in this selector is programatically added to the SlidingPanels container
 * anytime the SlidingPanels container is given focus. The class is automatically removed
 * once the SlidingPanels container loses focus.
 */
.SlidingPanelsFocused {
}
#barker {
	background-image: url(../images2/package_bg_barker.png);
	background-repeat: no-repeat;
	background-position: center bottom;
}
#hound {
	background-image: url(../images2/package_bg_hound.png);
	background-repeat: no-repeat;
	background-position: center bottom;
}
#puppy {
	background-image: url(../images2/package_bg_puppy.png);
	background-repeat: no-repeat;
	background-position: center bottom;
}
#webpkg {
	background-image: url(../images2/package_bg_opening.png);
	background-repeat: no-repeat;
	background-position: center bottom;
}
#bigdog {
	background-image: url(../images2/package_bg_bigdog.png);
	background-repeat: no-repeat;
	background-position: center bottom;
}
#yapper {
	background-image: url(../images2/package_bg_yapper.png);
	background-repeat: no-repeat;
	background-position: center bottom;
}

#wrapper #stage #scroller  {
	display: inline;
	float: left;
	width: 300px;
	padding-top: 10px;
	padding-bottom: 15px;
}

#wrapper #stage #scroller li  {
	float: left;
	height: 70px;
	width: 150px;
	padding-top: 10px;
}
#wrapper #stage #scroller li p  {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 12px;
	padding-right: 5px;
	padding-left: 5px;
}
#wrapper #stage #scroller li a  {
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 35px;
	display: block;
	width: 135px;
	color: #FFF;
	font-weight: bold;
	padding-left: 5px;
	height: 35px;
	background-image: url(../images2/bg_slidebutton2.gif);
	background-repeat: no-repeat;
	background-position: center top;
}
#wrapper #stage #scroller li a:hover {
	background-position: bottom;
	color: #FFF;

}
.packagelist {
	margin-left: 30px;
	display: inline;
	float: left;
	padding-top: 20px;
	width: 220px;
}
.packagelist li {
	font-weight: bold;
	list-style-type: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 16px;
	padding-top: 3px;
	display: inline;
	float: left;
	width: 220px;
}
.packagelistanswer {
	color: #940a24;
}
.SlidingPanelsContentGroup h1      {
	padding-left: 20px;
	padding-top: 10px;
	margin-bottom: 2px;
	padding-right: 20px;
	color: #940a24;
	text-transform: capitalize;
}
.SlidingPanelsContentGroup h3 {
	margin-left: 20px;
	font-size: 14px;
	line-height: 18px;
	font-weight: bold;
	margin-bottom: 5px;
	margin-right: 20px;
	font-family: Arial, Helvetica, sans-serif;
}
.SlidingPanelsContentGroup p {
	margin-right: 20px;
	margin-left: 20px;
}

.scrollerregularlist {
	padding-right: 100px;
}
.scrollerregularlist li       {
	margin-left: 25px;
	font-size: 14px;
	line-height: 16px;
	margin-right: 40px;
	padding-top: 5px;
	font-weight: bold;
	background-image: url(../images2/diamond.gif);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 25px;
	padding-bottom: 5px;
	font-family: Arial, Helvetica, sans-serif;
}
.importantmessage {
	font-size: 14px;
	line-height: 18px;
	font-weight: bold;
	padding-bottom: 3px;
	font-family: Arial, Helvetica, sans-serif;
}
#webDesignPanel1 {
	background-image: url(../images2/panel_WebDesign_gamble.jpg);
	background-repeat: no-repeat;
	background-position: right bottom;
}
#webDesignPanel3 , #seoPanel4{
	background-image: url(../images2/panel_WebDesign_geek.jpg);
	background-repeat: no-repeat;
	background-position: right bottom;
}
#webDesignPanel4 {
	background-image: url(../images2/panel_WebDesign_fun.jpg);
	background-repeat: no-repeat;
	background-position: right bottom;
}
#webDesignPanel9 {
	background-image: url(../images2/panel_WebDesign_friend.jpg);
	background-repeat: no-repeat;
	background-position: right bottom;
}

#seoPanel2 {
	background-image: url(../images2/panel_SEO_findyou.jpg);
	background-repeat: no-repeat;
	background-position: right bottom;
}
#seoPanel3 , #vidProdPanel5, #webDesignBusiness, #needSitePanel6, #currentSitePanel6, #proTalentPanel3, #meetingPanel3, #greenScreenPanel3, #streamingVideoPanel2{
	background-image: url(../images2/panel_downtobusiness.jpg);
	background-repeat: no-repeat;
	background-position: center center;
}

#seoPanel5 {
	background-image: url(../images2/panel_SEO_case.jpg);
	background-repeat: no-repeat;
	background-position: right bottom;
}
#seoPanel6 {
	background-image: url(../images2/panel_SEO_quiz.jpg);
	background-repeat: no-repeat;
	background-position: right bottom;
}
#seoPanel7 {
	background-image: url(../images2/panel_SEO_eval.jpg);
	background-repeat: no-repeat;
	background-position: right bottom;
}
#webMaintPanel2 {
	background-image: url(../images2/panel_WebMaint_top5.jpg);
	background-repeat: no-repeat;
	background-position: right bottom;
}
#webMaintPanel3 {
	background-image: url(../images2/panel_WebMaint_options.jpg);
	background-repeat: no-repeat;
	background-position: right bottom;
}
#webMaintPanel4 {
	background-image: url(../images2/panel_WebMaint_eval.jpg);
	background-repeat: no-repeat;
	background-position: right bottom;
}
#needSitePanel2 {
	background-image: url(../images2/panel_NeedSite_confusion.jpg);
	background-repeat: no-repeat;
	background-position: center center;
}
#needSitePanel3 {
	background-image: url(../images2/panel_NeedSite_article.jpg);
	background-repeat: no-repeat;
	background-position: center center;
}
#needSitePanel4 {
	background-image: url(../images2/panel_NeedSite_excuses.jpg);
	background-repeat: no-repeat;
	background-position: center center;
}
#needSitePanel5 {
	background-image: url(../images2/panel_listening.jpg);
	background-repeat: no-repeat;
	background-position: center center;
}
#currentSitePanel4 {
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url(../images2/panel_badsite_quote.gif);
}
#currentSitePanel3 {
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url(../images2/panelBadSite_brokencar.jpg);
}
#currentSitePanel2 {
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url(../images2/panelBadSite_horror.jpg);
}
#currentSitePanel5 {
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url(../images2/panelBadSite_contact.jpg);
}
#vidProdPanel2 {
	background-image: url(../images2/panel_vidProdMain.jpg);
	background-repeat: no-repeat;
	background-position: center center;
}
#vidProdPanel3 {
	background-image: url(../images2/panel_vidProdWork.jpg);
	background-repeat: no-repeat;
	background-position: center center;
}
#vidProdPanel4 {
	background-image: url(../images2/panel_vidProdPro.jpg);
	background-repeat: no-repeat;
	background-position: center center;
}
#proTalentPanel2 {
	background-image: url(../images2/panel_proTalent.jpg);
	background-repeat: no-repeat;
	background-position: center center;
}
#proTalentPanel4 {
	background-image: url(../images2/panel_listening.jpg);
	background-repeat: no-repeat;
	background-position: center center;
}
#greenScreenPanel2 {
	background-image: url(../images2/panel_greenHollywood.jpg);
	background-repeat: no-repeat;
	background-position: center center;
}
#greenScreenPanel4 {
	background-image: url(../images2/panel_greenOffer.jpg);
	background-repeat: no-repeat;
	background-position: center center;
}
#streamingVideoPanel3 {
	background-image: url(../images2/panel_streamTech.jpg);
	background-repeat: no-repeat;
	background-position: center center;
}
#streamingVideoPanel4 {
	background-image: url(../images2/panel_streamForm.jpg);
	background-repeat: no-repeat;
	background-position: center center;
}
#mustVideoPanel4 {
	background-image: url(../images2/panel_mustVideoFight.jpg);
	background-repeat: no-repeat;
	background-position: center center;
}
#mustVideoPanel3 {
	background-image: url(../images2/graycorners.jpg);
	background-repeat: no-repeat;
	background-position: center center;
}
#mustVideoPanel2 {
	background-image: url(../images2/panel_mustVideoReport.jpg);
	background-repeat: no-repeat;
	background-position: center center;
}
#yellowPagesPanel4 , #meetingPanel4{
	background-image: url(../images2/panel_listening.jpg);
	background-repeat: no-repeat;
	background-position: center center;
}
#yellowPagesPanel2 {
	background-image: url(../images2/panellYellowPagesObit.jpg);
	background-repeat: no-repeat;
	background-position: center center;
}
#yellowPagesPanel3 {
	background-image: url(../images2/panellYellowPagesWaste.jpg);
	background-repeat: repeat;
	background-position: left center;
}
#meetingPanel2 {
	background-image: url(../images2/panelOnlineMeeting.jpg);
	background-position: center top;
	background-repeat: no-repeat;
}
#package1, #package2, #package3 {
	background-image: url(../images2/panelvidPackage.jpg);
	background-repeat: no-repeat;
	background-position: center center;
}
#vidpkg {
	background-image: url(../images2/panelVideoPackages.jpg);
	background-repeat: no-repeat;
	background-position: center center;
}
#packagecustom {
	background-image: url(../images2/panel_vidCustom.jpg);
	background-position: center center;
}
