body, div, dl, dt, dd, h1, h2, h3, h4, h5, h6, p, pre, code, blockquote {
	margin:0;
	padding:0;
	border-width:0;
}
body {
	
}
.blue-frame { 
	background-color: #1e92aa;
}
.tan-frame {
	background-color: #d4cdb7;
}


.checkbox {
  padding-left: 20px;
}
.checkbox label {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding-left: 5px;
}
.checkbox label::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 17px;
  height: 17px;
  left: 0;
  margin-left: -20px;
  border: 1px solid #cccccc;
  border-radius: 3px;
  background-color: #fff;
  -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}
.checkbox label::after {
  display: inline-block;
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0;
  top: 0;
  margin-left: -20px;
  padding-left: 3px;
  padding-top: 1px;
  font-size: 11px;
  color: #555555;
}
.checkbox input[type="checkbox"],
.checkbox input[type="radio"] {
  opacity: 0;
  z-index: 1;
}
.checkbox input[type="checkbox"]:focus + label::before,
.checkbox input[type="radio"]:focus + label::before {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.checkbox input[type="checkbox"]:checked + label::after,
.checkbox input[type="radio"]:checked + label::after {
  font-family: "FontAwesome";
  content: "\f00c";
}
.checkbox input[type="checkbox"]:disabled + label,
.checkbox input[type="radio"]:disabled + label {
  opacity: 0.65;
}
.checkbox input[type="checkbox"]:disabled + label::before,
.checkbox input[type="radio"]:disabled + label::before {
  background-color: #eeeeee;
  cursor: not-allowed;
}
.checkbox.checkbox-circle label::before {
  border-radius: 50%;
}
.checkbox.checkbox-inline {
  margin-top: 0;
}

.checkbox-primary input[type="checkbox"]:checked + label::before,
.checkbox-primary input[type="radio"]:checked + label::before {
  background-color: #337ab7;
  border-color: #337ab7;
}
.checkbox-primary input[type="checkbox"]:checked + label::after,
.checkbox-primary input[type="radio"]:checked + label::after {
  color: #fff;
}

.checkbox-danger input[type="checkbox"]:checked + label::before,
.checkbox-danger input[type="radio"]:checked + label::before {
  background-color: #d9534f;
  border-color: #d9534f;
}
.checkbox-danger input[type="checkbox"]:checked + label::after,
.checkbox-danger input[type="radio"]:checked + label::after {
  color: #fff;
}

.checkbox-info input[type="checkbox"]:checked + label::before,
.checkbox-info input[type="radio"]:checked + label::before {
  background-color: #5bc0de;
  border-color: #5bc0de;
}
.checkbox-info input[type="checkbox"]:checked + label::after,
.checkbox-info input[type="radio"]:checked + label::after {
  color: #fff;
}

.checkbox-warning input[type="checkbox"]:checked + label::before,
.checkbox-warning input[type="radio"]:checked + label::before {
  background-color: #f0ad4e;
  border-color: #f0ad4e;
}
.checkbox-warning input[type="checkbox"]:checked + label::after,
.checkbox-warning input[type="radio"]:checked + label::after {
  color: #fff;
}

.checkbox-success input[type="checkbox"]:checked + label::before,
.checkbox-success input[type="radio"]:checked + label::before {
  background-color: #5cb85c;
  border-color: #5cb85c;
}
.checkbox-success input[type="checkbox"]:checked + label::after,
.checkbox-success input[type="radio"]:checked + label::after {
  color: #fff;
}

.radio {
  padding-left: 20px;
}
.radio label {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding-left: 5px;
}
.radio label::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 17px;
  height: 17px;
  left: 0;
  margin-left: -20px;
  border: 1px solid #cccccc;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transition: border 0.15s ease-in-out;
  -o-transition: border 0.15s ease-in-out;
  transition: border 0.15s ease-in-out;
}
.radio label::after {
  display: inline-block;
  position: absolute;
  content: " ";
  width: 11px;
  height: 11px;
  left: 3px;
  top: 3px;
  margin-left: -20px;
  border-radius: 50%;
  background-color: #555555;
  -webkit-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  -o-transform: scale(0, 0);
  transform: scale(0, 0);
  -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  -moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  -o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
}
.radio input[type="radio"] {
  opacity: 0;
  z-index: 1;
}
.radio input[type="radio"]:focus + label::before {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.radio input[type="radio"]:checked + label::after {
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
}
.radio input[type="radio"]:disabled + label {
  opacity: 0.65;
}
.radio input[type="radio"]:disabled + label::before {
  cursor: not-allowed;
}
.radio.radio-inline {
  margin-top: 0;
}

.radio-primary input[type="radio"] + label::after {
  background-color: #337ab7;
}
.radio-primary input[type="radio"]:checked + label::before {
  border-color: #337ab7;
}
.radio-primary input[type="radio"]:checked + label::after {
  background-color: #337ab7;
}

.radio-danger input[type="radio"] + label::after {
  background-color: #d9534f;
}
.radio-danger input[type="radio"]:checked + label::before {
  border-color: #d9534f;
}
.radio-danger input[type="radio"]:checked + label::after {
  background-color: #d9534f;
}

.radio-info input[type="radio"] + label::after {
  background-color: #5bc0de;
}
.radio-info input[type="radio"]:checked + label::before {
  border-color: #5bc0de;
}
.radio-info input[type="radio"]:checked + label::after {
  background-color: #5bc0de;
}

.radio-warning input[type="radio"] + label::after {
  background-color: #f0ad4e;
}
.radio-warning input[type="radio"]:checked + label::before {
  border-color: #f0ad4e;
}
.radio-warning input[type="radio"]:checked + label::after {
  background-color: #f0ad4e;
}

.radio-success input[type="radio"] + label::after {
  background-color: #5cb85c;
}
.radio-success input[type="radio"]:checked + label::before {
  border-color: #5cb85c;
}
.radio-success input[type="radio"]:checked + label::after {
  background-color: #5cb85c;
}

input[type="checkbox"].styled:checked + label:after,
input[type="radio"].styled:checked + label:after {
  font-family: 'FontAwesome';
  content: "\f00c";
}
input[type="checkbox"] .styled:checked + label::before,
input[type="radio"] .styled:checked + label::before {
  color: #fff;
}
input[type="checkbox"] .styled:checked + label::after,
input[type="radio"] .styled:checked + label::after {
  color: #fff;
}


.panel
{
    text-align: center;
}
.panel:hover { box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4), 0 1px 5px rgba(130, 130, 130, 0.35); }
.panel-body
{
    padding: 0px;
    text-align: center;
}

