/* 	__________________________________________________________________________________________
	Colors Used In Basic Grey Theme (From Darkest To Lightest):
		#000, #333, #666, #999, #ccc, #eee, #f5f5f5, #fff
	Special Colors:
		#9f0, #f00, #ffc, #ffb5b5, #ffe
	__________________________________________________________________________________________
*/


/* Basic Styles
_____________________________________________________________________________________________ */

 body {
  background: #e8e8e8;
  margin-top: 0;
  padding: 25px 1px;
  font: 11px Verdana, Arial, Helvetica, Sans-Serif;
  color: #000;
  letter-spacing: normal;
  text-align: center; 
  }

p, tr, td, ul, li {
  font: 12px Arial, Verdana, Helvetica, Sans-Serif;
  
  }
ul li {
  margin: 0;
  padding: 0;
  list-style-type: none;
  }
h1 {
  padding: 0;
  margin: 0 0 3px 0;
  font: bold 16px Arial, Verdana, Helvetica, Sans-Serif;
  color: #666;
  border: none;
  border-bottom: 1px solid #666;
  }
h3 {
  padding: 0 3px;
  margin: 3px;
  font: bold 12px/13px Verdana, Arial, Helvetica, Sans-Serif;
  color: #666;
  } 
  
/*  h3:before { 
  content: "\00BB \0020";	
adds a ">>" before H3s, not visible on IE --Commented out HTML5 - Change - ALK
  }*/
h4 {
  padding: 6px 3px 3px 10px;
  margin: 0px;
  font: bold 12px Verdana, Arial, Helvetica, Sans-Serif;
  color: #175979;
  text-align: left;
  background: transparent url('barbg.png') repeat-x;
  border: 0px solid #666;
  height: 19px;
  }
h5, h6 {
  padding: 0;
  margin: 0;
  font: bold 12px/16px Verdana, Arial, Helvetica, Sans-Serif;
  color: #666;
  }
a, a:link, a:visited, a:active {
  text-decoration: none;
  color: #666;
  font: 12px Verdana, Arial, Helvetica, Sans-Serif;
  }
a:hover {
  text-decoration: underline;
  color: #004767;
  font: 12px Verdana, Arial, Helvetica, Sans-Serif;
  cursor: pointer;
  }
table td { vertical-align:top; }
img { border: none; }
.hide { display: none; }
option { min-width: 1.5em; }


/* Main Layout
___________________________________________________________________________________________ */
/*	_________________________
	Fluid Container */
table#container {
  margin-top: 0px;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
  width: 975px;
  min-width: 600px;
  background:transparent url('pagebg1.png') repeat-y;
  border: 0px solid #333;
  }

/*	____________________
	Pop-up Containers */
#popupContainer {
  width:90%;
  padding:10px;
  margin: 0 3%;
  background: #FFF;
  }

/*	_______________________
	Pages with a sidebar */
#navcolumn {
  margin: 0;
  padding: 5px 5px 0px 5px; /** HTML5 Change - BLS **/
  width:150px;
  vertical-align:top;
  text-align:center;
  border-right: 1px solid #eee;
  }
#contentcolumn {
  padding:0px;
  margin:0px;
  vertical-align:top;
  text-align:left;
  width: 100%;
  }
  
/*	__________________________
	Pages without a sidebar */
#page, #pag {
  padding:0px;
  margin:0px;
  background:#fff;
  }
  
/*	________________________________
	Content Section on Every Page */
#maincontent {
  margin:0px;
  padding:5px 10px 10px 10px;    
  text-align: left;
  width: 710px;
  }

/* Header
___________________________________________________________________________________________ */
#Header {
  background: transparent;
  padding: 0;
  margin: 0 0 5px 0;
  width: 100%;
  position: relative;
  }
#BrandingArea {
  height:122px;
  width:100%;
  background: transparent url('Header.png') no-repeat;
  position: relative;
  }
  
/*	___________________
	Logo Positioning */
/*#Logo {
  position: absolute;
  top: 24px;
  left: 10px;
  }*/
  
/*	___________________
	Logo Replacement */
	/* Want to use one logo for your site, and another for printing?  Here's a trick: the following css
	will hide your site logo and replace it with a different logo as a background image.  The background
	image will show on your site, the store logo will print. This will also allow you to create a hover
	effect since your logo links to the home page. */
#Logo a { /* Selects the logo link, where your default logo resides, so we can use a new background image as a link. */
  position: absolute; /* This sets the positioning for your logo.  Absolute positioning will allow it to float over everything else in your header so you can put it where you like. */
  top: 0px; /* Distance from the top of your header. */
  left: 0px; /* Distance from the left of your header.  You can also use 'right' if you like, depending on your placement. */
  text-indent: -9999px; /* This will help hide any text or images that might be a part of your logo. */
  background: transparent url(logo.gif) no-repeat top left; /* Your new logo image. */
  display: block; /* This is important; it allows us to define a size for the link that our logo sits within. */
  width: 330px; /* The exact width of your new logo image. */
  height: 75px; /* The exact height of your new logo image, obviously. */
  }
#Logo a:hover { /* Selects the hover for our linked background image. */
  background: transparent url(logo.gif) no-repeat top left; /* Want the image to change when hovered over? Use an image the exact size as your new logo image. */
  }
#Logo img { display: none; } /* Some browsers are still rather stupid, so this will make sure the linkage area is contained to only your new image, not beyond it if the original and new images are different sizes. */

/*	____________
	Site Menu */
#SiteMenu {
  background: transparent;
  position: relative;
  right: 50px;
  }
#SiteMenu ul {
  margin:0;
  padding: 0 6px 3px 6px;
  white-space:nowrap;
  text-align: left;
  }
#SiteMenu li {
  display: inline;
  list-style-type: none;
  }
#SiteMenu a {
  padding: 0 4px;
  color: #fff;
  line-height: 15px;
  font: 12px Arial, Verdana, Helvetica, Sans-Serif;
  text-decoration: none;
  }
#SiteMenu a:hover {
  color:#fff;
  text-decoration: none;
  }
  
/* Site Menu Icons
___________________________________________________________________________________________ */
/* Here is an example of how you can add icons with a hover effect
   to your site menu for better link recognition. */
/*	_____
	  Up */
#SiteMenu a#Header_LoginStatusControl1_lnkStatus,
#SiteMenu a#Header1_LoginStatusControl1_lnkStatus {
  background: transparent url('MenuTab.png') no-repeat/*url(sswicons.gif) no-repeat 0px -4px*/;
  padding-left:40px;
  padding-top: 8px;
  position: relative;
  top: 90px;
  float: right;
  height: 30px;
  width: 75px;
  }
#SiteMenu a#Header_lnkMyAccount,
#SiteMenu a#Header1_lnkMyAccount {
  background: transparent /*url(sswicons.gif) no-repeat 0px -24px*/;
  padding-left:15px;
  position: relative;
  left: 75px;
  top: 110px;
  color: #175979;
  font: 14px Arial, Verdana, Helvetica, Sans-Serif;
  }
#SiteMenu a#Header_lnkCustomerService,
#SiteMenu a#Header1_lnkCustomerService {
  background: transparent url('MenuTab.png') no-repeat/*url(sswicons.gif) no-repeat 0px -44px*/;
  padding-left:30px;
  padding-top: 8px;
  position: relative;
  top: 90px;
  float: right;
  height: 30px;
  width: 85px;
  }
#SiteMenu a#Header_lnkSearch,
#SiteMenu a#Header1_lnkSearch {
  background: transparent url('MenuTab.png') no-repeat/*url(sswicons.gif) no-repeat 0px -64px*/;
  padding-left:40px;
  padding-top: 8px;
  position: relative;
  top: 90px;
  float: right;
  height: 30px;
  width: 75px;
  }
#SiteMenu a#Header_lnkCart,
#SiteMenu a#Header1_lnkCart {
  background: transparent /*url(sswicons.gif) no-repeat 0px -84px*/;
  padding-left:20px;
  }

/*	_______
	  Down */
#SiteMenu a:hover#Header_LoginStatusControl1_lnkStatus,
#SiteMenu a:hover#Header1_LoginStatusControl1_lnkStatus {
  background: transparent url('MenuTabOver.png') no-repeat/*url(sswicons.gif) no-repeat 0px -4px*/;
  padding-left:40px;
  padding-top: 8px;
  position: relative;
  top: 90px;
  float: right;
  height: 30px;
  width: 75px;
  }
#SiteMenu a:hover#Header_lnkMyAccount,
#SiteMenu a:hover#Header1_lnkMyAccount {
  background: transparent /*url(sswicons.gif) no-repeat 0px -24px*/;
  padding-left:15px;
  position: relative;
  left: 75px;
  top: 110px;
  color: #666; 
  font: 14px Arial, Verdana, Helvetica, Sans-Serif;
  }
#SiteMenu a:hover#Header_lnkCustomerService,
#SiteMenu a:hover#Header1_lnkCustomerService {
  background: transparent url('MenuTabOver.png') no-repeat/*url(sswicons.gif) no-repeat 0px -44px*/;
  padding-left:30px;
  padding-top: 8px;
  position: relative;
  top: 90px;
  float: right;
  height: 30px;
  width: 85px;
  }
#SiteMenu a:hover#Header_lnkSearch,
#SiteMenu a:hover#Header1_lnkSearch {
  background: transparent url('MenuTabOver.png') no-repeat/*url(sswicons.gif) no-repeat 0px -164px*/;
  padding-left:40px;
  padding-top: 8px;
  position: relative;
  top: 90px;
  float: right;
  height: 30px;
  width: 75px;
  }
#SiteMenu a:hover#Header_lnkCart,
#SiteMenu a:hover#Header1_lnkCart {
  background: transparent /*url(sswicons.gif) no-repeat 0px -184px*/;
  padding-left:20px;
  }
/* START Added on 6/25/13 ALK */  
#Blog a {
  background: transparent url('MenuTab.png') no-repeat;
  padding-left:40px;
  padding-top: 8px;
  position: relative;
  top: 90px;
  left: 5px;
  float: right;
  height: 30px;
  width: 80px;
}
#Blog a:hover {
  background: transparent url('MenuTabOver.png') no-repeat;
  padding-left:40px;
  padding-top: 8px;
  position: relative;
  top: 90px;
  left: 5px;
  float: right;
  height: 30px;
  width: 80px;
}
/* END Added on 6/25/13 ALK */  
/*	________________________
	Link to Shopping Cart */
#ShoppingCartLink a, #ShoppingCartLink a:link, #ShoppingCartLink a:active, #ShoppingCartLink a:visited {
  position: absolute;
  top: 18px;
  right: 75px;
  color:#10425a;
  text-decoration:none;
  padding: 0 0 3px 0;
  font: 18px Switzerland, Verdana, Arial, Helvetica, Sans-Serif;\
  width: 121px;
  }
#ShoppingCartLink a:hover {
  color:#fff;
  text-decoration: none;
  }

/*	___________
	MiniCart */
#MiniCart {
  position: absolute;
  top: 45px;
  right: 125px;
  color: #fff;  
  font: bold 10px/10px Verdana, Arial, Helvetica, Sans-Serif;
  padding: 0;
  }

/* Main Menu
___________________________________________________________________________________________ */
#MainMenu {
  width:100%;
  background: transparent;
  text-align:center;
  }
  
/*	_____________________________
	Top-Banner Categories Menu */
#MenuLevel1, #MenuLevel1 table {
  background: transparent;
  margin: 0 auto;
  width: 93.5%;
  }

/*	______________________________
	Category Top-Banner Tab Images
	(to control spacing, uncomment and adjust this and don't forget to comment out link tabs below) */
/*#MenuLevel1 .MenuItem,
#MenuLevel1 .MenuItemActive {
  padding: 0 8px;
  }*/
  
/*	_____________________________
	Category Top-Banner Tab Links
	(comment out the following if you're using category images, see above)*/
#MenuLevel1 .MenuItem, #MenuLevel1 .MenuItem a {
  font: bold 10px Verdana, Arial, Helvetica, Sans-Serif;
  background: transparent;
  color: #fff;
  line-height: 25px;
  text-align: center;
  }
#MenuLevel1 .MenuItem a:hover, #MenuLevel1 .MenuItemActive a:hover {    
  font: bold 10px Verdana, Arial, Helvetica, Sans-Serif;
  background: transparent;
  color: #fff;
  line-height: 25px;
  text-align: center;
  }
#MenuLevel1 .MenuItemActive, #MenuLevel1 .MenuItemActive a {
  font: bold 10px Verdana, Arial, Helvetica, Sans-Serif;
  background: #666;
  color: #fff;
  line-height: 25px;
  text-align: center;
  }
#MenuLevel1 A, #MenuLevel1 A:Hover {
  font: bold 10px Verdana, Arial, Helvetica, Sans-Serif;
  text-decoration:none;
  line-height: 25px;
  display: block;
  padding: 0 8px;
  white-space:nowrap;
  }

/*	________________________________
	Sub-Category Links Under Tabs */
#MenuLevel2 {
  width:93.5%;
  background: #fff;
  margin-left: auto;
  margin-right: auto;
  }
#MenuLevel2 Table {
  margin: 0 auto;
  }
#MenuLevel2 .MenuItem {
  padding: 2px 10px 0 10px;
  background:transparent;
  text-align: center;
  }
#MenuLevel2 a {
  font: 11px/16px Verdana, Arial, Helvetica, Sans-Serif;
  color:#fff;
  text-decoration:none;
  white-space:nowrap;
  }
#MenuLevel2 a:hover {
  color:#ccc;
  text-decoration:none;
  white-space:nowrap;
  }

/* Home Page
___________________________________________________________________________________________ */
#PageHome #MainContent, .HomepageBlock {
  padding:0;
  margin:0;
  }
#HomeTable {
  padding:0;
  margin:5px 0px 0px 40px;
  width:90%;
  }
#HomeColumn1 {
  vertical-align: top;
  text-align: left;
  padding: 0 5px;
  width: 150px;
  margin: 0;
  border-right: 1px solid	#eee;
  }
#HomeColumn2 {
  vertical-align:top;
  text-align:center;
  padding: 0 5px;
  margin: 0;
  }
#HomeColumn3 {
  vertical-align:top;
  text-align:left;
  padding: 0 5px;
  width: 150px;
  margin: 0;
  border-left: 1px solid #eee;
  display: none;
  }
#HomepageSample1 {
  background: #fff url(FreshStartImage.png) no-repeat 50% 50%;
  height: 180px;
  margin: 0;
  padding: 0;
  }
#HomepageSample2 {
  background: #f5f5f5;
  text-align: left;
  vertical-align: middle;
  margin: 10px 0;
  padding: 5px;
  border: solid 1px #999;
  font: 11px/14px Verdana, Arial, Helvetica, Sans-Serif;
  }

/* Other Menus
___________________________________________________________________________________________ */
#navColumn ul, .CategoryList ul,
#navColumn ul li, .CategoryList ul li {
  padding: 0;
  margin:0;
  list-style-type: none;
  }
  
/*	________________________________________
	Customer Service and My Account Menus */
.NavColumnBlock {
  background: #fff;
  padding: 0;
  margin: 0;
  width: 150px;
  }
.NavColumnBlockContent {
  padding: 3px;
  margin: 0;
  line-height: 1.1em;
  text-align: left;
  background: #fff;
  border-left: 1px solid #666;
  border-right: 1px solid #666;
  border-bottom: 1px solid #666;
  color: #666;
  }

/*	___________________________________________
	Customer Service & My Account Menu Links */
.NavColumnBlockContent a, .NavColumnBlockContent a:visited, .NavColumnBlockContent a:link {
  font: 11px Verdana, Arial, Helvetica, Sans-Serif;
  color: #666;
  text-decoration: none;
  list-style-type: none;
  margin: 0px /*0 0 10px HTML5 Change - BLS*/;
  }
.NavColumnBlockContent a:hover {
  font: 11px Verdana, Arial, Helvetica, Sans-Serif;
  color: #333;
  text-decoration: underline;
  }  

/*	_________________________
	Side Bar Menus & Forms */
.CategoryList, .SearchBoxForm, .MailingListSignupForm {
  width:150px;
  padding:0;
  }
.CategoryListContent, .SearchBoxFormContent, .MailingListSignupFormContent {
  padding: 3px;
  margin: 0 0 6px 0;
  text-align: left;
  background: #175979;
  border-left: 0px solid #666;
  border-right: 0px solid #666;
  border-bottom: 0px solid #666;
  }
.SearchBoxFormContent .FormInput, .MailingListSignupFormContent .FormInput {
  background: #fff;
  color: #666;
  padding-left: 3px;
  margin-bottom: 1px;
  margin-left: 1px;
  margin-right: 1px;
  font: bold 10px/14px Verdana, Arial, Helvetica, Sans-Serif;
  height: 19px;
  width: 90px;
  border: 2px solid #888;
  position: relative;
  bottom: 5px;
  
  }
.MailingListSignupFormContent .FormLabel {
  font: 10px/12px Tahoma, Verdana, Arial, Helvetica, Sans-Serif;
  color: #666;
  }

.SearchBoxFormContent {
 background: #fff;
 border-left: 2px solid #cecece;
 border-right: 2px solid #cecece;
 border-bottom: 2px solid #cecece;
}

/*	_________________________
	Search Button Position */
#ContentColumn1__ctl1_btnGoSearch,
#ContentColumn4__ctl1_btnGoSearch,
#ContentColumn5__ctl1_btnGoSearch {
  margin-bottom: -4px; /* Adjust as needed. */
  }

/*	_________________________________
	Side Bar Categories Menu Links */
.CategoryListContent ul, .CategoryListContent ul li {
  margin: 0;
  padding: 0;
  list-style-type: none;
  
  }
