@CHARSET "UTF-8";
/***positioning***/
.absolute{position: absolute;}
.relative {position: relative;}

/***centering***/
.auto-center{margin: 0 auto;}

/***Margination***/
.no-margin-right {margin-right: 0px;}
.no-margin-left {margin-left: 0px;}
.no-margin-top {margin-top: 0px;}
.no-margin-bottom {margin-bottom: 0px;}
.no-margin {margin: 0px;}

/***text styles***/
.bold{font-weight: bold;}
.normal{font-weight: normal;}
.text-normal{font-style: normal;}
.italic{font-style: italic;}
.oblique{font-style: oblique;}
.underline{text-decoration: underline;}
.no-deco {text-decoration: none;}
.text-center{text-align: center;}
.text-left{text-align: left;}
.text-right{text-align: right;}
.lowercase{text-transform: lowercase;}
.uppercase{text-transform: uppercase;}
.capitalize{text-transform: capitalize;}

/*letterpressed*/
.letterpressed{text-shadow: 0px 1px 1px #000;}

/* List types */
.list-none {list-style-type: none;}
.list-circle {list-style-type: circle;}
.list-square {list-style-type: square;}
.list-disc {list-style-type: disc;}
.list-decimal {list-style-type: decimal;}
.list-square {list-style-type: square;}

/*** Nested & numbered lists ***/
.contents h2 { padding:5px 0 10px 0; }
.contents p { padding:5px 0 10px 0; }
.contents ol.nested { counter-reset: item; }
.contents .nested li { display: block; counter-increment: item; line-height:18px; font-weight:700; margin-top:10px; }
.contents .nested li:before { content: counters(item, ".") ". ";  }
.contents ol.nested > li > ol { counter-reset: subsection; list-style-type: decimal; }
.contents ol.nested > li > ol > li { counter-increment: subsection; padding:5px 0 5px 20px; }
.contents ol.nested > li > ol > li { font-weight:normal !important; margin-top:0 !important; }
.contents ol.nested > li > ol > li:before { content: counter(item) "." counter(subsection) " "; }
.contents ol.nested > li > ol > li > ol { counter-reset: sub_subsection; list-style-type: decimal; }
.contents ol.nested > li > ol > li > ol > li { counter-increment: sub_subsection; padding:5px 0 5px 20px; font-weight:normal !important; margin-top:0 !important; }
.contents ol.nested > li > ol > li > ol > li:before { content: counter(item) "." counter(subsection) "." counter(sub_subsection) " "; }

/***floating***/
.float-left{float: left;}
.float-right{float: right;}

/***clearing***/
.clear{clear:both;}
.clear-left{clear:left;}
.clear-right{clear:right;}

/***percentage***/
.full-width{width:100%;}
.width95 {width:95%;}
.width90 {width:90%;}
.width85 {width:85%;}
.width80 {width:80%;}
.width75 {width:75%;}
.width70 {width:70%;}
.width60 {width:60%;}
.one-half {width:50%;}
.width48 {width:48%;}
.width45 {width:45%;}
.width40 {width:40%;}
.one-third {width:33%;}
.width30 {width:30%;}
.one-fourth {width:25%;}
.one-fifth {width:20%;}
.one-tenth {width: 10%;}

/***percentage with spacing***/
.full-width-98{width:98%;}
.one-half-48{width:48%;margin-right:2%}
.one-third-31{width:31%;margin-right:2%}
.one-fourth-23{width:23%;margin-right:2%}
.one-fifth-18{width:18%;margin-right:2%}

/***percentage separators x***/
.separator-x-1{width:1%;}
.separator-x-2{width:2%;}
.separator-x-3{width:3%;}
.separator-x-4{width:4%;}
.separator-x-5{width:5%;}
.separator-x-6{width:6%;}
.separator-x-7{width:7%;}
.separator-x-8{width:8%;}
.separator-x-9{width:9%;}
.separator-x-10{width:10%;}

/***percentage separators y***/
.separator-y-1{height:1%;}
.separator-y-2{height:2%;}
.separator-y-3{height:3%;}
.separator-y-4{height:4%;}
.separator-y-5{height:5%;}
.separator-y-6{height:6%;}
.separator-y-7{height:7%;}
.separator-y-8{height:8%;}
.separator-y-9{height:9%;}
.separator-y-10{height:10%;}

/***pixel separators x***/
.separator-px-1{width:1px;}
.separator-px-2{width:2px;}
.separator-px-3{width:3px;}
.separator-px-4{width:4px;}
.separator-px-5{width:5px;}
.separator-px-6{width:6px;}
.separator-px-7{width:7px;}
.separator-px-8{width:8px;}
.separator-px-9{width:9px;}
.separator-px-10{width:10px;}

/***pixel separators v***/
.separator-py-1{height:1px;}
.separator-py-2{height:2px;}
.separator-py-3{height:3px;}
.separator-py-4{height:4px;}
.separator-py-5{height:5px;}
.separator-py-6{height:6px;}
.separator-py-7{height:7px;}
.separator-py-8{height:8px;}
.separator-py-9{height:9px;}
.separator-py-10{height:10px;}

/***border styling***/
.no-border{border-style:none;}
.solid-border{border-style:solid;}
.dashed-border{border-style:dashed;}
.dotted-border{border-style:dotted;}
.double-border{border-style:double;}
.groove-border{border-style:groove;}
.ridge-border{border-style:ridge;}
.inset-border{border-style:inset;}
.outset-border{border-style:outset;}

/***borders***/
.border-none {border: 0px solid white;}

/***elements displaying***/
.block,.show{display:block;}
.inline{display:inline;}
.inline-block {display:inline-block;}
.hide{display:none;}

/***rounded corners***/
.radius5{-webkit-border-radius: 5px;-moz-border-radius: 5px;border-radius: 5px;}
.radius4{-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;}
.radius3{-webkit-border-radius: 3px;-moz-border-radius: 3px;border-radius: 3px;}
.radius2{-webkit-border-radius: 2px;-moz-border-radius: 2px;border-radius: 2px;}
.radius-left{-webkit-border-top-right-radius: 0px;-webkit-border-bottom-right-radius: 0px;-moz-border-radius-topright: 0px;-moz-border-radius-bottomright: 0px;border-top-right-radius: 0px;border-bottom-right-radius: 0px;}
.radius-right{-webkit-border-top-left-radius: 0px;-webkit-border-bottom-left-radius: 0px;-moz-border-radius-topleft: 0px;-moz-border-radius-bottomleft: 0px;border-top-left-radius: 0px;border-bottom-left-radius: 0px;}
.radius-top{-webkit-border-bottom-left-radius: 0px;-webkit-border-bottom-right-radius: 0px;-moz-border-radius-bottomleft: 0px;-moz-border-radius-bottomright: 0px;border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;}
.radius-bottom{-webkit-border-top-left-radius: 0px;-webkit-border-top-right-radius: 0px;-moz-border-radius-topleft: 0px;-moz-border-radius-topright: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;}
.radius-top-left{-webkit-border-top-left-radius: 5px;-moz-border-radius-topleft: 5px;border-top-left-radius: 5px;}
.radius-top-right{-webkit-border-top-right-radius: 5px;-moz-border-radius-topright: 5px;border-top-right-radius: 5px;}
.radius-bottom-right{-webkit-border-bottom-right-radius: 5px;-moz-border-radius-bottomright: 5px;border-bottom-right-radius: 5px;}
.radius-bottom-left{-webkit-border-bottom-left-radius: 5px;-moz-border-radius-bottomleft: 5px;border-bottom-left-radius: 5px;}
.noRadius-top-left{-webkit-border-top-left-radius: 0px;-moz-border-radius-topleft: 0px;border-top-left-radius: 0px;}
.noRadius-top-right{-webkit-border-top-right-radius: 0px;-moz-border-radius-topright: 0px;border-top-right-radius: 0px;}
.noRadius-bottom-right{-webkit-border-bottom-right-radius: 0px;-moz-border-radius-bottomright: 0px;border-bottom-right-radius: 0px;}
.noRadius-bottom-left{-webkit-border-bottom-left-radius: 0px;-moz-border-radius-bottomleft: 0px;border-bottom-left-radius: 0px;}

/***basic background***/
.white-bg{background-color:white;}
.black-bg{background-color:black;}
.yellow-bg{background-color:yellow;}
.red-bg{background-color:red;}
.blue-bg{background-color:blue;}
.gray-bg{background-color:gray;}
.green-bg{background-color:green;}

/***Inheritance***/
.inherit-bg {background: inherit;}
.inherit-width {width: inherit;}
.inherit-height {height: inherit;}
.inherit-color {color: inherit;}
.inherit-position {position: inherit;}

/***basic text color***/
.white{color:white;}
.black{color:black;}
.yellow{color:yellow;}
.red{color:red;}
.blue{color:blue;}
.gray{color:gray;}
.green{color:green;}

/* Container Loader */
.container-loader {position: absolute; left: 0px; top: 0px;width: inherit;height: inherit; background: transparent url(https://aws-origin.image-tech-storage.com/redkings.com/images/loader_bg.png) left top repeat;z-index:1000;}
.loader-img { background: transparent url(https://aws-origin.image-tech-storage.com/redkings.com/images/ajax_loader.gif) left top no-repeat;width:54px;height:55px; }

/* Images */
.red-ellipse {background: transparent url(https://aws-origin.image-tech-storage.com/redkings.com/images/red-ellipse.png) left top no-repeat;}
/*.bookmark,.jqbookmark {background: transparent url(https://aws-origin.image-tech-storage.com/redkings.com/images/bookmark.png) left top no-repeat;width: 139px;height: 40px;padding-left:39px;}*/

/* No Script */
noscript {z-index:100000;height: 30px;font-size: 15px;margin-bottom:15px;line-height: 30px;vertical-align: middle;background: #111;border-bottom:1px solid #333;color: #d6d6d6;-moz-box-shadow: 0px 10px 20px #1d1d1d;-webkit-box-shadow: 0px 10px 20px #1d1d1d;box-shadow: 0px 10px 20px #1d1d1d;}