.panel-gold, .gold {
    border-color: #C98910;
}
.panel-gold>.panel-gold {
    color: #fff;
    background-color: #C98910;
    border-color: ##C98910
}
.panel-silver {
    border-color: #A8A8A8;
}
.panel-bronze {
    border-color: #965A38;
}


.the-price
{
    background-color: rgba(220,220,220,.17);
    box-shadow: 0 1px 0 #dcdcdc, inset 0 1px 0 #fff;
    padding: 20px;
    margin: 0;
}

.the-price h1
{
    line-height: 1em;
    padding: 0;
    margin: 0;
}

.subscript
{
    font-size: 25px;
}

/* CSS-only ribbon styles    */
.cnrflash
{
    /*Position correctly within container*/
    position: absolute;
    top: -9px;
    right: 4px;
    z-index: 1; /*Set overflow to hidden, to mask inner square*/
    overflow: hidden; /*Set size and add subtle rounding  		to soften edges*/
    width: 100px;
    height: 100px;
    border-radius: 3px 5px 3px 0;
}
.cnrflash-inner
{
    /*Set position, make larger then 			container and rotate 45 degrees*/
    position: absolute;
    bottom: 0;
    right: 0;
    width: 145px;
    height: 145px;
    -ms-transform: rotate(45deg); /* IE 9 */
    -o-transform: rotate(45deg); /* Opera */
    -moz-transform: rotate(45deg); /* Firefox */
    -webkit-transform: rotate(45deg); /* Safari and Chrome */
    -webkit-transform-origin: 100% 100%; /*Purely decorative effects to add texture and stuff*/ /* Safari and Chrome */
    -ms-transform-origin: 100% 100%;  /* IE 9 */
    -o-transform-origin: 100% 100%; /* Opera */
    -moz-transform-origin: 100% 100%; /* Firefox */
    background-image: linear-gradient(90deg, transparent 50%, rgba(255,255,255,.1) 50%), linear-gradient(0deg, transparent 0%, rgba(1,1,1,.2) 50%);
    background-size: 4px,auto, auto,auto;
    background-color: #aa0101;
    box-shadow: 0 3px 3px 0 rgba(1,1,1,.5), 0 1px 0 0 rgba(1,1,1,.5), inset 0 -1px 8px 0 rgba(255,255,255,.3), inset 0 -1px 0 0 rgba(255,255,255,.2);
}
.cnrflash-inner:before, .cnrflash-inner:after
{
    /*Use the border triangle trick to make  				it look like the ribbon wraps round it's 				container*/
    content: " ";
    display: block;
    position: absolute;
    bottom: -16px;
    width: 0;
    height: 0;
    border: 8px solid #800000;
}
.cnrflash-inner:before
{
    left: 1px;
    border-bottom-color: transparent;
    border-right-color: transparent;
}
.cnrflash-inner:after
{
    right: 0;
    border-bottom-color: transparent;
    border-left-color: transparent;
}
.cnrflash-label
{
    /*Make the label look nice*/
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    padding-bottom: 5px;
    color: #fff;
    text-shadow: 0 1px 1px rgba(1,1,1,.8);
    font-size: 0.95em;
    font-weight: bold;
    text-align: center;
}