.CategoryListContent li { margin: 0; }
.CategoryListContent a,
.CategoryListContent a:link,
.CategoryListContent a:visited {
  display: block;
  color: #fff;
  background-color: #175979;
  padding: 5px 6px 8px 14px; /*MJB*/
  text-decoration: none;
  font: 11px Verdana, Arial, Helvetica, Sans-Serif;
   border-bottom: 1px solid #fff;

  }
.CategoryListContent li li a:link,
.CategoryListContent li li a:visited{
  display: block;
  color: #fff;
  background-color: #175979;
  padding: 5px 2px 5px 12px;
  text-decoration: none;
  font: 11px Verdana, Arial, Helvetica, Sans-Serif;
}

.CategoryListContent li li a {
  display: block;
  color: #175979;
  background-color: #fff;
  padding: 5px 2px 5px 12px;
  text-decoration: none;
  font: 11px Verdana, Arial, Helvetica, Sans-Serif;
 background: #fff url('circle.png') no-repeat; /**/
  
  }
.CategoryListContent .CurrentCategory a,
.CategoryListContent .CurrentCategory a:link,
.CategoryListContent .CurrentCategory a:visited,
.CategoryListContent .CurrentCategory a:hover {
  color: #175979;
  background: #fff url('circle.png') no-repeat;
  font: bold 11px Verdana, Arial, Helvetica, Sans-Serif;
 
  }
.CategoryListContent .SubCategory a,
.CategoryListContent .SubCategory a:link,
.CategoryListContent .SubCategory a:visited {
  display: block;
  color: #175979;
  background: #74a5bd;
  padding: 3px 2px 3px 24px;
  text-decoration: none;
  font: 11px Verdana, Arial, Helvetica, Sans-Serif;
  border-bottom: 0px solid #fff;
  }
.CategoryListContent .CurrentCategory .SubCategory a,
.CategoryListContent .CurrentCategory .SubCategory a:link,
.CategoryListContent .CurrentCategory .SubCategory a:visited {
  display: block;
  color: #175979;
  background: #74a5bd;
  padding: 3px 2px 3px 18px;
  text-decoration: none;
  font: 11px Verdana, Arial, Helvetica, Sans-Serif;
  }

.CategoryListContent li li a:hover,
.CategoryListContent .SubCategory a:hover,
.CategoryListContent .CurrentCategory .SubCategory a:hover {
  color: #175979;
  font: 11px Verdana, Arial, Helvetica, Sans-Serif;
  background: #fff url('circle.png') no-repeat;
  
  }
.CategoryListContent a:hover {
color: #175979;
background: #fff url('circle.png') no-repeat;
}
/* Breadcrumbs
___________________________________________________________________________________________ */
#BreadCrumbs {
  margin: 0 0 8px 0;
  padding: 2px 4px;    
  font: 10px Arial, Verdana, Helvetica, Sans-Serif;
  color: #999;
  text-align: left;
  display:block;
  background: #eee;
  }
#BreadCrumbs a, #BreadCrumbs a:link, #BreadCrumbs a:visited {
  color: #666;
  font: 10px Arial, Verdana, Helvetica, Sans-Serif;
  text-decoration: none;
  }
#BreadCrumbs a:hover {
  color: #999;
  font: 10px Arial, Verdana, Helvetica, Sans-Serif;
  text-decoration: none;
  }
.BreadCrumbTrailSpacer {
  font: 8px Verdana, Arial, Helvetica, Sans-Serif;
  }
.BreadCrumbTrailNoLink {
  }

/* Category Page
___________________________________________________________________________________________ */
#LayoutTable {
  width:97%;
  }
#Records table {
  border-top: 1px solid #ccc;
  width:100%;
  }
#Records table tr td {
  text-align:center;
  }
#Records table table {
  border:none;
  width:100%;
  }

/*	____________________________________________________
	Category Header (also uses H1 for category title) */
#CategoryBanner {
  margin: 3px 0;
  }
#Description {
  font:12px/14px Verdana, Helvetica, Arial, Tahoma, Sans-Serif;		
  color:#333;
  margin:-10px 0 10px 0px;
  }
#RecordsFound, #Pager ,#Sorter , #Sorter TD, #RecordsFound2, #Pager2, #Sorter2, #Sorter2 TD {
  font: 11px Verdana, Arial, Helvetica, Sans-Serif;
  color:#666;
  margin-bottom: 3px;
  white-space:nowrap;
  }
#Records {
  padding: 5px 0;
  }

/*	_____________________________
	"New" Image Position */
.NewProductBadge {
  position:relative;
  left:-60px;
  top:-128px;
  }
  
/*	_______________________
	Categories Grid/List */
.SingleCategoryDisplay {
  display: block;
  text-align:center;
  width:180px;
  margin:5px auto;
  vertical-align:top;
  }

.ListCategoryDisplay a,
.ListCategoryDisplay a:link,
.ListCategoryDisplay a:visited {
  font: bold 11px/20px Verdana, Arial, Helvetica, Sans-Serif;
  text-decoration:none;
   
  }
.ListCategoryDisplay a:hover {
  font: bold 11px/20px Verdana, Arial, Helvetica, Sans-Serif;
  text-decoration:none;
  }

.SingleCategoryDisplayName2 a,
.SingleCategoryDisplayName2 a:link,
.SingleCategoryDisplayName2 a:visited,
{
  font: bold 11px/20px Verdana, Arial, Helvetica, Sans-Serif;
  text-decoration:none;
  }
.SingleCategoryDisplayName2 a:hover, {
  font: bold 11px/20px Verdana, Arial, Helvetica, Sans-Serif;
  text-decoration:none;
 }
.SingleCategoryDisplayName a,
.SingleCategoryDisplayName a:link,
.SingleCategoryDisplayName a:visited,
.SingleCategoryDisplayName a:hover {
 display:none;/**/
}
 
/*	________________
	Products Grid  */
.SingleProductDisplay {
  display: block;
  text-align:center;
 /* width:180px;*/
  vertical-align:top;
  padding:5px;
  margin:6px auto;
  }

.SingleProductDisplayImage {
  padding-bottom:5px;
  }
.SingleProductDisplayName a,
.SingleProductDisplayName a:link,
.SingleProductDisplayName a:visited {
  font: bold 12px Verdana, Arial, Helvetica, Sans-Serif;
  text-decoration:none;
  }
.SingleProductDisplayName a:hover {
  font: bold 12px Verdana, Arial, Helvetica, Sans-Serif;
  text-decoration:none;
  }
.SingleProductDisplayPrice a,
.SingleProductDisplayPrice a:link,
.SingleProductDisplayPrice a:visited {
  font: normal 11px Verdana, Arial, Helvetica, Sans-Serif;
  text-decoration:none;
  }
.SingleProductDisplayPrice a:hover {
  font: normal 11px Verdana, Arial, Helvetica, Sans-Serif;
  text-decoration:none;
  }
  
/*	________________
	Product Lists */
.ListProductDisplay {
  height: 100%;
  }
.ListProductDisplayName, .ListProductDisplayName td,
.ListCategoryDisplayName, .ListCategoryDisplayName td {
  text-align:left !important;
  }
.ListProductDisplayPrice, .ListProductDisplayPrice td {
  float:right !important;
  text-align:right !important;
  }

/*	__________________________
	Detailed Products Lists */
.DetailProductDisplay {
  margin: 15px;
  text-align:left;
  }
.DetailProductDisplayName td,
.DetailProductDisplayPrice td,
.DetailProductDisplayDescription td,
.DetailProductDisplayControls td {
  text-align:left !important;
  float:left !important;
  }
.DetailProductDisplayName a,
.DetailProductDisplayName a:link,
.DetailProductDisplayName a:visited {
  font: bold 12px Verdana, Arial, Helvetica, Sans-Serif;
  text-decoration:none;
  }
.DetailProductDisplayName a:hover {
  font: bold 12px Verdana, Arial, Helvetica, Sans-Serif;
  text-decoration:none;
  background-color: #eee;
  color: #333;
  }
.DetailProductDisplayPrice a,
.DetailProductDisplayPrice a:link,
.DetailProductDisplayPrice a:visited {
  font: noraml 11px Verdana, Arial, Helvetica, Sans-Serif;
  text-decoration:none;
  }
.DetailProductDisplayPrice a:hover {
  font: noraml 11px Verdana, Arial, Helvetica, Sans-Serif;
  text-decoration:none;
  }
#Records .DetailProductDisplayImage {
  /*width:120px;BLS 07-09-12*/
  float:right;
  text-align:right;
  }
 
/*	________________
	Pricing Links */
a .ListPrice,
a:link .ListPrice,
a:visited .ListPrice { color: #999; }
a .SitePriceDiscounted,
a:link .SitePriceDiscounted,
a:visited .SitePriceDiscounted { color: #f00; }
a:hover .ListPrice { color: #666; }
a:hover .SitePriceDiscounted { color: #f00; }
 
/*	_______________________________________
	Side Bar Product & Category Rotators */
.HomepageBlock .SingleCategoryDisplay {
  display: block;
  text-align:center;
  width:140px;
  margin:5px auto;
  vertical-align:top;
  }
.HomepageBlock .SingleProductDisplay {
  display: block;
  text-align:center;
  width:140px;
  vertical-align:top;
  border: none;
  padding:5px;
  margin:6px auto;
  }
.HomepageBlock .SingleProductDisplay {
  margin-top: 5px; !important
  }
.HomepageBlock .SingleProductDisplayImage {
  /* height: 64px; */
  padding-bottom:5px;
  }
  
/* Product Page
___________________________________________________________________________________________ */

/*	_________
	Layout */
#ProductPageContainer {
  width:98%;
  }
#ProductPageImageColumn {
  width:175px;
  padding:0 10px 0 0;
  margin:0px;
  vertical-align:top;
  text-align:center;
  }
#ProductPageContentColumn {
  padding:0 0 0 10px;
  margin:0;
  vertical-align:top;
  text-align:left;  
  border-left: 1px solid #eee;
  }

/*	_________
	Styles */
#lblSKU { font-size: 10px; color: #666; }
#productdescription {
  padding: 8px;
  font: 11px/12px Verdana, Arial, Helvetica, Sans-Serif;
  color: #666;
  }
#imgZoom, #PrintThisPage, #EmailThisPage { margin: 0 0 2px 0; }
#ProductImage a, #ProductImage a:hover { text-decoration: none; }

/*	_______________________
	Product Controls Box */
#ProductControls {
  margin-top:5px;
  border: 3px dotted #999;
  background: #d5e4eb;
  padding: 12px 0 0 12px;
  }

/*	_____________________
	Product Properties */
.ProductPropertyLabel { font: bold 11px Verdana, Arial, Helvetica, Sans-Serif; color:#666; }
#ProductProperties { text-align:left; }
#ProductProperties ul { margin: 5px 0 0 50px; padding: 0; }
#ProductProperties ul li { margin-top:3px; }
#ProductProperties ul ul { margin: 5px 0 0 0; }

/*	________________
	Pricing */
.DiscountText { font: 11px Verdana, Arial, Helvetica, Sans-Serif; color:#333; }
.SitePriceDiscounted,.YouSave,.ListPrice,.SitePrice { font: 11px Verdana, Arial, Helvetica, Sans-Serif; }
.SitePrice, .ListPrice { color:#666; }
.ListPrice { text-decoration:line-through; }
.YouSave { color:#f00; }
.SitePriceDiscounted { color:#333; }

/*	_________________
	Volume Pricing */
#VolumeDiscounts { margin:5px; }
.VolumePricingHeader { background:#999; font: 11px/12px Verdana, Arial, Helvetica, Sans-Serif; color:#FFF; }
.VolumePricingText { font: 11px/12px Verdana, Arial, Helvetica, Sans-Serif; color:#666; }

/*	________________
	Related Items */
.RelatedItemsBlock {
  background: #fff;
  margin: 0;
  padding: 0 0 3px 0;
  background-color: #f5f5f5;
  }
.RelatedItemsBlock H3 {
  padding: 3px;
  margin: 0 0 4px 0;
  font: bold 12px Verdana, Arial, Helvetica, Sans-Serif;
  color: #666;
  text-align: left;
  background-color: #eee;
  }
.RelatedItemsBlockContent {
  padding: 0 9px;
  text-align: center;
  }
.RelatedItemsBlock .SingleProductDisplay {
  border: 1px solid #ccc;
  width:145px;
  margin: 0 0 4px 0;
  background: #fff;
  }
.RelatedItemsBlock .SingleProductDisplayName a,
.RelatedItemsBlock .SingleProductDisplayName a:link,
.RelatedItemsBlock .SingleProductDisplayName a:visited,
.RelatedItemsBlock .SingleProductDisplayName a:hover { font: bold 11px Verdana, Arial, Helvetica, Sans-Serif; }

/*	__________________
	Product Reviews */
#ProductReviews {
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
  margin: 20px 0;
  padding: 0 0 3px 0;
  }
#ProductReviews H3 {
  padding: 3px;
  margin: 0 0 5px 0;
  font: bold 12px Verdana, Arial, Helvetica, Sans-Serif;
  color: #666;
  background: #eee;
  }
#ProductReviewNew { margin: 10px 0; }
#ProductReviews a,
#ProductReviews a:link,
#ProductReviews a:visited {
  font: 10px Verdana, Arial, Helvetica, Sans-Serif;
  padding: 3px;
  text-decoration: none;
  }
#ProductReviews a:hover {
  font: 10px Verdana, Arial, Helvetica, Sans-Serif;
  padding: 3px;
  }
.ProductReviewRating {
  font: bold 11px Verdana, Arial, Helvetica, Sans-Serif;
  color:#666;
  }
.ProductReview {
  font: 11px Verdana, Arial, Helvetica, Sans-Serif;
  margin: 5px 10px;
  border-left: 2px solid #ccc;
  padding-left: 4px;
  }
.ProductReviewKarma {
  font: 11px Verdana, Arial, Helvetica, Sans-Serif;
  color:#666;
  white-space: nowrap;
  }
#pnlReviewDisplay {
  border: 1px solid #999;
  padding: 5px;
  }
#pnlWriteAReview textarea {
  width: 250px;
  height: 150px;
  }

/* Checkout
___________________________________________________________________________________________ */
#tblItems {
  border: 1px solid #999;
  width:98%;
  margin:5px;
  }
table#dgOrders {
  width:100%;
  }
#CheckoutTable {
  width:98%;
  margin: 0 1%;
  }
.Header {
  padding: 3px;
  margin: 0;
  font: bold 11px Verdana, Arial, Helvetica, Sans-Serif;
  color: #fff;
  background: #999;
  }
.CheckoutDescription {
  font: 12px/14px Verdana, Arial, Helvetica, Sans-Serif;
  }

/*	_________________
	Checkout Steps */
#CheckoutSteps {
  padding:5px;
  background: #fff;
  margin:0;
  }
.CheckoutStep {
  padding-right:20px;
  }
.CheckoutStep a, 
.CheckoutStep a:link, 
.CheckoutStep a:visited {
  font: 12px/14px Verdana, Arial, Helvetica, Sans-Serif;
  color:#999;
  white-space:nowrap;
  text-decoration:none;
  }
.CheckoutStep a:hover {
  font: 12px/14px Verdana, Arial, Helvetica, Sans-Serif;
  color:#666;
  white-space:nowrap;
  text-decoration:none;
  }
.CheckoutStep .CheckoutStepCurrent, 
.CheckoutStep a:link.CheckoutStepCurrent, 
.CheckoutStep a:visited.CheckoutStepCurrent, 
.CheckoutStep a:hover.CheckoutStepCurrent {
  font: bold 12px/14px Verdana, Arial, Helvetica, Sans-Serif;
  color:#666;
  white-space:nowrap;
  text-decoration:none;
  }

/*	_____________________
	Shopping Cart Page */
#CartTitle {
  width:100%;
  }
#lblcart {
  color: #333;
  }
table#CartContainer {
  width:98%;
  padding:0;
  margin:0 auto;
  }
table#CartContainer tr td {
  vertical-align:middle;
  }
#CartItemBlock {
  padding:0px;
  margin:0px;
  }
#CartItemBlock Table {
  margin:0px;
  width:100%;
  border-right: 1px solid #999;
  border-left: 1px solid #999;
  border-top: 1px solid #999;
  border-bottom: none;
  }
#CartUpdateBlock {
  width:75%;
  background:#fff;
  margin:0px;
  text-align:center;
  vertical-align:middle;
  }
#CartTotalBlock {
  border-bottom: double 3px #999;
  border-right: solid 1px #999;
  border-left: solid 1px #999;
  width:25%;
  margin:0px;
  padding:5px;
  text-align:center;
  vertical-align:middle;
  }
#lblSubTotal {
  font: bold 14px Arial, Verdana, Helvetica, Sans-Serif;
  }
#CartCheckoutButtons {
  width:98%;
  text-align:right;
  margin-top:10px
  }
.CartItem,
.CartAlternateItem {
  padding: 5px;
  font: 11px/14px Verdana, Arial, Helvetica, Sans-Serif;
  color: #666;
  text-align: left;
  border-bottom:1px solid #999;
  
  }
.CartItem { background: #fff; }
.CartAlternateItem { background: #f5f5f5; }
.CartItem a,
.CartItem a:link,
.CartItem a:visited,
.CartAlternateItem a,
.CartAlternateItem a:link,
.CartAlternateItem a:visited {
  color: #666;
  text-decoration: none;
  font-weight: bold;
  }
.CartItem a:hover,
.CartAlternateItem a:hover {
  color: #333;
  text-decoration: none;
  font-weight: bold;
  }

/*	________________________
	Shipping Methods List */
#ShipMethodsList {
  border-left: 3px solid #ccc;
  margin-left: 8px;
  }

/*	__________________
	Checkout Styles */
#AddressBookPanel {
  width:100%;
  margin:0;  
  }
#AddressList td {
  border: 3px double #ccc;
  padding: 5px;
  }
#AddressList td:hover {
  background: #fff;
  }
.ContentBox {
  margin: 3px 0px 5px 20px;  
  text-align:left;
  background:#ffe;
  border: solid 1px #999;
  padding:10px;
  }
#CheckoutTotals {
  text-align:center;
  background:#f5f5f5;
  border-left: 1px solid #999;
  border-top: 1px solid #999;
  border-right: 1px solid #999;
  padding:5px;
  margin: 0;
  width: 172px;
  }
#lblGrandTotal {
  border-top: 1px solid #ccc;
  }
#PlaceOrderCell {
  padding:0px;
  margin: 0;
  text-align:center;
  background:#fff;
  }
.ControlArea {
  border: 1px solid #999;
  background: #f5f5f5;
  padding:5px;
  margin-top:5px;
  }
#CheckoutPayment {
  background:#f5f5f5;
  border: 1px solid #999;
  padding:5px;
  margin: 0;
  text-align:left;
  width: 172px;
  }
#InstructionsField {
  background: #fff;
  border: 1px solid #ccc;
  width: 100%;
  padding:3px;
  margin: 3px 0;
  }
#OrderItemPreview table {
  width: 98%;
  }
#OrderItemPreview table table {
  width: 100%;
  }
#ShipToMultipleAddressesButton { margin: 5px; }

/* Misc Visual Styles
___________________________________________________________________________________________ */
.SSWtext, .CartText {
  font: 11px Verdana, Arial, Helvetica, Sans-Serif;
  color: #666;
  }
.SSWsmalltext {
  font: 10px Verdana, Arial, Helvetica, Sans-Serif;
  color:#666;
  }
a#LoginControl1_lnkForgotPassword { text-decoration: none; }
#btnUpdateTotals { background-color: #b6d4e3; }
#PackageList a,
#CheckoutPayment a {
  text-decoration: none;
  font-weight: bold;
  }
.SSWtext .Stories {
  text-align: justify;
  }
.Item {
  padding: 5px;
  background: #fff;
  font: 11px/14px Verdana, Arial, Helvetica, Sans-Serif;
  color: #666;
  text-align: left;
  }
.AlternateItem {
  padding: 5px;
  background: #eee;
  font: 11px/14px Verdana, Arial, Helvetica, Sans-Serif;
  color: #666;
  text-align: left;
  }
.FormTable {
  margin: 3px 5px;
  }
.contentcell {
  width: 50%;
  background: #f5f5f5;
  border: 3px solid #eee;
  }
.FormInput, #inKeyword {
  border: #999 1px solid;
  background: #fff;
  color: #666;
  padding-left: 2px;
  font: bold 10px/14px Verdana, Arial, Helvetica, Sans-Serif;
  height: 18px;
  }
.ContentCell .FormInput, .ContentCell .FormInputError { width: 200px; }
.FormInput:focus { background: #c3dbe8; } /* changes color of focused input box */
#btnSearch { margin: -2px 0 0 3px; } /* fixes alignment of search button on search page */
.FormInputError {
  border: #999 1px solid;
  background: #ffb5b5;
  color: #333;
  padding-left: 2px;
  font: bold 10px/14px Verdana, Arial, Helvetica, Sans-Serif;
  height: 18px;
  }
.formlabel {
  font: 12px Verdana, Arial, Helvetica, Sans-Serif;
  color: #333;  
  letter-spacing: normal;
  }
.CheckoutDescription span.FormLabel label {
  background: #b6d4e3;
  padding:2px;
  }
span.FormLabel label:before { 
  content: "\00AB \0020";	/* adds a "<<", not visible on IE */
  }
.FormLabelStrong {
  font: bold 12px/14px Verdana, Arial, Helvetica, Sans-Serif;
  color: #666;  
  letter-spacing: normal;  
  }
span#lblAddress { font: normal 14px/16px Arial, Verdana, Helvetica, Sans-Serif; }
.indent {  
  margin-left:20px;
  }
.Padded {
  margin:10px;
  }
#dlPolicy, #dlPolicy a, #dlPolicy a:hover {
  font: 12px Verdana, Arial, Helvetica, Sans-Serif;
  color: #666;
  }
.text {
  font: 10px Verdana, Arial, Helvetica, Sans-Serif;
  color: #666;
  padding-bottom: 8px;
  }
select {
  color: #333;
  }
a#lnkMyAccount, a:link#lnkMyAccount , a:visited#lnkMyAccount {
  font: bold 12px Verdana, Arial, Helvetica, Sans-Serif;
  color: #666;
  }
a:hover#lnkMyAccount {
  color: #9f0;
  text-decoration: none;
  }

/* Various Messages
___________________________________________________________________________________________ */
.ErrorMessage, .ErrorMessage UL {
  display: block;
  background: transparent;
  font: 10px/12px Verdana, Arial, Helvetica, Sans-Serif;
  color: #f00;
  }
.SuccessMessage {
  display: block;
  background:#124c6a;
  padding: 3px;
  color: #333;
  font: 11px/14px Verdana, Arial, Helvetica, Sans-Serif;
  text-align: center;
  }
.WebPageMessage {
  border:solid 1px #f00;
  background:#fff;
  padding:0;
  margin:0;
  }
.WebPageMessageError, .WebPageMessageWarning, .WebPageMessageInformation, .WebPageMessageQuestion, .WebPageMessageOK {
  padding: 5px;
  background-position: 5px 5px;
  background-repeat: no-repeat;
  }
.WebPageMessage .Message {
  font: 10px Verdana, Arial, Helvetica, Sans-Serif;
  padding: 0 0 0 40px;
  height:30px;
  margin:0;
  color:#333;
  }
.WebPageMessageError { background-image: url(MessageERROR.gif); }
.WebPageMessageWarning { background-image: url(MessageWARNING.gif); }
.WebPageMessageInformation { background-image: url(MessageINFO.gif); }
.WebPageMessageQuestion { background-image: url(MessageQUESTION.gif); }
.WebPageMessageOK { background-image: url(MessageOK.gif); }
  
/* Footer
___________________________________________________________________________________________ */
#footer {
  font: 10px Verdana, Arial, Helvetica, Sans-Serif;
  clear: both;
  margin: 0px 0 0 0;
  width: 100%;
  color: #fff;
  padding: 3px;
  text-align: center;
  background: transparent url('footerbg.png') no-repeat;
  border-top: 0px solid #666;
  height: 106px;
  }
#footermenu a {
  padding-left:4px;
  padding-right:4px;
  color: #615f5f;
  font: 10px Verdana, Arial, Helvetica, Sans-Serif;
  text-decoration: none;
  position: relative;
  top: 30px;
  }
#footermenu a:hover {
  color:#fff;
  text-decoration: none;
  }
#footercustommenu {
  padding: 4px 8px;
  }
#copyright {
  font-size: 10px;
  position: relative;
  top: 45px;
  color: #615f5f;
  display: block;
  padding: 3px;
  text-align: center;
  width: 500px;
  margin-right: auto;
  margin-left: auto;
  }
#poweredby {
  color: #333;
  position: relative;
  top: 45px;
  margin-right: auto;
  margin-left: auto;
  width: 500px;
  padding-right: 15px;
}
#GooglePlus, #Facebook, #twitter   {
  padding-right: 13px;
  padding-top: 35px;
  width: 32px;
  float: right;
  position: relative;
}
#footertext {
  margin-right: auto;
  margin-left: auto;
  width: 800px;
}

/* the table in stamp design screens where you enter text for customization */
.ItemCustomTable {
  border: 0px solid #ff0000;
  width: 90%;
 }
  .ItemCustomTable td {
  margin: 0 5%;
  padding: 4;
  /*width: 90%;*/
  background:#fff;
  border: 0px solid #ff0000;
  text-align:center;
}
  .ItemCustomTable th {
  margin: 0 5%;
  padding: 4;
  /*width: 90%;*/
  background:#ccc;
  border: 0px solid #ff0000;
  }
  #thTopBottom, #thEmpty{
  margin: 0 0%;
  padding: 0;
  /*width: 90%;*/
  background:#fff;
  border: 0px solid #ff0000;
  }

  .QTYColorTable {
  border: 0px solid #ff0000;
  width: 420px; /* MJB */
  }
  .QTYColorTable td {
  margin: 0 5%;
  padding: 4;
  /*width: 90%;*/
  background:#fff;
  border: 0px solid #ff0000;
  }
  .QTYColorTable th {
  margin: 0 5%;
  padding: 4;
  /* width: 90%; */
  background:#ccc;
  border: 1px solid #fff;
  }
  .UploadTable {
  border: 0px solid #ff0000;
  width: 90%;
  }
  .UploadTable td {
  margin: 0 5%;
  padding: 4;
  width: 90%;
  background:#fff;
  border: 0px solid #ff0000;
  }
  .UploadTable th {
  margin: 0 5%;
  padding: 4;
  width: 90%;
  background:#ccc;
  border: 0px solid #ff0000;
  }
  .tdUpload {
  background: #ccc;
  }
  #ScaleLabel {
  font: Bold;
  }
  #ColorLabel2 {
  font: Bold;
  }
  #AutoNumberLines {
  width: 34%;
  }
  #WizardColorHeader {
  background-color: #ccc;
  text-align: center;
  }
  #Choice235 {
  width: 250px;
  }
   /* the tables in the Re-Order Page */
.ReorderMasterTable {
  padding: 0;
  width: 90%;
  min-width: 400px;
  background:#bbb;
  border: 1px solid #333;
  }
.ReorderHeadTable {
  margin: 0 5%;
  padding: 0;
  width: 90%;
  min-width: 400px;
  background:#fff;
  border: 1px solid #333;
  }
.ReorderItemHeadTable {
  margin: 0; /* HTML5 Change - ALK */
  padding: 0;
  width: 90%;
  min-width: 400px;
  background:#bbb;
  border: 0px solid #333;
  }
.ReorderItemDetailTable {
  margin: 0;/* HTML5 Change - ALK */
  padding: 0;
  width: 90%;
  min-width: 400px;
  background:#f5f5f5;
  border: 0px solid #333;
  }
.ReorderDivTable {
  margin: 0 5%;
  padding: 0;
  width: 90%;
  min-width: 400px;
  background:#fff;
  border: 1px solid #333;
  }
.ReorderBackGndTable {
  margin: 0;/* HTML5 Change - ALK */
  padding: 0;
  width: 90%;
  min-width: 400px;
  background:#fff;
  border: 1px solid #333;
  }
.ReorderBackGndTableAlt {
  margin: 0 5%;
  padding: 0;
  width: 90%;
  min-width: 400px;
  background:#ccc;
  border: 1px solid #333;
  }
 .SingleCategoryGridDisplayName a,
.SingleCategoryGridDisplayName a:link,
.SingleCategoryGridDisplayName a:visited {
  font: normal 11px/20px Verdana, Arial, Helvetica, Sans-Serif;
  text-decoration:none;
  }
.SingleCategoryGridDisplayName a:hover {
  font: normal 11px/20px Verdana, Arial, Helvetica, Sans-Serif;
  text-decoration:none;
  }
  /* Area where stamp preview is shown */
#TableTopStamp {
	background-color: #ccc;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
 }
/******************************
Tabular Layout Settings
******************************/
#TableListTable {
  text-align:center;
/*  background:#ccc;  */
  border: 0px solid #000;
/*  margin: 0 5%; */
  padding: 0; 
/*  width: 90%; */
/*  min-width: 600px; */
/* border-left: 1px solid #000;  
 border-right: 1px solid #000;  
 border-top: 1px solid #000;  
 border-bottom: 1px solid #000;  */
  }
.TableDisplayItem  {
  border-bottom: 2px dotted #333;
  padding-top: 4px;
  }
/*.TableDisplayAlternateItem {
  border-top: 2px dotted #333;
}*/
.TableListProduct {
  border-top: 2px dotted #333;
  padding-top: 4px;
 border-right: 1px dotted #ccc; 
}
.TableListDesc {
  border-top: 2px dotted #333;
  padding-top: 4px;
  border-right: 1px dotted #ccc; 
  vertical-align:middle;
}
.TableListPrice {
  border-top: 2px dotted #333;
  padding-top: 4px;
 border-right: 1px dotted #ccc; 
  vertical-align:middle;
}
.TableListAdd {
  border-top: 2px dotted #333;
  padding-top: 4px;
  vertical-align:middle;
}
/*#TableListTable td {
  text-align:center;
  border: 0px solid #FFF0D9;
  padding: 0px; 
  border-bottom: 1px solid #000;
  border-collapse: collapse;
  margin: 0px;
  }
*/
#TableListHead {
  text-align:center;
  background: #ccc;
  }
/**************************
Chat Styles
**************************/
.FrameBackground {  background: #c2d4e6;}
.Titles {  font-family: Tahoma, Verdana, sans-serif; font-size: 12px; font-weight: bold;}
.Text {  font-family: Arial, Helvetica, sans-serif; font-size: 12px;}
.FormBackground { background: #E6E6E6; }
.FormField {  font-family: Tahoma, Verdana, sans-serif; font-size: 12px; }
.ChatBackground {  background: #FFFFFF;}

.ErrorText {  font-family: Tahoma, Verdana, sans-serif; font-size: 12px; font-weight: bold; color: #FF0000}
.usertext {  font-family: Tahoma, Verdana, sans-serif; font-size: 12px; color: #003399}
.reptext {  font-family: Tahoma, Verdana, sans-serif; font-size: 12px; color: #FF0000}
.SystemMsg {  font-family: Tahoma, Verdana, sans-serif; font-size: 12px; font-weight: normal; background-color: #F3F3F3; border: 1px #666666 solid}
.Smalltext {  font-family: Tahoma, Verdana, Arial; font-size: 9px}
.BkgUserChatTop {
	background-image: url(../images/chat/bkgUserChatTop.gif);
	background-repeat: no-repeat;
	background-position: right top;
	background-color: #FFFFFF;
	border: 1px solid #999999;
}
/**************************
END Chat Styles
**************************/

/***************************************** START Re-Order Styling *********************************************/

#lblItems {
 font: bold 17px Arial, Verdana, Sans-serif;
 color: #828282;
}

#PageLinkTop, #PageLinkBottom {
 padding: 5px 0px;
 font: 11px Arial, Verdana, Sans-serif;
}

#ReorderContainer {
 min-width: 600px;
}

.ReorderLineItemContainer_alt {
 background: #fff;
 border-top: 3px solid #828282;
 padding-bottom: 10px;
}

.ReorderLineItemContainer {
 background: #eee;
 padding-bottom: 10px;
}

.ReorderLineItemHeader {
 background: #828282;
 padding: 5px;
 text-align: left;
}

.ReorderLineItemLabel {
 padding: 5px;
 text-align: left;
}

.ReorderAddToCart {
 margin-right: 2em; 
 width: 15%;  
 padding-left: 10px;
 float: left;
 vertical-align: middle;
 text-align: center;


}
.ReorderProductImage {
float: left; 
margin-right: 2em; 
width: 30%; 
padding: 0px 0px 20px 10px;
font: 13px Verdana, Arial, Helvetica, Sans-Serif;
color:#333333;
text-align: center;
}

.ReorderProductLabel {
  display: none;
 float: left;
 width: 45%;
}

.ReorderPreviewLabel {
 display: none;
 text-align: left;
 width: 45%;
}

.ReorderItemHeader {
  font: bold 12px  Arial, Verdana, Helvetica, Sans-serif;
  color: #333333;
}

.ReorderCustomImage {
text-align: center;
}

.ReorderSpacer {
 display: none;
 margin-bottom: 20px;
 width:30%;
 float: left;
}

.ReorderSpacerTop {
 margin-top: 10px;
}

.ReorderSpacerBottom {
 padding-bottom: 10px;
 height: 25px;
}

#divOrders {
 width: 100%;
}

.ReorderNumber {
float: left; 
margin-right: 2em; 
width: 30%;
color: #fff;
font: bold 13px Arial, Verdana, Helvetica, Sans-serif;
text-transform: uppercase;
letter-spacing: .05em;
}

.ReorderDate {
color: #fff;
font: bold 13px Arial, Verdana, Helvetica, Sans-serif;
text-align: right;
text-transform: uppercase;
letter-spacing: .05em;
}

.ReorderItemDetail {
 margin-bottom: 10px;
 padding-bottom: 30px;
}


/***************************************** FINISH Re-Order Styling *********************************************/


/****************************************START HTML5 Add-on Styles ***************************************************/

.helplink {
 cursor: help;
}

#tbQtyColor {
 margin-bottom: 20px;
 margin-top: 10px;
}

#SideMenu1_lstCustomerServiceMenu {
 padding-left: 8px;
 margin: 0px;
}

#lblSorter {
 padding-right: 5px;
} 

@media screen and (-webkit-min-device-pixel-ratio:0) {

#lblSorter {
 padding-right: 5px;
 position: relative;
 top: 3px;
} 
}

#cmbBorder {
 margin-top: 5px;
}

#cmbZoom, #inQty {
 margin: 5px;
}

#dgPolicy td {
 border: none;
}

.Checkout_Receipt_ThankYou {
 text-align: center;
}

#Checkout_Receipt_Table {
 margin-left: auto;
 margin-right: auto;
 padding-left: 60px;
}



/*** Added by ALK for HTML5 ****/

#MyAccountMenu1_lstMyAccountMenu, #CustomerServiceMenu1_lstCustomerServiceMenu {
 padding-left: 10px;
}

#imgClipArt {
  margin-left: 65px;
  padding-top: 10px;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {

#imgClipArt {
  margin-left: 50px;
  padding-top: 10px;
  }
}

@-moz-document url-prefix() {
#imgClipArt {
  margin-left: 50px;
  padding-top: 10px;
  }
}

#clipart {
  visibility: hidden;
}

#dgItems {
  float: left;
}

#LabelNoPermission {
 color: #f00;
}

.SearchBoxGoButton {
 position:relative;
 top: 4px;
}

/*** End Added by ALK for HTML5 ****/

/**************************************** END HTML5 Add-on Styles ***************************************************/

/*** Added tags for 2013 theme - anchor stamps by ALK ****/