div.Basic-Graphics-Frame {
	border-color:#000000;
	border-width:1px;
	border-style:solid;
}
div.Basic-Text-Frame {
	border-style:solid;
}
p.Basic-Paragraph {
	color:#000000;
	font-family:"Minion Pro", serif;
	font-size:12px;
	font-style:normal;
	font-variant:normal;
	font-weight:normal;
	line-height:1.2;
	margin-bottom:0;
	margin-left:0;
	margin-right:0;
	margin-top:0;
	orphans:1;
	page-break-after:auto;
	page-break-before:auto;
	text-align:left;
	text-decoration:none;
	text-indent:0;
	text-transform:none;
	widows:1;
}
p.ParaOverride-1 {
	text-align:right;
}
span.CharOverride-1 {
	color:#ffffff;
	font-size:48px;
	font-style:normal;
	font-weight:bold;
}
span.CharOverride-2 {
	color:#ffffff;
	font-family:"Palatino Linotype", serif;
	font-size:35px;
	font-style:normal;
	font-weight:bold;
}
span.CharOverride-3 {
	color:#ffffff;
	font-family:"Myriad Pro", sans-serif;
	font-style:normal;
	font-weight:normal;
	font-size: 1.2em;
}
span.CharOverride-4 {
	color:#ffffff;
	font-family:"Myriad Pro", sans-serif;
	font-size:16px;
	font-style:normal;
	font-weight:normal;
}
span.CharOverride-5 {
	color:#f26d6a;
	font-family:"Myriad Pro Cond", sans-serif;
	font-size:32px;
	font-style:normal;
	font-weight:bold;
}
span.CharOverride-6 {
	font-family:"Myriad Pro", sans-serif;
	font-style:normal;
	font-weight:normal;
}
span.CharOverride-7 {
	font-family:"Myriad Pro Cond", sans-serif;
	font-size:18px;
	font-style:normal;
	font-weight:normal;
}
span.CharOverride-8 {
	color:#b0ab99;
	font-family:"Myriad Pro Cond", sans-serif;
	font-size:20px;
	font-style:normal;
	font-weight:bold;
}
span.CharOverride-9 {
	color:#0ac1e6;
	font-family:"Myriad Pro Cond", sans-serif;
	font-size:18px;
	font-style:normal;
	font-weight:bold;
}
span.CharOverride-10 {
	color:#00455c;
	font-family:"Myriad Pro Cond", sans-serif;
	font-size:32px;
	font-style:normal;
	font-weight:bold;
}
span.CharOverride-11 {
	color:#6f7173;
	font-family:"Myriad Pro Cond", sans-serif;
	font-size:26px;
	font-style:normal;
	font-weight:bold;
}
span.CharOverride-12 {
	color:#3e81c3;
	font-family:"Myriad Pro Cond", sans-serif;
	font-size:30px;
	font-style:normal;
	font-weight:bold;
}
span.CharOverride-13 {
	font-family:"Myriad Pro", sans-serif;
	font-size:14px;
	font-style:normal;
	font-weight:normal;
}
span.CharOverride-14 {
	color:#3e81c3;
	font-family:"Myriad Pro Cond", sans-serif;
	font-size:51px;
	font-style:normal;
	font-weight:bold;
}
span.CharOverride-15 {
	color:#f26d6c;
	font-family:Impact, sans-serif;
	font-size:51px;
	font-style:normal;
	font-weight:normal;
}
span.CharOverride-16 {
	color:#00c0e6;
	font-family:Impact, sans-serif;
	font-size:51px;
	font-style:normal;
	font-weight:normal;
}
span.CharOverride-17 {
	color:#ffffff;
	font-family:"Myriad Pro Cond", sans-serif;
	font-size:51px;
	font-style:normal;
	font-weight:bold;
}
span.CharOverride-18 {
	color:#ffffff;
	font-family:"Myriad Pro", sans-serif;
	font-size:14px;
	font-style:normal;
	font-weight:normal;
}
span.CharOverride-19 {
	color:#ffffff;
	font-family:"Myriad Pro Cond", sans-serif;
	font-size:32px;
	font-style:normal;
	font-weight:bold;
}
span.CharOverride-20 {
	color:#3e81c3;
	font-family:"Myriad Pro Cond", sans-serif;
	font-size:34px;
	font-style:normal;
	font-weight:bold;
}
span.CharOverride-21 {
	font-family:"Myriad Pro", sans-serif;
	font-style:italic;
	font-weight:normal;
}
span.CharOverride-22 {
	color:#3e81c3;
	font-family:"Myriad Pro Cond", sans-serif;
	font-size:42px;
	font-style:normal;
	font-weight:bold;
}
span.CharOverride-23 {
	color:#ffffff;
	font-family:"Myriad Pro", sans-serif;
	font-size:10px;
	font-style:normal;
	font-weight:normal;
}
span.CharOverride-24 {
	font-size:8px;
}
span.CharOverride-25 {
	font-family:"Helvetica Neue", sans-serif;
	font-size:62px;
	font-style:normal;
	font-weight:bold;
}
span.CharOverride-26 {
	font-family:"Adobe Caslon Pro", serif;
	font-size:18px;
	font-style:normal;
	font-weight:normal;
}
span.CharOverride-27 {
	color:#b0ab99;
	font-family:"Myriad Pro Cond", sans-serif;
	font-size:32px;
	font-style:normal;
	font-weight:bold;
}
span.CharOverride-28 {
	font-family:"Myriad Pro", sans-serif;
	font-size:19px;
	font-style:normal;
	font-weight:bold;
}
span.CharOverride-29 {
	color:#b58a81;
	font-family:Impact, sans-serif;
	font-size:83px;
	font-style:normal;
	font-weight:normal;
}
span.CharOverride-30 {
	color:#1db57c;
	font-family:"Myriad Pro Cond", sans-serif;
	font-size:62px;
	font-style:normal;
	font-weight:bold;
}
span.CharOverride-31 {
	color:#757679;
	font-family:"Myriad Pro Cond", sans-serif;
	font-size:20px;
	font-style:normal;
	font-weight:bold;
}
#_idContainer000 {
	display:inline-block;
	height:686px;
	width:612px;
}
#_idContainer001 {
	display:inline-block;
	height:145px;
	width:215px;
}
#_idContainer003 {
	display:inline-block;
	height:216px;
	width:166px;
}
#_idContainer004 {
	display:inline-block;
	height:145px;
	width:98px;
}
#_idContainer005, #_idContainer022 {
	display:inline-block;
	height:145px;
	width:299px;
}
#_idContainer006 {
	display:inline-block;
	height:324px;
	position:relative;
	width:634px;
}
#_idContainer007 {
	display:inline-block;
	height:331px;
	position:relative;
	width:612px;
}
#_idContainer012 {
	display:inline-block;
	height:197px;
	width:91px;
}
#_idContainer017 {
	display:inline-block;
	height:213px;
	position:relative;
	width:0px;
}
#_idContainer018 {
	display:inline-block;
	height:456px;
	position:relative;
	width:351px;
}
#_idContainer025 {
	display:inline-block;
	height:349px;
	position:relative;
	width:612px;
}
#_idContainer028 {
	display:inline-block;
	height:110px;
	width:187px;
}
#_idContainer032 {
	display:inline-block;
	height:234px;
	width:346px;
}
#_idContainer033 {
	display:inline-block;
	height:367px;
	width:346px;
}
#_idContainer036 {
	display:inline-block;
	height:73px;
	width:77px;
}
#_idContainer042 {
	display:inline-block;
	height:171px;
	width:127px;
}
#_idContainer043 {
	display:inline-block;
	height:92px;
	position:relative;
	width:612px;
}
#_idContainer048 {
	display:inline-block;
	height:373px;
	width:594px;
}
#_idContainer053 {
	display:inline-block;
	height:287px;
	width:478px;
}
#_idContainer067 {
	display:inline-block;
	height:331px;
	width:594px;
}
#_idContainer069 {
	display:inline-block;
	height:189px;
	width:144px;
}
#_idContainer072 {
	display:inline-block;
	height:97px;
	position:relative;
	width:276px;
}
#_idContainer073 {
	display:inline-block;
	height:0px;
	position:relative;
	width:550px;
}
#_idContainer075 {
	display:inline-block;
	height:66px;
	position:relative;
	width:187px;
}
#_idContainer083 {
	display:inline-block;
	height:75px;
	position:relative;
	width:232px;
}
#_idContainer085 {
	display:inline-block;
	height:412px;
	position:relative;
	width:612px;
}
#_idContainer086 {
	display:inline-block;
	height:99px;
	width:297px;
}
#_idContainer087 {
	display:inline-block;
	height:141px;
	width:109px;
}
#_idContainer088 {
	display:inline-block;
	height:195px;
	width:540px;
}
#_idContainer093 {
	display:inline-block;
	height:165px;
	width:246px;
}
img._idGenObjectAttribute-1 {
	height:100%;
	min-width:100%;
	width:100%;
}
div._idGenObjectStyleOverride-1 {
	border-width:0px;
}
div._idGenObjectStyleOverride-2 {
	background-color:#119bbd;
	border-width:0px;
}
div._idGenObjectStyleOverride-3 {
	background-color:#ffffff;
	border-color:#ffffff;
}
div._idGenObjectStyleOverride-4 {
	background-color:#d8d2bc;
	border-width:0px;
}
div._idGenObjectStyleOverride-5 {
	background-color:#f26d6a;
	border-width:0px;
}
div._idGenObjectStyleOverride-6 {
	border-color:#3e81c3;
}
div._idGenObjectStyleOverride-7 {
	background-color:#73cabf;
	border-width:0px;
}
div._idGenObjectStyleOverride-8 {
	background-color:#814f78;
	border-width:0px;
}
div._idGenObjectLayout-1 {
	text-align:center;
}