.actuator { 
position: relative;
top: -5px;
right: 0px;
}

#TopInfoBar {
 background: transparent url('barbg.png') repeat-x;
 padding-top: 7px;
 padding-bottom: 7px;
 width: 725px;
}

.tabletopbar {
 background: transparent url('barbg.png') repeat-x;
 color: #012537;
 font: 15px Switzerland, Arial, Verdana, Sans-Serif;
 width: 225px;
 padding: 5px;
}

.TableTextBG1 {
  background: transparent url('textbg1.png') no-repeat;
  font: 12px Switzerland, Arial, Verdana, Sans-Serif;
  text-align: left;
  padding: 10px;
  position: relative;
  top: -7px;
  left: 1px;
  color: #333;
}

.TableTextBG2 {
  background: transparent url('textbg1.png') no-repeat;
  font: 12px Switzerland, Arial, Verdana, Sans-Serif;
  text-align: left;
  padding: 10px;
  position: relative;
  top: -7px;
  left: 1px;
  color: #333;
}

.TableTextBG3 {
  background: transparent url('textbg2.png') no-repeat;
  font: 12px Switzerland, Arial, Verdana, Sans-Serif;
  text-align: left;
  padding: 10px;
  position: relative;
  top: -8px;
  left: 1px;
  color: #333;
}

.shoplink {
 float: right;
 padding-right: 5px;
}

#seperatorbar {
 float: left;
}

#PaymentLabel {
 background: transparent url('paymentsbar.png') no-repeat;
 color: #175979;
 font: bold 12.5px Arial, Verdana, Switzerland, Sans-Serif;
 text-align: center;
 padding: 7px;
}

#PaymentCC {
 background: transparent url('paymentCC.png') no-repeat;
}

#bottomtext {
 padding: 5px;
 position: relative;
 right: 10px;
 top: 10px;
}

.SearchBoxGoButton {
  padding-top: 3px;
  position: relative;
  right: 4px;
}

.mapcontentsbg {
 background: transparent url('mapcontentbg.png') no-repeat;
 width: 350px;
 padding-top: 25px;
}

.LabelBGMap {
 color: #fff;
 background: #464646;
 padding: 12px;
 width: 350px;
 
}

.ListContents {
 text-align: left;
 font: 11px;
}

.BodyContent {
  width: 90%;
  position: relative;
  left: 40px;
}

#btnAddCertificate {
  position: relative;
  top: 8px;
  right: 3px;
}

#footertext {
  color: #124c6a;
  font: 13px bold Switzerland, Verdana, Arial, Sans-Serif
  
}

#NotaryTitle {
  background: #666;
  color: #fff;
  text-align: center;
  font: 14px Verdana, Arial, Sans-Serif;
  padding-top: 5px;
  padding-bottom: 5px;
}
.NotaryLabel {
background: transparent url('barbg.png') repeat-x;
padding-top: 5px;
padding-bottom: 5px;
text-align: center;
}

/***********  Start Notary Category - ALK - 5/3/2013 ***************/

.Notary {
  background: transparent url('/images/NotaryCatTableBG.png') no-repeat;
  height: 175px;
  Width: 710px;
}

.NotaryText {
  font: italic 14px Arial, Verdana, Sans-Serif;
  vertical-align: middle;
  padding: 10px 0 10px 20px;
  float: left;
  width: 75%;
}

.NotaryStateImage {
  padding-right: 5px; 
  float: right; 
  margin-top: 3px;
}

.NotaryProductBG {
 background: transparent url('/images/NotaryCatTableBG2.png') no-repeat;
 height: 100px;
 width: 690px;
 padding: 25px; 
 vertical-align: middle;
}

/***********  End Notary Category - ALK - 5/3/2013 ***************/

/***********  Start Notary Products Descriptions - ALK - 5/6/2013 ***************/

.KitDescrip {
   background: transparent url('/images/ProductDescriptionImages/Description1_BG_Orig.png') no-repeat;
   background-position: bottom;
   padding-left: 5px;
} 

.descripprodtext {
  font: bold 11px Verdana, Arial, Sans-Serif;
  color:#124C6A;
  padding: 5px;
  position: relative;
  top: 115px;
  width: 135px;
}

.descripprodtext2 {
  font: bold 11px Verdana, Arial, Sans-Serif;
  color:#124C6A;
  padding: 8px;
  position: relative;
  top: 115px;
  width: 135px;
  margin-right: auto;
  margin-left: auto;
}

#included, #savingstext {
  font: bold 11px Verdana, Arial, Sans-Serif;
  color:#333;
  padding-left: 20px;
}

#included2 {
  font: bold 11px Verdana, Arial, Sans-Serif;
  color:#333;
  padding-left: 20px;
  padding-right: 20px;
}

#savingstext {
  text-decoration: underline;
  color:#124C6A;
}

.productitems {
 float: right;
 padding-left: 10px;
 padding-right: 10px;
}

.productitemslg {
 float: right;
 padding-left: 30px;
 padding-right: 10px;
}

/***********  End Notary Products Descriptions - ALK - 5/6/2013 ***************/


/*********** START Marriage Kits Products Descriptions - ALK - 4/14/2014 ***************/

#MK-HANDBK {
 background: transparent url('/images/Products/ProductsForNotary/MarriageKits/MK-MarriageHandbook.png') no-repeat;
 height: 193px;
 width: 150px;
}

#MK-CEREMONY {
 background: transparent url('/images/Products/ProductsForNotary/MarriageKits/MK-WeddingCeremonyScript.png') no-repeat;
 height: 193px;
 width: 150px;
}

#MK-FACT {
 background: transparent url('/images/Products/ProductsForNotary/MarriageKits/MK-MarriageFactSheet.png') no-repeat;
 height: 193px;
 width: 150px;
}

#MK-CERTIFICATE {
 background: transparent url('/images/Products/ProductsForNotary/MarriageKits/MK-MarriageCertificates.png') no-repeat;
 height: 193px;
 width: 150px;
}

#MK-FOILSEALS {
 background: transparent url('/images/Products/ProductsForNotary/MarriageKits/MK-GoldFoilSeals.png') no-repeat;
 height: 193px;
 width: 150px;
}

#MK-FOLDER {
 background: transparent url('/images/Products/ProductsForNotary/MarriageKits/MK-WhiteFolder.png') no-repeat;
 height: 193px;
 width: 150px;
}

/*********** End Marriage Kits Products Descriptions - ALK - 4/14/2014 ***************/


/*********** START Notary Kits Products Descriptions - ALK - 10/8/2013 ***************/

#BK-AK-1 {
 background: transparent url('/images/ProductDescriptionImages/BK-AK-1.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-AK-2 {
 background: transparent url('/images/ProductDescriptionImages/BK-AK-2.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-AK-2p {
 background: transparent url('/images/ProductDescriptionImages/BK-AK-2p.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-AK-3 {
 background: transparent url('/images/ProductDescriptionImages/BK-AK-3.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-AK-3S {
 background: transparent url('/images/ProductDescriptionImages/BK-AK-3S.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-AK-4 {
 background: transparent url('/images/ProductDescriptionImages/BK-AK-4.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-AK-4p {
 background: transparent url('/images/ProductDescriptionImages/BK-AK-4p.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-AK-5 {
 background: transparent url('/images/ProductDescriptionImages/BK-AK-5.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-AK-B {
 background: transparent url('/images/ProductDescriptionImages/BK-AK-B.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-AK-INK {
 background: transparent url('/images/ProductDescriptionImages/BK-AK-INK.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-VA-RND {
 background: transparent url('/images/ProductDescriptionImages/BK-VA-RND.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-VA-RNDS {
 background: transparent url('/images/ProductDescriptionImages/BK-VA-RNDS.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-AL-1 {
 background: transparent url('/images/ProductDescriptionImages/BK-AL-1.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-AL-2 {
 background: transparent url('/images/ProductDescriptionImages/BK-AL-2.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-AL-2p {
 background: transparent url('/images/ProductDescriptionImages/BK-AL-2p.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-AZ-1 {
 background: transparent url('/images/ProductDescriptionImages/BK-AZ-1.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-AZ-2 {
 background: transparent url('/images/ProductDescriptionImages/BK-AZ-2.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-AZ-2p {
 background: transparent url('/images/ProductDescriptionImages/BK-AZ-2p.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-AR-1 {
 background: transparent url('/images/ProductDescriptionImages/BK-AR-1.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-AR-2 {
 background: transparent url('/images/ProductDescriptionImages/BK-AR-2.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-AR-2p {
 background: transparent url('/images/ProductDescriptionImages/BK-AR-2p.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-CO-1 {
 background: transparent url('/images/ProductDescriptionImages/BK-CO-1.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-CO-2 {
 background: transparent url('/images/ProductDescriptionImages/BK-CO-2.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-CO-2p {
 background: transparent url('/images/ProductDescriptionImages/BK-CO-2p.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-CT-1 {
 background: transparent url('/images/ProductDescriptionImages/BK-CT-1.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-CT-2 {
 background: transparent url('/images/ProductDescriptionImages/BK-CT-2.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-CT-2p {
 background: transparent url('/images/ProductDescriptionImages/BK-CT-2p.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-DE-1 {
 background: transparent url('/images/ProductDescriptionImages/BK-DE-1.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-DE-2 {
 background: transparent url('/images/ProductDescriptionImages/BK-DE-2.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-DE-2p {
 background: transparent url('/images/ProductDescriptionImages/BK-DE-2p.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-DE-6 {
 background: transparent url('/images/ProductDescriptionImages/BK-DE-6.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-DC-1 {
 background: transparent url('/images/ProductDescriptionImages/BK-DC-1.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-DC-2 {
 background: transparent url('/images/ProductDescriptionImages/BK-DC-2.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-DC-2p {
 background: transparent url('/images/ProductDescriptionImages/BK-DC-2p.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-DC-6 {
 background: transparent url('/images/ProductDescriptionImages/BK-DC-6.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-FL-1 {
 background: transparent url('/images/ProductDescriptionImages/BK-FL-1.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-FL-2 {
 background: transparent url('/images/ProductDescriptionImages/BK-FL-2.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-FL-2p {
 background: transparent url('/images/ProductDescriptionImages/BK-FL-2p.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-FL-6 {
 background: transparent url('/images/ProductDescriptionImages/BK-FL-6.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-GA-1 {
 background: transparent url('/images/ProductDescriptionImages/BK-GA-1.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-GA-2 {
 background: transparent url('/images/ProductDescriptionImages/BK-GA-2.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-GA-2p {
 background: transparent url('/images/ProductDescriptionImages/BK-GA-2p.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-GA-6 {
 background: transparent url('/images/ProductDescriptionImages/BK-GA-6.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-HI-1 {
 background: transparent url('/images/ProductDescriptionImages/BK-HI-1.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-HI-2 {
 background: transparent url('/images/ProductDescriptionImages/BK-HI-2.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-HI-2p {
 background: transparent url('/images/ProductDescriptionImages/BK-HI-2p.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-ID-1 {
 background: transparent url('/images/ProductDescriptionImages/BK-ID-1.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-ID-2 {
 background: transparent url('/images/ProductDescriptionImages/BK-ID-2.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-ID-2p {
 background: transparent url('/images/ProductDescriptionImages/BK-ID-2p.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-IL-1 {
 background: transparent url('/images/ProductDescriptionImages/BK-IL-1.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-IL-2 {
 background: transparent url('/images/ProductDescriptionImages/BK-IL-2.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-IL-2p {
 background: transparent url('/images/ProductDescriptionImages/BK-IL-2p.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-IN-1 {
 background: transparent url('/images/ProductDescriptionImages/BK-IN-1.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-IN-2 {
 background: transparent url('/images/ProductDescriptionImages/BK-IN-2.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-IN-2p {
 background: transparent url('/images/ProductDescriptionImages/BK-IN-2p.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-IA-1 {
 background: transparent url('/images/ProductDescriptionImages/BK-IA-1.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-IA-2 {
 background: transparent url('/images/ProductDescriptionImages/BK-IA-2.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-IA-2p {
 background: transparent url('/images/ProductDescriptionImages/BK-IA-2p.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-KS-1 {
 background: transparent url('/images/ProductDescriptionImages/BK-KS-1.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-KS-2 {
 background: transparent url('/images/ProductDescriptionImages/BK-KS-2.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-KS-2p {
 background: transparent url('/images/ProductDescriptionImages/BK-KS-2p.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-KY-1 {
 background: transparent url('/images/ProductDescriptionImages/BK-KY-1.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-KY-2 {
 background: transparent url('/images/ProductDescriptionImages/BK-KY-2.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-KY-2p {
 background: transparent url('/images/ProductDescriptionImages/BK-KY-2p.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-LA-1 {
 background: transparent url('/images/ProductDescriptionImages/BK-LA-1.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-LA-2 {
 background: transparent url('/images/ProductDescriptionImages/BK-LA-2.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-LA-2p {
 background: transparent url('/images/ProductDescriptionImages/BK-LA-2p.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-ME-1 {
 background: transparent url('/images/ProductDescriptionImages/BK-ME-1.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-ME-2 {
 background: transparent url('/images/ProductDescriptionImages/BK-ME-2.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-ME-2p {
 background: transparent url('/images/ProductDescriptionImages/BK-ME-2p.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-MD-1 {
 background: transparent url('/images/ProductDescriptionImages/BK-MD-1.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-MD-2 {
 background: transparent url('/images/ProductDescriptionImages/BK-MD-2.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-MD-2p {
 background: transparent url('/images/ProductDescriptionImages/BK-MD-2p.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-MA-1 {
 background: transparent url('/images/ProductDescriptionImages/BK-MA-1.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-MA-2 {
 background: transparent url('/images/ProductDescriptionImages/BK-MA-2.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-MA-2p {
 background: transparent url('/images/ProductDescriptionImages/BK-MA-2p.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-MI-1 {
 background: transparent url('/images/ProductDescriptionImages/BK-MI-1.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-MI-2 {
 background: transparent url('/images/ProductDescriptionImages/BK-MI-2.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-MI-2p {
 background: transparent url('/images/ProductDescriptionImages/BK-MI-2p.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-MN-1 {
 background: transparent url('/images/ProductDescriptionImages/BK-MN-1.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-MN-2 {
 background: transparent url('/images/ProductDescriptionImages/BK-MN-2.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-MN-2p {
 background: transparent url('/images/ProductDescriptionImages/BK-MN-2p.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-MS-1 {
 background: transparent url('/images/ProductDescriptionImages/BK-MS-1.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-MS-2 {
 background: transparent url('/images/ProductDescriptionImages/BK-MS-2.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-MS-2p {
 background: transparent url('/images/ProductDescriptionImages/BK-MO-2p.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-MO-1 {
 background: transparent url('/images/ProductDescriptionImages/BK-MO-1.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-MO-2 {
 background: transparent url('/images/ProductDescriptionImages/BK-MO-2.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-MO-2p {
 background: transparent url('/images/ProductDescriptionImages/BK-MO-2p.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-MT-1 {
 background: transparent url('/images/ProductDescriptionImages/BK-MT-1.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-MT-2 {
 background: transparent url('/images/ProductDescriptionImages/BK-MT-2.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-MT-2p {
 background: transparent url('/images/ProductDescriptionImages/BK-MT-2p.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-NE-1 {
 background: transparent url('/images/ProductDescriptionImages/BK-NE-1.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-NE-2 {
 background: transparent url('/images/ProductDescriptionImages/BK-NE-2.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-NE-2p {
 background: transparent url('/images/ProductDescriptionImages/BK-NE-2p.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-NV-1 {
 background: transparent url('/images/ProductDescriptionImages/BK-NV-1.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-NV-2 {
 background: transparent url('/images/ProductDescriptionImages/BK-NV-2.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-NV-2p {
 background: transparent url('/images/ProductDescriptionImages/BK-NV-2p.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-NH-1 {
 background: transparent url('/images/ProductDescriptionImages/BK-NH-1.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-NH-2 {
 background: transparent url('/images/ProductDescriptionImages/BK-NH-2.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-NH-2p {
 background: transparent url('/images/ProductDescriptionImages/BK-NH-2p.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-NJ-1 {
 background: transparent url('/images/ProductDescriptionImages/BK-NJ-1.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-NJ-2 {
 background: transparent url('/images/ProductDescriptionImages/BK-NJ-2.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-NJ-2p {
 background: transparent url('/images/ProductDescriptionImages/BK-NJ-2p.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-NJ-6 {
 background: transparent url('/images/ProductDescriptionImages/BK-NJ-6.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-NM-1 {
 background: transparent url('/images/ProductDescriptionImages/BK-NM-1.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-NM-2 {
 background: transparent url('/images/ProductDescriptionImages/BK-NM-2.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-NM-2p {
 background: transparent url('/images/ProductDescriptionImages/BK-NM-2p.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-NY-1 {
 background: transparent url('/images/ProductDescriptionImages/BK-NY-1.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-NY-2 {
 background: transparent url('/images/ProductDescriptionImages/BK-NY-2.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-NY-2p {
 background: transparent url('/images/ProductDescriptionImages/BK-NY-2p.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-NY-6 {
 background: transparent url('/images/ProductDescriptionImages/BK-NY-6.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-NC-1 {
 background: transparent url('/images/ProductDescriptionImages/BK-NC-1.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-NC-2 {
 background: transparent url('/images/ProductDescriptionImages/BK-NC-2.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-NC-2p {
 background: transparent url('/images/ProductDescriptionImages/BK-NC-2p.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-ND-1 {
 background: transparent url('/images/ProductDescriptionImages/BK-ND-1.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-ND-2 {
 background: transparent url('/images/ProductDescriptionImages/BK-ND-2.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-ND-2p {
 background: transparent url('/images/ProductDescriptionImages/BK-ND-2p.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-OH-1 {
 background: transparent url('/images/ProductDescriptionImages/BK-OH-1.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-OH-2 {
 background: transparent url('/images/ProductDescriptionImages/BK-OH-2.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-OH-2p {
 background: transparent url('/images/ProductDescriptionImages/BK-OH-2p.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-OK-1 {
 background: transparent url('/images/ProductDescriptionImages/BK-OK-1.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-OK-2 {
 background: transparent url('/images/ProductDescriptionImages/BK-OK-2.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-OK-2p {
 background: transparent url('/images/ProductDescriptionImages/BK-OK-2p.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-OR-1 {
 background: transparent url('/images/ProductDescriptionImages/BK-OR-1.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-OR-2 {
 background: transparent url('/images/ProductDescriptionImages/BK-OR-2.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-OR-2p {
 background: transparent url('/images/ProductDescriptionImages/BK-OR-2p.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-PA-1 {
 background: transparent url('/images/ProductDescriptionImages/BK-PA-1.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-PA-2 {
 background: transparent url('/images/ProductDescriptionImages/BK-PA-2.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-PA-2p {
 background: transparent url('/images/ProductDescriptionImages/BK-PA-2p.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-RI-1 {
 background: transparent url('/images/ProductDescriptionImages/BK-RI-1.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-RI-2 {
 background: transparent url('/images/ProductDescriptionImages/BK-RI-2.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-RI-2p {
 background: transparent url('/images/ProductDescriptionImages/BK-RI-2p.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-SC-1 {
 background: transparent url('/images/ProductDescriptionImages/BK-SC-1.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-SC-2 {
 background: transparent url('/images/ProductDescriptionImages/BK-SC-2.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-SC-2p {
 background: transparent url('/images/ProductDescriptionImages/BK-SC-2p.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-SD-1 {
 background: transparent url('/images/ProductDescriptionImages/BK-SD-1.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-SD-2 {
 background: transparent url('/images/ProductDescriptionImages/BK-SD-2.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-SD-2p {
 background: transparent url('/images/ProductDescriptionImages/BK-SD-2p.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-TN-1 {
 background: transparent url('/images/ProductDescriptionImages/BK-TN-1.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-TN-2 {
 background: transparent url('/images/ProductDescriptionImages/BK-TN-2.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-TN-2p {
 background: transparent url('/images/ProductDescriptionImages/BK-TN-2p.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-TX-1 {
 background: transparent url('/images/ProductDescriptionImages/BK-TX-1.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-TX-2 {
 background: transparent url('/images/ProductDescriptionImages/BK-TX-2.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-TX-2p {
 background: transparent url('/images/ProductDescriptionImages/BK-TX-2p.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-TX-6 {
 background: transparent url('/images/ProductDescriptionImages/BK-TX-6.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-UT-1 {
 background: transparent url('/images/ProductDescriptionImages/BK-UT-1.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-UT-2 {
 background: transparent url('/images/ProductDescriptionImages/BK-UT-2.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-UT-2p {
 background: transparent url('/images/ProductDescriptionImages/BK-UT-2p.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-VT-1 {
 background: transparent url('/images/ProductDescriptionImages/BK-VT-1.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-VT-2 {
 background: transparent url('/images/ProductDescriptionImages/BK-VT-2.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-VT-2p {
 background: transparent url('/images/ProductDescriptionImages/BK-VT-2p.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-VA-1 {
 background: transparent url('/images/ProductDescriptionImages/BK-VA-1.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-VA-2 {
 background: transparent url('/images/ProductDescriptionImages/BK-VA-2.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-VA-2p {
 background: transparent url('/images/ProductDescriptionImages/BK-VA-2p.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-WA-1 {
 background: transparent url('/images/ProductDescriptionImages/BK-WA-1.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-WA-2 {
 background: transparent url('/images/ProductDescriptionImages/BK-WA-2.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-WA-2p {
 background: transparent url('/images/ProductDescriptionImages/BK-WA-2p.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-WV-1 {
 background: transparent url('/images/ProductDescriptionImages/BK-WV-1.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-WV-2 {
 background: transparent url('/images/ProductDescriptionImages/BK-WV-2.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-WV-2p {
 background: transparent url('/images/ProductDescriptionImages/BK-WV-2p.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-WI-1 {
 background: transparent url('/images/ProductDescriptionImages/BK-WI-1.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-WI-2 {
 background: transparent url('/images/ProductDescriptionImages/BK-WI-2.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-WI-2p {
 background: transparent url('/images/ProductDescriptionImages/BK-WI-2p.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-WY-1 {
 background: transparent url('/images/ProductDescriptionImages/BK-WY-1.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-WY-2 {
 background: transparent url('/images/ProductDescriptionImages/BK-WY-2.png') no-repeat;
 height: 193px;
 width: 150px;
}

#BK-WY-2p {
 background: transparent url('/images/ProductDescriptionImages/BK-WY-2p.png') no-repeat;
 height: 193px;
 width: 150px;
}


/***********  End Notary Kits Products Descriptions - ALK - 10/8/2013 ***************/

/*********** Start Notary Stamp Product Description Images  - ALK - 7/16/14  *****************/

/**** START - On Every Notary Product for Every State ****/

.NotaryStampSpecs {
  position: relative;
  left: 20px;
}

#NTSAFF {
  background: transparent url('/images/ProductDescriptionImages/NTSAFF.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPIJS {
  background: transparent url('/images/ProductDescriptionImages/NTPIJS.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSIJS {
  background: transparent url('/images/ProductDescriptionImages/NTSIJS.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPIAS {
  background: transparent url('/images/ProductDescriptionImages/NTPIAS.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSIAS {
  background: transparent url('/images/ProductDescriptionImages/NTSIAS.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPIVS {
  background: transparent url('/images/ProductDescriptionImages/NTPIVS.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSIVS {
  background: transparent url('/images/ProductDescriptionImages/NTSIVS.png') no-repeat;
  height: 163px;
  width: 445px;
}

/**** END - On Every Notary Product for Every State ****/

/************** START - Alaska Notary Stamps ***************/

#NTPEXP-AK {
 background: transparent url('/images/ProductDescriptionImages/NTPEXP-AK.png') no-repeat;
 height: 163px;
 width: 445px;
}

#NTPAFF-AK {
  background: transparent url('/images/ProductDescriptionImages/NTPAFF-AK.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPSHE-AK {
  background: transparent url('/images/ProductDescriptionImages/NTPSHE-AK.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPRND-AK {
  background: transparent url('/images/ProductDescriptionImages/NTPRND-AK.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPSI-AK {
  background: transparent url('/images/ProductDescriptionImages/NTEXPSI-AK.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSRND-AK {
  background: transparent url('/images/ProductDescriptionImages/NTSRND-AK.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTCOMBO-AK {
  background: transparent url('/images/ProductDescriptionImages/NTCOMBO-AK.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPT-AK {
  background: transparent url('/images/ProductDescriptionImages/NTEXPT-AK.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTAFFT-AK {
   background: transparent url('/images/ProductDescriptionImages/NTAFFT-AK.png') no-repeat;
   height: 163px;
   width: 445px;
}

/************** END - Alaska Notary Stamps ***************/

/************** START - Alabama Notary Stamps ***************/

#NTPEXP-AL {
  background: transparent url('/images/ProductDescriptionImages/NTPEXP-AL.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPAFF-AL {
  background: transparent url('/images/ProductDescriptionImages/NTPAFF-AL.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPSHE-AL {
  background: transparent url('/images/ProductDescriptionImages/NTPSHE-AL.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPRND-AL {
  background: transparent url('/images/ProductDescriptionImages/NTPRND-AL.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPSI-AL {
  background: transparent url('/images/ProductDescriptionImages/NTEXPSI-AL.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSRND-AL {
  background: transparent url('/images/ProductDescriptionImages/NTSRND-AL.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTCOMBO-AL {
  background: transparent url('/images/ProductDescriptionImages/NTCOMBO-AL.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPT-AL {
  background: transparent url('/images/ProductDescriptionImages/NTEXPT-AL.png') no-repeat;
  height: 163px;
  width: 445px;
}

/************** END - ALabama Notary Stamps ***************/




/************** START - Arizona Notary Stamps ***************/

#NTPEXP-AZ {
  background: transparent url('/images/ProductDescriptionImages/NTPEXP-AZ.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPAFF-AZ {
  background: transparent url('/images/ProductDescriptionImages/NTPAFF-AZ.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPSHE-AZ {
  background: transparent url('/images/ProductDescriptionImages/NTPSHE-AZ.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPRND-AZ {
  background: transparent url('/images/ProductDescriptionImages/NTPRND-AZ.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPSI-AZ {
  background: transparent url('/images/ProductDescriptionImages/NTEXPSI-AZ.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSRND-AZ {
  background: transparent url('/images/ProductDescriptionImages/NTSRND-AZ.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPT-AZ {
  background: transparent url('/images/ProductDescriptionImages/NTEXPT-AZ.png') no-repeat;
  height: 163px;
  width: 445px;
}

/************** END - Arizona Notary Stamps ***************/




/************** START - Arkansas Notary Stamps ***************/

#NTPEXP-AR {
  background: transparent url('/images/ProductDescriptionImages/NTPEXP-AR.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPAFF-AR {
  background: transparent url('/images/ProductDescriptionImages/NTPAFF-AR.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPRND-AR {
  background: transparent url('/images/ProductDescriptionImages/NTPRND-AR.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPSI-AR {
  background: transparent url('/images/ProductDescriptionImages/NTEXPSI-AR.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSRND-AR {
  background: transparent url('/images/ProductDescriptionImages/NTSRND-AR.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTCOMBO-AR {
  background: transparent url('/images/ProductDescriptionImages/NTCOMBO-AR.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPT-AR {
  background: transparent url('/images/ProductDescriptionImages/NTEXPT-AR.png') no-repeat;
  height: 163px;
  width: 445px;
}


/************** END - Arkansas Notary Stamps ***************/



/************** START - Colorado Notary Stamps ***************/

#NTPEXP-CO {
  background: transparent url('/images/ProductDescriptionImages/NTPEXP-CO.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPAFF-CO {
  background: transparent url('/images/ProductDescriptionImages/NTPAFF-CO.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPSHE-CO {
  background: transparent url('/images/ProductDescriptionImages/NTPSHE-CO.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPRND-CO {
  background: transparent url('/images/ProductDescriptionImages/NTPRND-CO.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPSI-CO {
  background: transparent url('/images/ProductDescriptionImages/NTEXPSI-CO.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSRND-CO {
  background: transparent url('/images/ProductDescriptionImages/NTSRND-CO.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTCOMBO-CO {
  background: transparent url('/images/ProductDescriptionImages/NTCOMBO-CO.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPT-CO {
  background: transparent url('/images/ProductDescriptionImages/NTEXPT-CO.png') no-repeat;
  height: 163px;
  width: 445px;
}

/************** END - Colorado Notary Stamps ***************/



/************** START - Connecticut Notary Stamps ***************/

#NTPEXP-CT {
  background: transparent url('/images/ProductDescriptionImages/NTPEXP-CT.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPAFF-CT {
  background: transparent url('/images/ProductDescriptionImages/NTPAFF-CT.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPSHE-CT {
  background: transparent url('/images/ProductDescriptionImages/NTPSHE-CT.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPRND-CT {
  background: transparent url('/images/ProductDescriptionImages/NTPRND-CT.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPSI-CT {
  background: transparent url('/images/ProductDescriptionImages/NTEXPSI-CT.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSRND-CT {
  background: transparent url('/images/ProductDescriptionImages/NTSRND-CT.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTCOMBO-CT {
  background: transparent url('/images/ProductDescriptionImages/NTCOMBO-CT.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPT-CT {
  background: transparent url('/images/ProductDescriptionImages/NTEXPT-CT.png') no-repeat;
  height: 163px;
  width: 445px;
}

/************** END - Connecticut Notary Stamps ***************/


/************** START - Delaware Notary Stamps ***************/

#NTPEXP-DE {
  background: transparent url('/images/ProductDescriptionImages/NTPEXP-DE.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPAFF-DE {
  background: transparent url('/images/ProductDescriptionImages/NTPAFF-DE.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPSHE-DE {
  background: transparent url('/images/ProductDescriptionImages/NTPSHE-DE.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPRND-DE {
  background: transparent url('/images/ProductDescriptionImages/NTPRND-DE.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPSI-DE {
  background: transparent url('/images/ProductDescriptionImages/NTEXPSI-DE.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSRND-DE {
  background: transparent url('/images/ProductDescriptionImages/NTSRND-DE.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPT-DE {
  background: transparent url('/images/ProductDescriptionImages/NTEXPT-DE.png') no-repeat;
  height: 163px;
  width: 445px;
}

/************** END - Delaware Notary Stamps ***************/



/************** START - District of Columbia Notary Stamps ***************/

#NTPEXP-DC {
  background: transparent url('/images/ProductDescriptionImages/NTPEXP-DC.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPAFF-DC {
  background: transparent url('/images/ProductDescriptionImages/NTPAFF-DC.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPSHE-DC {
  background: transparent url('/images/ProductDescriptionImages/NTPSHE-DC.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPRND-DC {
  background: transparent url('/images/ProductDescriptionImages/NTPRND-DC.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPSI-DC {
  background: transparent url('/images/ProductDescriptionImages/NTEXPSI-DC.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSRND-DC {
  background: transparent url('/images/ProductDescriptionImages/NTSRND-DC.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTCOMBO-DC {
  background: transparent url('/images/ProductDescriptionImages/NTCOMBO-DC.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPT-DC {
  background: transparent url('/images/ProductDescriptionImages/NTEXPT-DC.png') no-repeat;
  height: 163px;
  width: 445px;
}


/************** END - District of Columbia Notary Stamps ***************/


/************** START - Florida Notary Stamps ***************/

#NTPEXP-FL {
  background: transparent url('/images/ProductDescriptionImages/NTPEXP-FL.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPAFF-FL {
  background: transparent url('/images/ProductDescriptionImages/NTPAFF-FL.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPRND-FL {
  background: transparent url('/images/ProductDescriptionImages/NTPRND-FL.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPSI-FL {
  background: transparent url('/images/ProductDescriptionImages/NTEXPSI-FL.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSRND-FL {
  background: transparent url('/images/ProductDescriptionImages/NTSRND-FL.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTCOMBO-FL {
  background: transparent url('/images/ProductDescriptionImages/NTCOMBO-FL.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPT-FL {
  background: transparent url('/images/ProductDescriptionImages/NTEXPT-FL.png') no-repeat;
  height: 163px;
  width: 445px;
}


/************** END - Florida Notary Stamps ***************/


/************** START - Georgia Notary Stamps ***************/

#NTPEXP-GA {
  background: transparent url('/images/ProductDescriptionImages/NTPEXP-GA.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPAFF-GA {
  background: transparent url('/images/ProductDescriptionImages/NTPAFF-GA.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPRND-GA {
  background: transparent url('/images/ProductDescriptionImages/NTPRND-GA.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPSI-GA {
  background: transparent url('/images/ProductDescriptionImages/NTEXPSI-GA.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSRND-GA {
  background: transparent url('/images/ProductDescriptionImages/NTSRND-GA.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTCOMBO-GA {
  background: transparent url('/images/ProductDescriptionImages/NTCOMBO-GA.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPT-GA {
  background: transparent url('/images/ProductDescriptionImages/NTEXPT-GA.png') no-repeat;
  height: 163px;
  width: 445px;
}


/************** END - Georgia Notary Stamps ***************/


/************** START - Hawaii Notary Stamps ***************/

#NTPEXP-HI {
  background: transparent url('/images/ProductDescriptionImages/NTPEXP-HI.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPAFF-HI {
  background: transparent url('/images/ProductDescriptionImages/NTPAFF-HI.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPRND-HI {
  background: transparent url('/images/ProductDescriptionImages/NTPRND-HI.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPSI-HI {
  background: transparent url('/images/ProductDescriptionImages/NTEXPSI-HI.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSRND-HI {
  background: transparent url('/images/ProductDescriptionImages/NTSRND-HI.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPT-HI {
  background: transparent url('/images/ProductDescriptionImages/NTEXPT-HI.png') no-repeat;
  height: 163px;
  width: 445px;
}


/************** END - Hawaii Notary Stamps ***************/


/************** START - Idaho Notary Stamps ***************/

#NTPEXP-ID {
  background: transparent url('/images/ProductDescriptionImages/NTPEXP-ID.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPAFF-ID {
  background: transparent url('/images/ProductDescriptionImages/NTPAFF-ID.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPRND-ID {
  background: transparent url('/images/ProductDescriptionImages/NTPRND-ID.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPSI-ID {
  background: transparent url('/images/ProductDescriptionImages/NTEXPSI-ID.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSRND-ID {
  background: transparent url('/images/ProductDescriptionImages/NTSRND-ID.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPT-ID {
  background: transparent url('/images/ProductDescriptionImages/NTEXPT-ID.png') no-repeat;
  height: 163px;
  width: 445px;
}


/************** END - Idaho Notary Stamps ***************/


/************** START - Illinois Notary Stamps ***************/

#NTPEXP-IL {
  background: transparent url('/images/ProductDescriptionImages/NTPEXP-IL.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPAFF-IL {
  background: transparent url('/images/ProductDescriptionImages/NTPAFF-IL.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPRND-IL {
  background: transparent url('/images/ProductDescriptionImages/NTPRND-IL.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPSI-IL {
  background: transparent url('/images/ProductDescriptionImages/NTEXPSI-IL.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSRND-IL {
  background: transparent url('/images/ProductDescriptionImages/NTSRND-IL.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPT-IL {
  background: transparent url('/images/ProductDescriptionImages/NTEXPT-IL.png') no-repeat;
  height: 163px;
  width: 445px;
}


/************** END - Illinois Notary Stamps ***************/


/************** START - Indiana Notary Stamps ***************/

#NTPEXP-IN {
  background: transparent url('/images/ProductDescriptionImages/NTPEXP-IN.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPAFF-IN {
  background: transparent url('/images/ProductDescriptionImages/NTPAFF-IN.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPSHE-IN {
  background: transparent url('/images/ProductDescriptionImages/NTPSHE-IN.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPRND-IN {
  background: transparent url('/images/ProductDescriptionImages/NTPRND-IN.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPSI-IN {
  background: transparent url('/images/ProductDescriptionImages/NTEXPSI-IN.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSRND-IN {
  background: transparent url('/images/ProductDescriptionImages/NTSRND-IN.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPT-IN {
  background: transparent url('/images/ProductDescriptionImages/NTEXPT-IN.png') no-repeat;
  height: 163px;
  width: 445px;
}


/************** END - Indiana Notary Stamps ***************/


/************** START - Iowa Notary Stamps ***************/

#NTPDES-IA {
  background: transparent url('/images/ProductDescriptionImages/NTPDES-IA.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPEXP-IA {
  background: transparent url('/images/ProductDescriptionImages/NTPEXP-IA.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPAFF-IA {
  background: transparent url('/images/ProductDescriptionImages/NTPAFF-IA.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPSHE-IA {
  background: transparent url('/images/ProductDescriptionImages/NTPSHE-IA.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPRND-IA {
  background: transparent url('/images/ProductDescriptionImages/NTPRND-IA.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPSI-IA {
  background: transparent url('/images/ProductDescriptionImages/NTEXPSI-IA.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSRND-IA {
  background: transparent url('/images/ProductDescriptionImages/NTSRND-IA.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTCOMBO-IA {
  background: transparent url('/images/ProductDescriptionImages/NTCOMBO-IA.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPT-IA {
  background: transparent url('/images/ProductDescriptionImages/NTEXPT-IA.png') no-repeat;
  height: 163px;
  width: 445px;
}


/************** END - Iowa Notary Stamps ***************/


/************** START - Kansas Notary Stamps ***************/

#NTPEXP-KS {
  background: transparent url('/images/ProductDescriptionImages/NTPEXP-KS.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPAFF-KS {
  background: transparent url('/images/ProductDescriptionImages/NTPAFF-KS.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPSHE-KS {
  background: transparent url('/images/ProductDescriptionImages/NTPSHE-KS.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPRND-KS {
  background: transparent url('/images/ProductDescriptionImages/NTPRND-KS.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPSI-KS {
  background: transparent url('/images/ProductDescriptionImages/NTEXPSI-KS.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSRND-KS {
  background: transparent url('/images/ProductDescriptionImages/NTSRND-KS.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTCOMBO-KS {
  background: transparent url('/images/ProductDescriptionImages/NTCOMBO-KS.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPT-KS {
  background: transparent url('/images/ProductDescriptionImages/NTEXPT-KS.png') no-repeat;
  height: 163px;
  width: 445px;
}


/************** END - Kansas Notary Stamps ***************/


/************** START - Kentucky Notary Stamps ***************/

#NTPEXP-KY {
  background: transparent url('/images/ProductDescriptionImages/NTPEXP-KY.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPAFF-KY {
  background: transparent url('/images/ProductDescriptionImages/NTPAFF-KY.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPSHE-KY {
  background: transparent url('/images/ProductDescriptionImages/NTPSHE-KY.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPRND-KY {
  background: transparent url('/images/ProductDescriptionImages/NTPRND-KY.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPSI-KY {
  background: transparent url('/images/ProductDescriptionImages/NTEXPSI-KY.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSRND-KY {
  background: transparent url('/images/ProductDescriptionImages/NTSRND-KY.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTCOMBO-KY {
  background: transparent url('/images/ProductDescriptionImages/NTCOMBO-KY.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPT-KY {
  background: transparent url('/images/ProductDescriptionImages/NTEXPT-KY.png') no-repeat;
  height: 163px;
  width: 445px;
}


/************** END - Kentucky Notary Stamps ***************/


/************** START - Louisiana Notary Stamps ***************/

#NTPEXP-LA {
  background: transparent url('/images/ProductDescriptionImages/NTPEXP-LA.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPAFF-LA {
  background: transparent url('/images/ProductDescriptionImages/NTPAFF-LA.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPSHE-LA {
  background: transparent url('/images/ProductDescriptionImages/NTPSHE-LA.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPRND-LA {
  background: transparent url('/images/ProductDescriptionImages/NTPRND-LA.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPSI-LA {
  background: transparent url('/images/ProductDescriptionImages/NTEXPSI-LA.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSRND-LA {
  background: transparent url('/images/ProductDescriptionImages/NTSRND-LA.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTCOMBO-LA {
  background: transparent url('/images/ProductDescriptionImages/NTCOMBO-LA.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPT-LA {
  background: transparent url('/images/ProductDescriptionImages/NTEXPT-LA.png') no-repeat;
  height: 163px;
  width: 445px;
}


/************** END - Louisiana Notary Stamps ***************/


/************** START - Miane Notary Stamps ***************/

#NTPEXP-ME {
  background: transparent url('/images/ProductDescriptionImages/NTPEXP-ME.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPAFF-ME {
  background: transparent url('/images/ProductDescriptionImages/NTPAFF-ME.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPSHE-ME {
  background: transparent url('/images/ProductDescriptionImages/NTPSHE-ME.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPRND-ME {
  background: transparent url('/images/ProductDescriptionImages/NTPRND-ME.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPSI-ME {
  background: transparent url('/images/ProductDescriptionImages/NTEXPSI-ME.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSRND-ME {
  background: transparent url('/images/ProductDescriptionImages/NTSRND-ME.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTCOMBO-ME {
  background: transparent url('/images/ProductDescriptionImages/NTCOMBO-ME.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPT-ME {
  background: transparent url('/images/ProductDescriptionImages/NTEXPT-ME.png') no-repeat;
  height: 163px;
  width: 445px;
}


/************** END - Maine Notary Stamps ***************/


/************** START - Maryland Notary Stamps ***************/

#NTPEXP-MD {
  background: transparent url('/images/ProductDescriptionImages/NTPEXP-MD.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPAFF-MD {
  background: transparent url('/images/ProductDescriptionImages/NTPAFF-MD.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPRND-MD {
  background: transparent url('/images/ProductDescriptionImages/NTPRND-MD.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPSI-MD {
  background: transparent url('/images/ProductDescriptionImages/NTEXPSI-MD.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSRND-MD {
  background: transparent url('/images/ProductDescriptionImages/NTSRND-MD.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPT-MD {
  background: transparent url('/images/ProductDescriptionImages/NTEXPT-MD.png') no-repeat;
  height: 163px;
  width: 445px;
}


/************** END - Maryland Notary Stamps ***************/


/************** START - Massachusetts Notary Stamps ***************/

#NTPEXP-MA {
  background: transparent url('/images/ProductDescriptionImages/NTPEXP-MA.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPAFF-MA {
  background: transparent url('/images/ProductDescriptionImages/NTPAFF-MA.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPSHE-MA {
  background: transparent url('/images/ProductDescriptionImages/NTPSHE-MA.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPSI-MA {
  background: transparent url('/images/ProductDescriptionImages/NTEXPSI-MA.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSRND-MA {
  background: transparent url('/images/ProductDescriptionImages/NTSRND-MA.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPT-MA {
  background: transparent url('/images/ProductDescriptionImages/NTEXPT-MA.png') no-repeat;
  height: 163px;
  width: 445px;
}


/************** END - Massachusetts Notary Stamps ***************/


/************** START - Michigan Notary Stamps ***************/

#NTPEXP-MI {
  background: transparent url('/images/ProductDescriptionImages/NTPEXP-MI.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPAFF-MI {
  background: transparent url('/images/ProductDescriptionImages/NTPAFF-MI.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPSHE-MI {
  background: transparent url('/images/ProductDescriptionImages/NTPSHE-MI.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPRND-MI {
  background: transparent url('/images/ProductDescriptionImages/NTPRND-MI.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPSI-MI {
  background: transparent url('/images/ProductDescriptionImages/NTEXPSI-MI.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSRND-MI {
  background: transparent url('/images/ProductDescriptionImages/NTSRND-MI.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTCOMBO-MI {
  background: transparent url('/images/ProductDescriptionImages/NTCOMBO-MI.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPT-MI {
  background: transparent url('/images/ProductDescriptionImages/NTEXPT-MI.png') no-repeat;
  height: 163px;
  width: 445px;
}


/************** END - Michigan Notary Stamps ***************/


/************** START - Minnesota Notary Stamps ***************/

#NTPEXP-MN {
  background: transparent url('/images/ProductDescriptionImages/NTPEXP-MN.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPAFF-MN {
  background: transparent url('/images/ProductDescriptionImages/NTPAFF-MN.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPRND-MN {
  background: transparent url('/images/ProductDescriptionImages/NTPRND-MN.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPSI-MN {
  background: transparent url('/images/ProductDescriptionImages/NTEXPSI-MN.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSRND-MN {
  background: transparent url('/images/ProductDescriptionImages/NTSRND-MN.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPT-MN {
  background: transparent url('/images/ProductDescriptionImages/NTEXPT-MN.png') no-repeat;
  height: 163px;
  width: 445px;
}


/************** END - Minnesota Notary Stamps ***************/


/************** START - Mississippi Notary Stamps ***************/

#NTPEXP-MS {
  background: transparent url('/images/ProductDescriptionImages/NTPEXP-MS.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPSHE-MS {
  background: transparent url('/images/ProductDescriptionImages/NTPSHE-MS.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPRND-MS {
  background: transparent url('/images/ProductDescriptionImages/NTPRND-MS.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPSI-MS {
  background: transparent url('/images/ProductDescriptionImages/NTEXPSI-MS.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSRND-MS {
  background: transparent url('/images/ProductDescriptionImages/NTSRND-MS.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTCOMBO-MS {
  background: transparent url('/images/ProductDescriptionImages/NTCOMBO-MS.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPT-MS {
  background: transparent url('/images/ProductDescriptionImages/NTEXPT-MS.png') no-repeat;
  height: 163px;
  width: 445px;
}


/************** END - Mississippi Notary Stamps ***************/


/************** START - Missouri Notary Stamps ***************/

#NTPEXP-MO {
  background: transparent url('/images/ProductDescriptionImages/NTPEXP-MO.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPAFF-MO {
  background: transparent url('/images/ProductDescriptionImages/NTPAFF-MO.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPSHE-MO {
  background: transparent url('/images/ProductDescriptionImages/NTPSHE-MO.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPRND-MO {
  background: transparent url('/images/ProductDescriptionImages/NTPRND-MO.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPSI-MO {
  background: transparent url('/images/ProductDescriptionImages/NTEXPSI-MO.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSRND-MO {
  background: transparent url('/images/ProductDescriptionImages/NTSRND-MO.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPT-MO {
  background: transparent url('/images/ProductDescriptionImages/NTEXPT-MO.png') no-repeat;
  height: 163px;
  width: 445px;
}


/************** END - Missouri Notary Stamps ***************/


/************** START - Montana Notary Stamps ***************/

#NTPEXP-MT {
  background: transparent url('/images/ProductDescriptionImages/NTPEXP-MT.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPSHE-MT {
  background: transparent url('/images/ProductDescriptionImages/NTPSHE-MT.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPRND-MT {
  background: transparent url('/images/ProductDescriptionImages/NTPRND-MT.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPSI-MT {
  background: transparent url('/images/ProductDescriptionImages/NTEXPSI-MT.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSRND-MT {
  background: transparent url('/images/ProductDescriptionImages/NTSRND-MT.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTCOMBO-MT {
  background: transparent url('/images/ProductDescriptionImages/NTCOMBO-MT.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPT-MT {
  background: transparent url('/images/ProductDescriptionImages/NTEXPT-MT.png') no-repeat;
  height: 163px;
  width: 445px;
}


/************** END - Montana Notary Stamps ***************/


/************** START - Nebraska Notary Stamps ***************/

#NTPEXP-NE {
  background: transparent url('/images/ProductDescriptionImages/NTPEXP-NE.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPAFF-NE {
  background: transparent url('/images/ProductDescriptionImages/NTPAFF-NE.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPSHE-NE {
  background: transparent url('/images/ProductDescriptionImages/NTPSHE-NE.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPRND-NE {
  background: transparent url('/images/ProductDescriptionImages/NTPRND-NE.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPSI-NE {
  background: transparent url('/images/ProductDescriptionImages/NTEXPSI-NE.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSRND-NE {
  background: transparent url('/images/ProductDescriptionImages/NTSRND-NE.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTCOMBO-NE {
  background: transparent url('/images/ProductDescriptionImages/NTCOMBO-NE.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPT-NE {
  background: transparent url('/images/ProductDescriptionImages/NTEXPT-NE.png') no-repeat;
  height: 163px;
  width: 445px;
}


/************** END - Nebraska Notary Stamps ***************/


/************** START - Nevada Notary Stamps ***************/

#NTPEXP-NV {
  background: transparent url('/images/ProductDescriptionImages/NTPEXP-NV.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPAFF-NV {
  background: transparent url('/images/ProductDescriptionImages/NTPAFF-NV.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPSHE-NV {
  background: transparent url('/images/ProductDescriptionImages/NTPSHE-NV.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPRND-NV {
  background: transparent url('/images/ProductDescriptionImages/NTPRND-NV.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPSI-NV {
  background: transparent url('/images/ProductDescriptionImages/NTEXPSI-NV.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSRND-NV {
  background: transparent url('/images/ProductDescriptionImages/NTSRND-NV.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPT-NV {
  background: transparent url('/images/ProductDescriptionImages/NTEXPT-NV.png') no-repeat;
  height: 163px;
  width: 445px;
}


/************** END - Nevada Notary Stamps ***************/


/************** START - New Hampshire Notary Stamps ***************/

#NTPEXP-NH {
  background: transparent url('/images/ProductDescriptionImages/NTPEXP-NH.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPAFF-NH {
  background: transparent url('/images/ProductDescriptionImages/NTPAFF-NH.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPSHE-NH {
  background: transparent url('/images/ProductDescriptionImages/NTPSHE-NH.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPRND-NH {
  background: transparent url('/images/ProductDescriptionImages/NTPRND-NH.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPSI-NH {
  background: transparent url('/images/ProductDescriptionImages/NTEXPSI-NH.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSRND-NH {
  background: transparent url('/images/ProductDescriptionImages/NTSRND-NH.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTCOMBO-NH {
  background: transparent url('/images/ProductDescriptionImages/NTCOMBO-NH.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPT-NH {
  background: transparent url('/images/ProductDescriptionImages/NTEXPT-NH.png') no-repeat;
  height: 163px;
  width: 445px;
}


/************** END - New Hampshire Notary Stamps ***************/



/************** START - New Jersey Notary Stamps ***************/

#NTPEXP-NJ {
  background: transparent url('/images/ProductDescriptionImages/NTPEXP-NJ.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPAFF-NJ {
  background: transparent url('/images/ProductDescriptionImages/NTPAFF-NJ.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPSHE-NJ {
  background: transparent url('/images/ProductDescriptionImages/NTPSHE-NJ.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPRND-NJ {
  background: transparent url('/images/ProductDescriptionImages/NTPRND-NJ.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPSI-NJ {
  background: transparent url('/images/ProductDescriptionImages/NTEXPSI-NJ.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSRND-NJ {
  background: transparent url('/images/ProductDescriptionImages/NTSRND-NJ.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTCOMBO-NJ {
  background: transparent url('/images/ProductDescriptionImages/NTCOMBO-NJ.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPT-NJ {
  background: transparent url('/images/ProductDescriptionImages/NTEXPT-NJ.png') no-repeat;
  height: 163px;
  width: 445px;
}


/************** END - New Jersey Notary Stamps ***************/

/************** START - New Mexico Notary Stamps ***************/

#NTPEXP-NM {
  background: transparent url('/images/ProductDescriptionImages/NTPEXP-NM.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPAFF-NM {
  background: transparent url('/images/ProductDescriptionImages/NTPAFF-NM.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPSHE-NM {
  background: transparent url('/images/ProductDescriptionImages/NTPSHE-NM.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPRND-NM {
  background: transparent url('/images/ProductDescriptionImages/NTPRND-NM.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPSI-NM {
  background: transparent url('/images/ProductDescriptionImages/NTEXPSI-NM.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSRND-NM {
  background: transparent url('/images/ProductDescriptionImages/NTSRND-NM.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTCOMBO-NM {
  background: transparent url('/images/ProductDescriptionImages/NTCOMBO-NM.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPT-NM {
  background: transparent url('/images/ProductDescriptionImages/NTEXPT-NM.png') no-repeat;
  height: 163px;
  width: 445px;
}


/************** END - New Mexico Notary Stamps ***************/

/************** START - New York Notary Stamps ***************/

#NTPEXP-NY {
  background: transparent url('/images/ProductDescriptionImages/NTPEXP-NY.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPAFF-NY {
  background: transparent url('/images/ProductDescriptionImages/NTPAFF-NY.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPSHE-NY {
  background: transparent url('/images/ProductDescriptionImages/NTPSHE-NY.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPRND-NY {
  background: transparent url('/images/ProductDescriptionImages/NTPRND-NY.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPSI-NY {
  background: transparent url('/images/ProductDescriptionImages/NTEXPSI-NY.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSRND-NY {
  background: transparent url('/images/ProductDescriptionImages/NTSRND-NY.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTCOMBO-NY {
  background: transparent url('/images/ProductDescriptionImages/NTCOMBO-NY.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPT-NY {
  background: transparent url('/images/ProductDescriptionImages/NTEXPT-NY.png') no-repeat;
  height: 163px;
  width: 445px;
}


/************** END - New York Notary Stamps ***************/

/************** START - North Carolina Notary Stamps ***************/

#NTPEXP-NC {
  background: transparent url('/images/ProductDescriptionImages/NTPEXP-NC.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPAFF-NC {
  background: transparent url('/images/ProductDescriptionImages/NTPAFF-NC.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPRND-NC {
  background: transparent url('/images/ProductDescriptionImages/NTPRND-NC.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPSI-NC {
  background: transparent url('/images/ProductDescriptionImages/NTEXPSI-NC.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSRND-NC {
  background: transparent url('/images/ProductDescriptionImages/NTSRND-NC.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPT-NC {
  background: transparent url('/images/ProductDescriptionImages/NTEXPT-NC.png') no-repeat;
  height: 163px;
  width: 445px;
}


/************** END - North Carolina Notary Stamps ***************/

/************** START - North Dakota Notary Stamps ***************/

#NTPEXP-ND {
  background: transparent url('/images/ProductDescriptionImages/NTPEXP-ND.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPAFF-ND {
  background: transparent url('/images/ProductDescriptionImages/NTPAFF-ND.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPRND-ND {
  background: transparent url('/images/ProductDescriptionImages/NTPRND-ND.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPSI-ND {
  background: transparent url('/images/ProductDescriptionImages/NTEXPSI-ND.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSRND-ND {
  background: transparent url('/images/ProductDescriptionImages/NTSRND-ND.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPT-ND {
  background: transparent url('/images/ProductDescriptionImages/NTEXPT-ND.png') no-repeat;
  height: 163px;
  width: 445px;
}

/************** END - North Dakota Notary Stamps ***************/


/************** START - Ohio Notary Stamps ***************/

#NTPEXP-OH {
  background: transparent url('/images/ProductDescriptionImages/NTPEXP-OH.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPAFF-OH {
  background: transparent url('/images/ProductDescriptionImages/NTPAFF-OH.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPRND-OH {
  background: transparent url('/images/ProductDescriptionImages/NTPRND-OH.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPSI-OH {
  background: transparent url('/images/ProductDescriptionImages/NTEXPSI-OH.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSRND-OH {
  background: transparent url('/images/ProductDescriptionImages/NTSRND-OH.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPT-OH {
  background: transparent url('/images/ProductDescriptionImages/NTEXPT-OH.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPCOEXP-OH {
  background: transparent url('/images/ProductDescriptionImages/NTPCOEXP-OH.png') no-repeat;
  height: 163px;
  width: 445px;
}


/************** END - Ohio Notary Stamps ***************/


/************** START - Oklahoma Notary Stamps ***************/

#NTPEXP-OK {
  background: transparent url('/images/ProductDescriptionImages/NTPEXP-OK.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPAFF-OK {
  background: transparent url('/images/ProductDescriptionImages/NTPAFF-OK.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPSHE-OK {
  background: transparent url('/images/ProductDescriptionImages/NTPSHE-OK.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPRND-OK {
  background: transparent url('/images/ProductDescriptionImages/NTPRND-OK.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPSI-OK {
  background: transparent url('/images/ProductDescriptionImages/NTEXPSI-OK.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSRND-OK {
  background: transparent url('/images/ProductDescriptionImages/NTSRND-OK.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTCOMBO-OK {
  background: transparent url('/images/ProductDescriptionImages/NTCOMBO-OK.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPT-OK {
  background: transparent url('/images/ProductDescriptionImages/NTEXPT-OK.png') no-repeat;
  height: 163px;
  width: 445px;
}


/************** END - Oklahoma Notary Stamps ***************/


/************** START - Oregon Notary Stamps ***************/

#NTPEXP-OR {
  background: transparent url('/images/ProductDescriptionImages/NTPEXP-OR.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPAFF-OR {
  background: transparent url('/images/ProductDescriptionImages/NTPAFF-OR.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPSHE-OR {
  background: transparent url('/images/ProductDescriptionImages/NTPSHE-OR.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPRND-OR {
  background: transparent url('/images/ProductDescriptionImages/NTPRND-OR.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPSI-OR {
  background: transparent url('/images/ProductDescriptionImages/NTEXPSI-OR.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSRND-OR {
  background: transparent url('/images/ProductDescriptionImages/NTSRND-OR.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPT-OR {
  background: transparent url('/images/ProductDescriptionImages/NTEXPT-OR.png') no-repeat;
  height: 163px;
  width: 445px;
}


/************** END - Oregon Notary Stamps ***************/

/************** START - Pennsylvania Notary Stamps ***************/

#NTPEXP-PA {
  background: transparent url('/images/ProductDescriptionImages/NTPEXP-PA.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPAFF-PA {
  background: transparent url('/images/ProductDescriptionImages/NTPAFF-PA.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPSHE-PA {
  background: transparent url('/images/ProductDescriptionImages/NTPSHE-PA.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPRND-PA {
  background: transparent url('/images/ProductDescriptionImages/NTPRND-PA.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPSI-PA {
  background: transparent url('/images/ProductDescriptionImages/NTEXPSI-PA.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSRND-PA {
  background: transparent url('/images/ProductDescriptionImages/NTSRND-PA.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPT-PA {
  background: transparent url('/images/ProductDescriptionImages/NTEXPT-PA.png') no-repeat;
  height: 163px;
  width: 445px;
}


/************** END - Pennsylvania Notary Stamps ***************/

/************** START - Rhode Island Notary Stamps ***************/

#NTPEXP-RI {
  background: transparent url('/images/ProductDescriptionImages/NTPEXP-RI.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPAFF-RI {
  background: transparent url('/images/ProductDescriptionImages/NTPAFF-RI.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPRND-RI {
  background: transparent url('/images/ProductDescriptionImages/NTPRND-RI.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPSI-RI {
  background: transparent url('/images/ProductDescriptionImages/NTEXPSI-RI.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSRND-RI {
  background: transparent url('/images/ProductDescriptionImages/NTSRND-RI.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTCOMBO-RI {
  background: transparent url('/images/ProductDescriptionImages/NTCOMBO-RI.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPT-RI {
  background: transparent url('/images/ProductDescriptionImages/NTEXPT-RI.png') no-repeat;
  height: 163px;
  width: 445px;
}


/************** END - Rhode Island Notary Stamps ***************/

/************** START - South Carolina Notary Stamps ***************/

#NTPEXP-SC {
  background: transparent url('/images/ProductDescriptionImages/NTPEXP-SC.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPAFF-SC {
  background: transparent url('/images/ProductDescriptionImages/NTPAFF-SC.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPSHE-SC {
  background: transparent url('/images/ProductDescriptionImages/NTPSHE-SC.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPRND-SC {
  background: transparent url('/images/ProductDescriptionImages/NTPRND-SC.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPSI-SC {
  background: transparent url('/images/ProductDescriptionImages/NTEXPSI-SC.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSRND-SC {
  background: transparent url('/images/ProductDescriptionImages/NTSRND-SC.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTCOMBO-SC {
  background: transparent url('/images/ProductDescriptionImages/NTCOMBO-SC.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPT-SC {
  background: transparent url('/images/ProductDescriptionImages/NTEXPT-SC.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPRND-B-SC {
  background: transparent url('/images/ProductDescriptionImages/NTPRND-B-SC.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSRND-B-SC {
  background: transparent url('/images/ProductDescriptionImages/NTSRND-B-SC.png') no-repeat;
  height: 163px;
  width: 445px;
}

#SCRND-EMBLEM-S {
  background: transparent url('/images/ProductDescriptionImages/SCRND-EMBLEM-S.png') no-repeat;
  height: 143px;
  width: 415px;
}

#SCRND-EMBLEM-XL-535 {
  background: transparent url('/images/ProductDescriptionImages/SCRND-EMBLEM-XL-535.png') no-repeat;
  height: 143px;
  width: 415px;
}

/************** END - South Carolina Notary Stamps ***************/

/************** START - South Dakota Notary Stamps ***************/

#NTPEXP-SD {
  background: transparent url('/images/ProductDescriptionImages/NTPEXP-SD.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPAFF-SD {
  background: transparent url('/images/ProductDescriptionImages/NTPAFF-SD.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPSHE-SD {
  background: transparent url('/images/ProductDescriptionImages/NTPSHE-SD.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPRND-SD {
  background: transparent url('/images/ProductDescriptionImages/NTPRND-SD.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPSI-SD {
  background: transparent url('/images/ProductDescriptionImages/NTEXPSI-SD.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSRND-SD {
  background: transparent url('/images/ProductDescriptionImages/NTSRND-SD.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPT-SD {
  background: transparent url('/images/ProductDescriptionImages/NTEXPT-SD.png') no-repeat;
  height: 163px;
  width: 445px;
}


/************** END - South Dakota Notary Stamps ***************/


/************** START - Tennessee Notary Stamps ***************/

#NTPEXP-TN {
  background: transparent url('/images/ProductDescriptionImages/NTPEXP-TN.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPAFF-TN {
  background: transparent url('/images/ProductDescriptionImages/NTPAFF-TN.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPSHE-TN {
  background: transparent url('/images/ProductDescriptionImages/NTPSHE-TN.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPRND-TN {
  background: transparent url('/images/ProductDescriptionImages/NTPRND-TN.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPSI-TN {
  background: transparent url('/images/ProductDescriptionImages/NTEXPSI-TN.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSRND-TN {
  background: transparent url('/images/ProductDescriptionImages/NTSRND-TN.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPT-TN {
  background: transparent url('/images/ProductDescriptionImages/NTEXPT-TN.png') no-repeat;
  height: 163px;
  width: 445px;
}


/************** END - Tennessee Notary Stamps ***************/


/************** START - Texas Notary Stamps ***************/

#NTPEXP-TX {
  background: transparent url('/images/ProductDescriptionImages/NTPEXP-TX.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPAFF-TX {
  background: transparent url('/images/ProductDescriptionImages/NTPAFF-TX.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPRND-TX {
  background: transparent url('/images/ProductDescriptionImages/NTPRND-TX.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPSI-TX {
  background: transparent url('/images/ProductDescriptionImages/NTEXPSI-TX.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSRND-TX {
  background: transparent url('/images/ProductDescriptionImages/NTSRND-TX.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPT-TX {
  background: transparent url('/images/ProductDescriptionImages/NTEXPT-TX.png') no-repeat;
  height: 163px;
  width: 445px;
}


/************** END - Texas Notary Stamps ***************/

/************** START - Utah Notary Stamps ***************/

#NTPEXP-UT {
  background: transparent url('/images/ProductDescriptionImages/NTPEXP-UT.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPAFF-UT {
  background: transparent url('/images/ProductDescriptionImages/NTPAFF-UT.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPSHE-UT {
  background: transparent url('/images/ProductDescriptionImages/NTPSHE-UT.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPSI-UT {
  background: transparent url('/images/ProductDescriptionImages/NTEXPSI-UT.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSRND-UT {
  background: transparent url('/images/ProductDescriptionImages/NTSRND-UT.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPT-UT {
  background: transparent url('/images/ProductDescriptionImages/NTEXPT-UT.png') no-repeat;
  height: 163px;
  width: 445px;
}


/************** END - Utah Notary Stamps ***************/

/************** START - Vermont Notary Stamps ***************/

#NTPEXP-VT {
  background: transparent url('/images/ProductDescriptionImages/NTPEXP-VT.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPAFF-VT {
  background: transparent url('/images/ProductDescriptionImages/NTPAFF-VT.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPSHE-VT {
  background: transparent url('/images/ProductDescriptionImages/NTPSHE-VT.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPRND-VT {
  background: transparent url('/images/ProductDescriptionImages/NTPRND-VT.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPSI-VT {
  background: transparent url('/images/ProductDescriptionImages/NTEXPSI-VT.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSRND-VT {
  background: transparent url('/images/ProductDescriptionImages/NTSRND-VT.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTCOMBO-VT {
  background: transparent url('/images/ProductDescriptionImages/NTCOMBO-VT.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPT-VT {
  background: transparent url('/images/ProductDescriptionImages/NTEXPT-VT.png') no-repeat;
  height: 163px;
  width: 445px;
}


/************** END - Vermont Notary Stamps ***************/

/************** START - Virginia Notary Stamps ***************/

#NTPEXP-VA {
  background: transparent url('/images/ProductDescriptionImages/NTPEXP-VA.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPAFF-VA {
  background: transparent url('/images/ProductDescriptionImages/NTPAFF-VA.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPSHE-VA {
  background: transparent url('/images/ProductDescriptionImages/NTPSHE-VA.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPRND-VA {
  background: transparent url('/images/ProductDescriptionImages/NTPRND-VA.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPSI-VA {
  background: transparent url('/images/ProductDescriptionImages/NTEXPSI-VA.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSRND-VA {
  background: transparent url('/images/ProductDescriptionImages/NTSRND-VA.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTCOMBO-VA {
  background: transparent url('/images/ProductDescriptionImages/NTCOMBO-VA.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPT-VA {
  background: transparent url('/images/ProductDescriptionImages/NTEXPT-VA.png') no-repeat;
  height: 163px;
  width: 445px;
}


/************** END - Virginia Notary Stamps ***************/

/************** START - Washington Notary Stamps ***************/

#NTPEXP-WA {
  background: transparent url('/images/ProductDescriptionImages/NTPEXP-WA.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPAFF-WA {
  background: transparent url('/images/ProductDescriptionImages/NTPAFF-WA.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPSHE-WA {
  background: transparent url('/images/ProductDescriptionImages/NTPSHE-WA.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPRND-WA {
  background: transparent url('/images/ProductDescriptionImages/NTPRND-WA.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPSI-WA {
  background: transparent url('/images/ProductDescriptionImages/NTEXPSI-WA.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSRND-WA {
  background: transparent url('/images/ProductDescriptionImages/NTSRND-WA.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTCOMBO-WA {
  background: transparent url('/images/ProductDescriptionImages/NTCOMBO-WA.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPT-WA {
  background: transparent url('/images/ProductDescriptionImages/NTEXPT-WA.png') no-repeat;
  height: 163px;
  width: 445px;
}


/************** END - Washington Notary Stamps ***************/


/************** START - West Virginia Notary Stamps ***************/

#NTPEXP-WV {
  background: transparent url('/images/ProductDescriptionImages/NTPEXP-WV.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPAFF-WV {
  background: transparent url('/images/ProductDescriptionImages/NTPAFF-WV.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPRND-WV {
  background: transparent url('/images/ProductDescriptionImages/NTPRND-WV.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPSI-WV {
  background: transparent url('/images/ProductDescriptionImages/NTEXPSI-WV.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSRND-WV {
  background: transparent url('/images/ProductDescriptionImages/NTSRND-WV.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPT-WV {
  background: transparent url('/images/ProductDescriptionImages/NTEXPT-WV.png') no-repeat;
  height: 163px;
  width: 445px;
}


/************** END - West Virginia Notary Stamps ***************/


/************** START - Wisconsin Notary Stamps ***************/

#NTPEXP-WI {
  background: transparent url('/images/ProductDescriptionImages/NTPEXP-WI.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPAFF-WI {
  background: transparent url('/images/ProductDescriptionImages/NTPAFF-WI.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPSHE-WI {
  background: transparent url('/images/ProductDescriptionImages/NTPSHE-WI.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPRND-WI {
  background: transparent url('/images/ProductDescriptionImages/NTPRND-WI.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPSI-WI {
  background: transparent url('/images/ProductDescriptionImages/NTEXPSI-WI.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSRND-WI {
  background: transparent url('/images/ProductDescriptionImages/NTSRND-WI.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPT-WI {
  background: transparent url('/images/ProductDescriptionImages/NTEXPT-WI.png') no-repeat;
  height: 163px;
  width: 445px;
}


/************** END - Wisconsin Notary Stamps ***************/

/************** START - Wyoming Notary Stamps ***************/

#NTPEXP-WY {
  background: transparent url('/images/ProductDescriptionImages/NTPEXP-WY.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPAFF-WY {
  background: transparent url('/images/ProductDescriptionImages/NTPAFF-WY.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTPRND-WY {
  background: transparent url('/images/ProductDescriptionImages/NTPRND-WY.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPSI-WY {
  background: transparent url('/images/ProductDescriptionImages/NTEXPSI-WY.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTSRND-WY {
  background: transparent url('/images/ProductDescriptionImages/NTSRND-WY.png') no-repeat;
  height: 163px;
  width: 445px;
}

#NTEXPT-WY {
  background: transparent url('/images/ProductDescriptionImages/NTEXPT-WY.png') no-repeat;
  height: 163px;
  width: 445px;
}


/************** END - Wyoming Notary Stamps ***************/


/*********** End Notary Stamp Product Description Images  - ALK - 7/16/14  *****************/






/*********** Start Notary Business Cards Product Description Images  - ALK - 9/10/2013  *****************/

#AL-CARDS {
  background: transparent url('/images/ProductDescriptionImages/AL-CARDS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#AK-CARDS {
  background: transparent url('/images/ProductDescriptionImages/AK-CARDS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#AZ-CARDS {
  background: transparent url('/images/ProductDescriptionImages/AZ-CARDS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#AR-CARDS {
  background: transparent url('/images/ProductDescriptionImages/AR-CARDS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#CO-CARDS {
  background: transparent url('/images/ProductDescriptionImages/CO-CARDS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#CT-CARDS {
  background: transparent url('/images/ProductDescriptionImages/CT-CARDS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#DE-CARDS {
  background: transparent url('/images/ProductDescriptionImages/DE-CARDS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#DC-CARDS {
  background: transparent url('/images/ProductDescriptionImages/DC-CARDS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#FL-CARDS {
  background: transparent url('/images/ProductDescriptionImages/FL-CARDS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#GA-CARDS {
  background: transparent url('/images/ProductDescriptionImages/GA-CARDS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#HI-CARDS {
  background: transparent url('/images/ProductDescriptionImages/HI-CARDS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#ID-CARDS {
  background: transparent url('/images/ProductDescriptionImages/ID-CARDS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#IL-CARDS {
  background: transparent url('/images/ProductDescriptionImages/IL-CARDS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}#IN-CARDS {
  background: transparent url('/images/ProductDescriptionImages/IN-CARDS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}#IA-CARDS {
  background: transparent url('/images/ProductDescriptionImages/IA-CARDS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#KS-CARDS {
  background: transparent url('/images/ProductDescriptionImages/KS-CARDS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#KY-CARDS {
  background: transparent url('/images/ProductDescriptionImages/KY-CARDS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#LA-CARDS {
  background: transparent url('/images/ProductDescriptionImages/LA-CARDS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#ME-CARDS {
  background: transparent url('/images/ProductDescriptionImages/ME-CARDS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#MD-CARDS {
  background: transparent url('/images/ProductDescriptionImages/MD-CARDS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#MA-CARDS {
  background: transparent url('/images/ProductDescriptionImages/MA-CARDS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#MI-CARDS {
  background: transparent url('/images/ProductDescriptionImages/MI-CARDS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#MN-CARDS {
  background: transparent url('/images/ProductDescriptionImages/MN-CARDS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#MS-CARDS {
  background: transparent url('/images/ProductDescriptionImages/MS-CARDS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#MO-CARDS {
  background: transparent url('/images/ProductDescriptionImages/MO-CARDS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#MT-CARDS {
  background: transparent url('/images/ProductDescriptionImages/MT-CARDS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#NE-CARDS {
  background: transparent url('/images/ProductDescriptionImages/NE-CARDS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#NV-CARDS {
  background: transparent url('/images/ProductDescriptionImages/NV-CARDS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#NH-CARDS {
  background: transparent url('/images/ProductDescriptionImages/NH-CARDS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#NJ-CARDS {
  background: transparent url('/images/ProductDescriptionImages/NJ-CARDS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#NM-CARDS {
  background: transparent url('/images/ProductDescriptionImages/NM-CARDS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#NY-CARDS {
  background: transparent url('/images/ProductDescriptionImages/NY-CARDS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#NC-CARDS {
  background: transparent url('/images/ProductDescriptionImages/NC-CARDS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#ND-CARDS {
  background: transparent url('/images/ProductDescriptionImages/ND-CARDS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#OH-CARDS {
  background: transparent url('/images/ProductDescriptionImages/OH-CARDS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#OK-CARDS {
  background: transparent url('/images/ProductDescriptionImages/OK-CARDS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#OR-CARDS {
  background: transparent url('/images/ProductDescriptionImages/OR-CARDS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#PA-CARDS {
  background: transparent url('/images/ProductDescriptionImages/PA-CARDS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#RI-CARDS {
  background: transparent url('/images/ProductDescriptionImages/RI-CARDS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#SC-CARDS {
  background: transparent url('/images/ProductDescriptionImages/SC-CARDS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#SD-CARDS {
  background: transparent url('/images/ProductDescriptionImages/SD-CARDS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#TN-CARDS {
  background: transparent url('/images/ProductDescriptionImages/TN-CARDS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#TX-CARDS {
  background: transparent url('/images/ProductDescriptionImages/TX-CARDS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#UT-CARDS {
  background: transparent url('/images/ProductDescriptionImages/UT-CARDS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#VT-CARDS {
  background: transparent url('/images/ProductDescriptionImages/VT-CARDS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#VA-CARDS {
  background: transparent url('/images/ProductDescriptionImages/VA-CARDS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#WA-CARDS {
  background: transparent url('/images/ProductDescriptionImages/WA-CARDS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#WV-CARDS {
  background: transparent url('/images/ProductDescriptionImages/WV-CARDS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#WI-CARDS {
  background: transparent url('/images/ProductDescriptionImages/WI-CARDS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#WY-CARDS {
  background: transparent url('/images/ProductDescriptionImages/WY-CARDS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
/********************** END - Notary Business Cards *********************************************/

/**************************START - Notary Seals **************************/

#NTPKT-AK {
  background: transparent url('/images/ProductDescriptionImages/NTPKT-AK.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTDSK-AK {
  background: transparent url('/images/ProductDescriptionImages/NTDSK-AK.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTPKT-AL {
  background: transparent url('/images/ProductDescriptionImages/NTPKT-AL.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTDSK-AL {
  background: transparent url('/images/ProductDescriptionImages/NTDSK-AL.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTPKT-AZ {
  background: transparent url('/images/ProductDescriptionImages/NTPKT-AZ.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTDSK-AZ {
  background: transparent url('/images/ProductDescriptionImages/NTDSK-AZ.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTPKT-AR {
  background: transparent url('/images/ProductDescriptionImages/NTPKT-AR.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTDSK-AR {
  background: transparent url('/images/ProductDescriptionImages/NTDSK-AR.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTPKT-CO {
  background: transparent url('/images/ProductDescriptionImages/NTPKT-CO.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTDSK-CO {
  background: transparent url('/images/ProductDescriptionImages/NTDSK-CO.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTPKT-CT {
  background: transparent url('/images/ProductDescriptionImages/NTPKT-CT.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTDSK-CT {
  background: transparent url('/images/ProductDescriptionImages/NTDSK-CT.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTPKT-DE {
  background: transparent url('/images/ProductDescriptionImages/NTPKT-DE.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTDSK-DE {
  background: transparent url('/images/ProductDescriptionImages/NTDSK-DE.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTPKT-DC {
  background: transparent url('/images/ProductDescriptionImages/NTPKT-DC.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTDSK-DC {
  background: transparent url('/images/ProductDescriptionImages/NTDSK-DC.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#NTPKT-FL {
  background: transparent url('/images/ProductDescriptionImages/NTPKT-FL.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTDSK-FL {
  background: transparent url('/images/ProductDescriptionImages/NTDSK-FL.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#NTPKT-GA {
  background: transparent url('/images/ProductDescriptionImages/NTPKT-GA.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTDSK-GA {
  background: transparent url('/images/ProductDescriptionImages/NTDSK-GA.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#NTPKT-HI {
  background: transparent url('/images/ProductDescriptionImages/NTPKT-HI.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTDSK-HI {
  background: transparent url('/images/ProductDescriptionImages/NTDSK-HI.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#NTPKT-ID {
  background: transparent url('/images/ProductDescriptionImages/NTPKT-ID.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTDSK-ID {
  background: transparent url('/images/ProductDescriptionImages/NTDSK-ID.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#NTPKT-IL {
  background: transparent url('/images/ProductDescriptionImages/NTPKT-IL.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTDSK-IL {
  background: transparent url('/images/ProductDescriptionImages/NTDSK-IL.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#NTPKT-IN {
  background: transparent url('/images/ProductDescriptionImages/NTPKT-IN.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTDSK-IN {
  background: transparent url('/images/ProductDescriptionImages/NTDSK-IN.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#NTPKT-IA {
  background: transparent url('/images/ProductDescriptionImages/NTPKT-IA.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTDSK-IA {
  background: transparent url('/images/ProductDescriptionImages/NTDSK-IA.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#NTPKT-KS {
  background: transparent url('/images/ProductDescriptionImages/NTPKT-KS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTDSK-KS {
  background: transparent url('/images/ProductDescriptionImages/NTDSK-KS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#NTPKT-KY {
  background: transparent url('/images/ProductDescriptionImages/NTPKT-KY.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTDSK-KY {
  background: transparent url('/images/ProductDescriptionImages/NTDSK-KY.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#NTPKT-LA {
  background: transparent url('/images/ProductDescriptionImages/NTPKT-LA.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTDSK-LA {
  background: transparent url('/images/ProductDescriptionImages/NTDSK-LA.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#NTPKT-ME {
  background: transparent url('/images/ProductDescriptionImages/NTPKT-ME.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTDSK-ME {
  background: transparent url('/images/ProductDescriptionImages/NTDSK-ME.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#NTPKT-MD {
  background: transparent url('/images/ProductDescriptionImages/NTPKT-MD.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTDSK-MD {
  background: transparent url('/images/ProductDescriptionImages/NTDSK-MD.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#NTPKT-MA {
  background: transparent url('/images/ProductDescriptionImages/NTPKT-MA.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTDSK-MA {
  background: transparent url('/images/ProductDescriptionImages/NTDSK-MA.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#NTPKT-MI {
  background: transparent url('/images/ProductDescriptionImages/NTPKT-MI.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTDSK-MI {
  background: transparent url('/images/ProductDescriptionImages/NTDSK-MI.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#NTPKT-MN {
  background: transparent url('/images/ProductDescriptionImages/NTPKT-MN.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTDSK-MN {
  background: transparent url('/images/ProductDescriptionImages/NTDSK-MN.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#NTPKT-MS {
  background: transparent url('/images/ProductDescriptionImages/NTPKT-MS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTDSK-MS {
  background: transparent url('/images/ProductDescriptionImages/NTDSK-MS.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#NTPKT-MO {
  background: transparent url('/images/ProductDescriptionImages/NTPKT-MO.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTDSK-MO {
  background: transparent url('/images/ProductDescriptionImages/NTDSK-MO.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#NTPKT-MT {
  background: transparent url('/images/ProductDescriptionImages/NTPKT-MT.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTDSK-MT {
  background: transparent url('/images/ProductDescriptionImages/NTDSK-MT.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#NTPKT-NE {
  background: transparent url('/images/ProductDescriptionImages/NTPKT-NE.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTDSK-NE {
  background: transparent url('/images/ProductDescriptionImages/NTDSK-NE.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#NTPKT-NV {
  background: transparent url('/images/ProductDescriptionImages/NTPKT-NV.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTDSK-NV {
  background: transparent url('/images/ProductDescriptionImages/NTDSK-NV.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#NTPKT-NH {
  background: transparent url('/images/ProductDescriptionImages/NTPKT-NH.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTDSK-NH {
  background: transparent url('/images/ProductDescriptionImages/NTDSK-NH.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#NTPKT-NJ {
  background: transparent url('/images/ProductDescriptionImages/NTPKT-NJ.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTDSK-NJ {
  background: transparent url('/images/ProductDescriptionImages/NTDSK-NJ.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#NTPKT-NM {
  background: transparent url('/images/ProductDescriptionImages/NTPKT-NM.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTDSK-NM {
  background: transparent url('/images/ProductDescriptionImages/NTDSK-NM.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#NTPKT-NY {
  background: transparent url('/images/ProductDescriptionImages/NTPKT-NY.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTDSK-NY {
  background: transparent url('/images/ProductDescriptionImages/NTDSK-NY.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#NTPKT-NC {
  background: transparent url('/images/ProductDescriptionImages/NTPKT-NC.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTDSK-NC {
  background: transparent url('/images/ProductDescriptionImages/NTDSK-NC.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#NTPKT-ND {
  background: transparent url('/images/ProductDescriptionImages/NTPKT-ND.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTDSK-ND {
  background: transparent url('/images/ProductDescriptionImages/NTDSK-ND.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#NTPKT-OH {
  background: transparent url('/images/ProductDescriptionImages/NTPKT-OH.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTDSK-OH {
  background: transparent url('/images/ProductDescriptionImages/NTDSK-OH.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#NTPKT-OK {
  background: transparent url('/images/ProductDescriptionImages/NTPKT-OK.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTDSK-OK {
  background: transparent url('/images/ProductDescriptionImages/NTDSK-OK.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#NTPKT-OR {
  background: transparent url('/images/ProductDescriptionImages/NTPKT-OR.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTDSK-OR {
  background: transparent url('/images/ProductDescriptionImages/NTDSK-OR.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#NTPKT-PA {
  background: transparent url('/images/ProductDescriptionImages/NTPKT-PA.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTDSK-PA {
  background: transparent url('/images/ProductDescriptionImages/NTDSK-PA.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#NTPKT-RI {
  background: transparent url('/images/ProductDescriptionImages/NTPKT-RI.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTDSK-RI {
  background: transparent url('/images/ProductDescriptionImages/NTDSK-RI.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#NTPKT-SC {
  background: transparent url('/images/ProductDescriptionImages/NTPKT-SC.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTDSK-SC {
  background: transparent url('/images/ProductDescriptionImages/NTDSK-SC.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#NTPKT-SD {
  background: transparent url('/images/ProductDescriptionImages/NTPKT-SD.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTDSK-SD {
  background: transparent url('/images/ProductDescriptionImages/NTDSK-SD.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#NTPKT-TN {
  background: transparent url('/images/ProductDescriptionImages/NTPKT-TN.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTDSK-TN {
  background: transparent url('/images/ProductDescriptionImages/NTDSK-TN.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#NTPKT-TX {
  background: transparent url('/images/ProductDescriptionImages/NTPKT-TX.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTDSK-TX {
  background: transparent url('/images/ProductDescriptionImages/NTDSK-TX.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#NTPKT-UT {
  background: transparent url('/images/ProductDescriptionImages/NTPKT-UT.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTDSK-UT {
  background: transparent url('/images/ProductDescriptionImages/NTDSK-UT.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#NTPKT-VT {
  background: transparent url('/images/ProductDescriptionImages/NTPKT-VT.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTDSK-VT {
  background: transparent url('/images/ProductDescriptionImages/NTDSK-VT.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#NTPKT-VA {
  background: transparent url('/images/ProductDescriptionImages/NTPKT-VA.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTDSK-VA {
  background: transparent url('/images/ProductDescriptionImages/NTDSK-VA.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#NTPKT-WA {
  background: transparent url('/images/ProductDescriptionImages/NTPKT-WA.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTDSK-WA {
  background: transparent url('/images/ProductDescriptionImages/NTDSK-WA.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#NTPKT-WV {
  background: transparent url('/images/ProductDescriptionImages/NTPKT-WV.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTDSK-WV {
  background: transparent url('/images/ProductDescriptionImages/NTDSK-WV.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#NTPKT-WI {
  background: transparent url('/images/ProductDescriptionImages/NTPKT-WI.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTDSK-WI {
  background: transparent url('/images/ProductDescriptionImages/NTDSK-WI.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}
#NTPKT-WY {
  background: transparent url('/images/ProductDescriptionImages/NTPKT-WY.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTDSK-WY {
  background: transparent url('/images/ProductDescriptionImages/NTDSK-WY.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

/********************** END - Notary Seals *************************/

#GuestUser {
  background: #eaeaea;
  padding: 10px;
  border: 3px solid #666;
  position: relative;
  bottom: 325px;
}
#AnonymousUserLogin1_lblTitle {
  padding-left: 40px;
}
#AnonymousUserLogin1_lblDesc {
  position: relative;
  top: -9px;
  left: 30px;
}
.btnGuestUser {
  position: relative;
  left: 35px;
}
/*#lblCurrentUsers {
  position: relative;
  top: 50px;
}*/
#tdCurrentUser {
  padding-top: 120px;
}

#tdNewUser {
  padding-top:8px;
  padding-left: 20px;
}

#lblCurrentUsers, #lblNewUsers {
  color: #175979;
  font-size: 13px;
  padding-left: 6px;
}

#DNDS-BK {
  background: transparent url('/images/ProductDescriptionImages/DNDS-BK.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#DNDS-GL {
  background: transparent url('/images/ProductDescriptionImages/DNDS-GL.png') no-repeat;
  height: 163px;
  width: 445px;
  position: relative;
  left: 20px;
}

#NTDS-NJ {
  background: transparent url('/images/ProductDescriptionImages/NTDS-NJ.png') no-repeat;
  height: 163px;
  width: 445px;
}

/***************  Start Notary Products Descriptions - ALS - 2/16/2017 ***************/

		.kitdescrip {min-height: 260px; background: transparent url('/images/ProductDescriptionImages/Description1_BG.png') repeat-x; padding-left: 5px; padding-top: 0px; padding-bottom: 20px;} 

		.kitdescrip-2 {min-height: 320px; background: transparent url('/images/ProductDescriptionImages/Description2_BG.png') repeat-X; padding-left: 5px; padding-top: 0px; padding-bottom: 20px;} 
		
		.kitdescrip-mk {min-height: 450px; background: transparent url('/images/ProductDescriptionImages/Description3_BG.png') repeat-X; padding-left: 5px; padding-top: 0px; padding-bottom: 20px;} 

		.descripprodtext {font: bold 11px Verdana, Arial, Sans-Serif; color:#124C6A; padding: 5px; position: relative; top: 115px; width: 135px;}

		.descripprodtext2 {font: bold 11px Verdana, Arial, Sans-Serif; color:#124C6A; padding: 8px; width: 135px; margin-left: 140px;}
		
		.descripprodtext2-new {font: bold 11px Verdana, Arial, Sans-Serif; color:#124C6A; padding: 8px; position: relative; top: 115px; width: 135px; margin-left: 140px;}

		#Included, #SavingsText {font: bold 11px Verdana, Arial, Sans-Serif; color:#333;}

		#included2 {font: bold 11px Verdana, Arial, Sans-Serif; color:#333; padding-left: 20px; padding-right: 20px;}

		#Included2 {font: bold 11px Verdana, Arial, Sans-Serif; color:#333; padding-left: 20px; padding-right: 20px;}

		#SavingsText {text-decoration: underline; color:#124C6A;}

		.productitemslg {padding-left: 30px; padding-right: 10px;}

		.productitemslg-new {padding-left: 30px; padding-right: 10px;}

		.descriptionproducts {text-align: center;}

		.product-img-block {float: left; width: 600px; margin-right: auto; margin-left: auto;}

		.product-img-block-2 {margin-right: auto; margin-left: auto; top: 15px; left: 0px !important;}

		.productitems-bk {margin-left: 3%; padding-left: 10px; padding-right: 10px;}

		.productitems-vk {margin-left: 3.5%; padding-left: 10px; padding-right: 10px;}

		.productitems-dk {margin-left: 3.5%; padding-left: 10px; padding-right: 10px;}

		.productitems-rk {margin-left: 18%; padding-left: 10px; padding-right: 10px;}

		.productitems-mk {margin-left: 3%; padding-left: 10px; padding-right: 10px;}

		.insrtuct-txt {text-align: center; color: #c00000; clear: both; font-style: italic; font-weight: 600; padding-top:5px; padding-bottom: 3px;}

/***************  End Notary Products Descriptions - ALS - 2/16/2017 ***************/