/*
Theme Name: oxyderm
Text Domain: oxyderm
Version: 1.1.1
Tested up to: 7.4
Requires at least: 5.2
Requires PHP: 5.7
Description: oxyderm
Author: Susanta
Author URI: susantababua@gmail.com/
Theme URI: susantababua@gmail.com/
License: susantababua@gmail.com/
License URI: susantababua@gmail.com/
Text Domain: oxyderm
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, block-patterns, rtl-language-support, sticky-post, threaded-comments
*/
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Marcellus&display=swap');

:root {
  --font-default: "Manrope", system-ui, "-apple-system", "Segoe UI",  "Roboto", "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Marcellus", serif;
  --font-secondary: "Marcellus", serif;
}
/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
  --color-default: #00172d;
  --color-primary: #00172d;
  --color-secondary: #e6f8ff;
  --color-accent: #33699d;
  --color-white: #ffffff;
  --color-light: #f7f2e5;
  --color-light-gray: rgba(0, 0, 0, 0.5);
  --color-gray: #d8e4ea;
  --color-dark: #0e0e0e;
  --color-black: #000000;  
  --color-accent-text: #5A4A66;
}

h1,h2,h3,h4,h5,h6{
font-family: var(--font-primary);
}

h1{line-height: 1.1;}
h2{line-height: 1.3!important;}
h3{line-height: 1.3;}
h4{line-height: 1.4;}
h5{line-height: 1.5;}
h6{line-height: 1.5;}
h1,h2,h3,h4,h5,h6,p,ul{
  margin-bottom: 30px;
}
.fs-6{
  font-size: 14px!important;
}
@media (min-width: 1200px) {
  h1{font-size: 55px;}
  h2{font-size: 40px;}
}

em{
  font-family: var(--font-secondary);
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

.sticky {
  position: fixed;
}
.bg-primary {
  background-color: var(--color-primary) !important;
  color: var(--color-white);
}
.bg-secondary {
  background-color: var(--color-secondary) !important;
  color: var(--color-default);
}
.bg-light {
  background-color: var(--color-light) !important;
  color: var(--color-dark);
}
.bg-dark {
  background-color: var(--color-dark) !important;
}
.text-primary {
  color: var(--color-primary) !important;
}
.text-secondary {
  color: var(--color-secondary) !important;
}
.text-dark {
  color: var(--color-dark) !important;
}
.text-default {
  color: var(--color-default) !important;
}
.text-accent-text{ 
  color: var(--color-accent-text);
}
.link-dark {
  color: var(--color-dark) !important;
}
.link-dark:hover {
  color: var(--color-primary) !important;
}
.btn-sm {
  padding: 4px 10px !important;
}
.btn-md {
  padding: 0.9rem 2rem !important;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .btn-md {
    font-size: 13px;
  }
}
.btn-lg {
  padding: 17px 40px !important;
  display: inline-block;
}
.textlink {
  color: var(--color-primary);
}
.textlink:hover {
  color: var(--color-secondary);
}

a{
  text-decoration: none;
  cursor: pointer;
  transition: 200ms;
  color: var(--color-accent);
}
a:hover {
  text-decoration: none;
  color: var(--color-dark);
}
.btn1,
a.btn1 {  
  outline: none;
  font-weight: 500;
  font-size: 14px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: var(--color-primary);
  opacity: 1;
  background-color: transparent;
  padding: 12px 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  z-index: 0;
  font-weight: 600;
}

.btn1 > *,
a.btn1 > * {
  position: relative;
  z-index: 1;
}

.btn1::before,
a.btn1::before {
  content: "";
  background-color: var(--color-secondary);
  position: absolute;
  left: 5px;
  top: 5px;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: block;
  transition: 300ms;
}

.btn1:hover::before,
a.btn1:hover::before {
  left: 0;
  top: 0;
}
.btn1::after,
a.btn1::after {
  content: "";
  background-color: transparent;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: block;
  border: 1px solid var(--color-accent);
}
.btn2,
a.btn2 {
  outline: none;
  font-weight: 600;
  font-size: 14px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: var(--color-default);
  opacity: 1;
  background-color: var(--color-white);
  padding: 10px 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
}
.btn2:hover,
a.btn2:hover {
  color: var(--color-white);
  background-color: var(--color-accent);
}
.btn3,
a.btn3 {
  border: 1px solid var(--color-accent);
  outline: none;
  font-weight: 600;
  font-size: 14px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: var(--color-white);
  opacity: 1;
  background-color: var(--color-accent);
  padding: 10px 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
}
.btn3:hover,
a.btn3:hover {
  color: var(--color-accent);
  background-color: var(--color-white);
}

.btn4,
a.btn4 {  
  outline: none;
  font-weight: 500;
  font-size: 14px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #000;
  opacity: 1;
  background-color: transparent;
  padding: 12px 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  z-index: 0;
  font-weight: 600;
}

.btn4 > *,
a.btn4 > * {
  position: relative;
  z-index: 1;
}

.btn4::before,
a.btn4::before {
  content: "";
  background-color: var(--color-white);
  position: absolute;
  left: 5px;
  top: 5px;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: block;
  transition: 300ms;
}

.btn4:hover::before,
a.btn4:hover::before {
  left: 0;
  top: 0;
}
.btn4::after,
a.btn4::after {
  content: "";
  background-color: transparent;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: block;
  border: 1px solid var(--color-accent);
}

.btn5,
a.btn5 {
  outline: none;
  font-weight: 600;
  font-size: 14px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: var(--color-white);
  opacity: 1;
  background-color: var(--color-accent);
  padding: 10px 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
}
.btn5:hover,
a.btn5:hover {
  color: var(--color-white);
  background-color: var(--color-primary);
}
@media (min-width: 768px) {
  .btn1.large{
    font-size: 18px;
    padding: 15px 40px;
  }
  .btn2.large{
    font-size: 18px;
    padding: 15px 40px;
  }
  .btn3.large{
    font-size: 18px;
    padding: 15px 40px;
  }
  .btn4.large{
    font-size: 18px;
    padding: 15px 40px;
  }
  .btn5.large{
    font-size: 18px;
    padding: 15px 40px;
  }
}
.lineabove,
.line-above,
.lineupper,
.line-upper {
  display: inline-block;
}
.lineabove::before,
.line-above::before,
.lineupper::before,
.line-upper::before {
  content: "";
  width: 75px;
  height: 12px;
  margin-bottom: 10px;
  display: block;
  background: url(assets/images/line.gif);
  background-size: 100% 100%;
}
.text-center.lineabove::before,
.text-center.line-above::before,
.text-center.lineupper::before,
.text-center.line-upper::before,
.text-center .lineabove::before,
.text-center .line-above::before,
.text-center .lineupper::before,
.text-center .line-upper::before {
  margin-left: auto;
  margin-right: auto;
}

.lineunder:after,
.line-under:after {
  content: "";
  width: 175px;
  height: 1px;
  display: block;
  background: var(--color-primary);
  margin-top: 15px;
  margin-bottom: 30px;
}
.lineunder2:after {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background: var(--color-primary);
  margin-top: 15px;
  margin-bottom: 30px;
}
.text-center.lineunder:after,
.text-center.line-under:after,
.text-center .lineunder:after,
.text-center .line-under:after {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .text-center.text-md-start.lineunder:after,
  .text-center.text-md-start.line-under:after,
  .text-center.text-md-start .lineunder:after,
  .text-center.text-md-start .line-under:after {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (min-width: 1200px) {
  .text-center.text-lg-start.lineunder:after,
  .text-center.text-lg-start.line-under:after,
  .text-center.text-lg-start .lineunder:after,
  .text-center.text-lg-start .line-under:after {
    margin-left: 0;
    margin-right: 0;
  }
}
.lineright:after,
.line-right:after,
.lineend:after,
.line-end:after {
  content: "";
  width: 175px;
  height: 1px;
  display: inline-block;
  background: var(--color-primary);
  margin-left: 10px;
}
.lineboth {
  position: relative;
  display: inline-block;
}
.lineboth::before {
  content: "";
  position: absolute;
  top: 19px;
  right: 100%;
  width: 66px;
  height: 11px;
  display: inline-block;
  background: url(assets/images/style5.png);
  margin-right: 15px;
}
.lineboth::after {
  content: "";
  position: absolute;
  top: 19px;
  left: 100%;
  width: 66px;
  height: 11px;
  display: inline-block;
  background: url(assets/images/style5.png);
  transform: rotate(-180deg);
  margin-left: 15px;
}
@media (max-width: 575px) {
  .lineboth::before,
  .lineboth::after {
    display: none;
  }
}
/* Start */
body {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  font-style: normal;
  font-family: var(--font-default);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  color: var(--color-default);
  background-color: #fff;
}
table {
  color: var(--color-default) !important;
}
.wrapper {
  width: 90%;
  margin: 0 auto;
}
.narrow {
  width: 90%;
  margin: 0 auto;
  max-width: 780px;
}
.link1 {
  color: var(--color-white);
}
.link1:hover {
  color: var(--color-white);
}
.link1 > * {
  vertical-align: middle;
}
.link1 span {
  max-width: 0;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  transition: 600ms linear;
}
.link1:hover span {
  max-width: 150px;
}
.link1container:hover .link1 span {
  max-width: 150px;
}
.signature > div img {
  transition: 600ms linear;
  width: 120px;
}
.signature > div:hover .link1 span {
  max-width: 150px;
}
.signature > div:hover img {
  filter: saturate(3);
}
.signature > div {
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 20px;
}
.signature > div .link1 {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.spborder > div {
  border-right: 1px solid hsla(0, 0%, 50%, 0.2);
}
.spborder > div:nth-child(4n) {
  border-right: none;
}

.bg-dark input[type="submit"],
.bg-dark .button {
  background-color: var(--color-primary) !important;
}
.bg-dark input[type="submit"]:hover,
.bg-dark .button:hover {
  background-color: var(--color-secondary) !important;
}

.button.reverse {
  background-color: var(--color-primary) !important;
  opacity: 1;
}
.button.reverse:hover {
  background-color: var(--color-secondary) !important;
  opacity: 1;
}

.quickicons {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: var(--color-primary);
  display: block;
  color: var(--color-white);
  text-align: center;
}

.fixedicons {
  position: fixed;
  top: 45%;
  right: 0;
  z-index: 999;
}
.page-template-template-service .fixedicons {
  display: none;
}
@media (max-width: 991px) {
  .fixedicons {
    display: block;
  }
}
@media (min-width: 992px) {
  .fixedmobile {
    display: none;
  }
}
@media (max-width: 991px) {
  .fixedmobile {
    position: fixed;
    z-index: 1000;
    bottom: 0;
    width: 100%;
    text-align: center;
    display: flex;
  }
  .fixedmobile div {
    width: 50%;
  }
  .fixedmobile a.link99 {
    padding: 10px 0;
    display: block;
    background: var(--color-secondary);
    color: var(--color-primary);
    transition: 600ms;
  }
  .fixedmobile a.link99:hover {
    background: var(--color-dark);
    color: var(--color-white);
  }
  .fixedmobile a.link100 {
    padding: 10px 0;
    display: block;
    background: var(--color-accent);
    color: var(--color-white);
    transition: 600ms;
  }
  .fixedmobile a.link100:hover {
    background: var(--color-dark);
    color: var(--color-white);
  }
}

.white-image {
  filter: brightness(0) invert(1);
}

.list1 {
  border-left: 5px solid #000;
  padding-left: 35px;
  margin-bottom: 50px !important;
}

/**/
#header {
  font-size: 16px;
}
.header_left {
  width: 220px;
}
.header_left img {
  width: 100%;
  height: auto;
}
.header_middle {
 width: calc(100% - 490px);
}
.header_right {
 width:270px;
}
img.white {
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 1199px) {
  .header_left {
    width: 200px;
  }
  .header_middle {
    display: none;
  }
  .header_right {
    width:calc(100% - 200px);
  }
}

.custom-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}

.woocommerce-Tabs-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.woocommerce-Tabs-panel ul li {
  margin: 0 0 5px 0;
  padding: 0 0 0 25px;
  position: relative;
}
.woocommerce-Tabs-panel ul li:before {
  content: "✔";
  position: absolute;
  top: 1px;
  left: 0;
  color: green;
}
.product_meta {
  border-top: 1px solid #cfc8d8;
  padding-top: 20px;
  margin-top: 20px;
}
/*WOOCOMMERCE PRODUCT TABS*/
.woocommerce div.product .woocommerce-tabs ul.tabs {
  list-style: none;
  padding: 0 0 0 0;
  margin: 0;
  overflow: hidden;
  position: relative;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: none;
  background-color: #121b24;
  color: #fff;
  display: inline-block;
  position: relative;
  z-index: 0;
  border-radius: 0;
  margin: 0;
  padding: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  display: inline-block;
  padding: 7px 25px;
  font-weight: normal;
  color: #fff;
  text-decoration: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
  text-decoration: none;
  color: #fff;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background: var(--color-accent);
  color: #fff;
  z-index: 2;
  border-bottom-color: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: inherit;
  text-shadow: inherit;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active::before {
  box-shadow: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active::after {
  box-shadow: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::after,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before {
  border: none;
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  content: "";
  box-sizing: border-box;
  display: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::before {
  left: 0;
  border-bottom-right-radius: 0;
  border-width: 0;
  box-shadow: none;
  display: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
  right: 0;
  border-bottom-left-radius: 0;
  border-width: 0;
  box-shadow: none;
  display: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  position: absolute;
  content: "";
  width: 0;
  bottom: 0;
  left: 0;
  border-bottom: 0;
  z-index: 1;
  display: none;
}
.woocommerce div.product .woocommerce-tabs .panel {
  margin: 0 0 2em;
  padding: 30px;
  border: 1px solid #cfc8d8;
}
h1.product_title.entry-title {
  color: var(--color-primary);
}
.related.products h2 {
  color: var(--color-primary);
}


ul.products li.product a h2 {
  color: #6b6668 !important;
  transition: 300ms;
}
ul.products li.product a:hover h2 {
  color: var(--color-primary) !important;
}
.product .summary.entry-summary {
  margin-top: 30px;
}

.woocommerce-products-header__title.page-title {
  color: var(--color-primary) !important;
  margin-bottom: 20px !important;
}

@media (min-width: 992px) {
  .fixedmobile {
    display: none;
  }
}
@media (max-width: 991px) {
  body {
    padding-bottom: 50px;
  }
  .fixedmobile {
    position: fixed;
    z-index: 1000;
    bottom: 0;
    width: 100%;
    text-align: center;
    display: flex;
  }
  .fixedmobile div {
    width: 50%;
  }
  .fixedmobile a.link99 {
    padding: 10px 0;
    display: block;
    background: var(--color-secondary);
    color: var(--color-primary);
    transition: 600ms;
  }
  .fixedmobile a.link99:hover {
    background: var(--color-dark);
    color: var(--color-white);
  }
  .fixedmobile a.link100 {
    padding: 10px 0;
    display: block;
    background: var(--color-primary);
    color: var(--color-white);
    transition: 600ms;
  }
  .fixedmobile a.link100:hover {
    background: var(--color-dark);
    color: var(--color-white);
  }
}

.style1{
  position: relative;
  z-index: 1;
  display: inline-block;
}
.style1::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 10px;
  z-index: -1;
  border-radius: 5px;
  background-color: #fff;
}

.box1holder{  
  padding-left: 40px;
  padding-right: 40px;
}
.box1{
  position: relative;
  z-index: 0;
  background-color: #fff;  
  padding: 50px 50px 25px 50px;
  height: 100%;
  border-radius: 46%;
  text-align: center;
}
.box1::after{
  content: "";
  position: absolute;
  z-index: -1;
  top: -10px;
  left: -10px;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 46%;
  border: 1px solid var(--color-primary);
}
.box1 a svg{
  width: 50px;
  height: 50px;
  fill:var(--color-secondary);
}
@media screen and (min-width: 992px) {
  .box1holder{  
    margin-top: 50px;
  }
}

.hotspot {
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  min-height: 800px;
  border-radius: 300px 300px 0 0;
  position: relative;
}
.hotspot .spot {
  position: absolute;
  display: flex;
  align-items: center; /* Vertically center content with SVG */
  gap: 10px;
}

.hotspot .spot svg {
  width: 50px;
  height: 50px;
  cursor: pointer;
}
@media (max-width: 767px) {
	.hotspot .spot {
	  display: block;
	}
  .hotspot .spot .hotcontent::before {
    left: 10px;
    top: -8px;
    transform: translateY(0);
    transform: rotate(-30deg);
  }
}
/* Tooltip styling */
.hotspot .spot .hotcontent {
  position: relative;
  width: 190px;
  background-color: white;
  padding: 10px 10px 10px 15px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transition: 300ms;
  pointer-events: none;
  border-radius: 6px;
}

/* Show tooltip only on SVG hover */
.hotspot .spot svg:hover + .hotcontent {
  opacity: 1;
  pointer-events: auto;
}

/* Triangular arrow pointing left */
.hotspot .spot .hotcontent::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 10px solid white;
}
.hotspot .spot1 {
  top: 15%;
  left: 40%;
}

.hotspot .spot2 {
  top: 54%;
  left: 42%;
}

.exp10{
  background-color: var(--color-secondary);
  padding: 50px 50px;
  border-radius: 0 0 250px 250px;
  max-width: 320px;
}
.exp11{
  max-width: 600px;
}
.exp12{
  background-color: #fff;
  padding:30px;
  height: 100%;
}
.exp13{
  background-color: var(--color-primary);
  padding:30px;
  height: 100%;
  margin-bottom: 30px;
  color: #fff;
}
section.related.products{
  width: 100%;
  clear: both;
}

.custom-products-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0;
}
.custom-products-grid .custom-product-item{
    width:31%;
}
@media screen and (max-width: 991px) {
  .custom-products-grid .custom-product-item{
      width:48%;
      margin-bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  .custom-products-grid .custom-product-item{
      width:100%;
  }
  .custom-products-grid{
    text-align: center;
  }
}


/* WooCommerce star rating CSS fallback */
.custom-products-grid .star-rating {
  display: inline-block;
  font-size: 1em;
  color: transparent;
  line-height: 1;
  position: relative;
  overflow: hidden;
  vertical-align: middle;
  width: 5em; /* 5 stars */
  height: 1em;
  background: url("data:image/svg+xml;utf8,<svg fill='%2375b0b2' stroke='%23ccc' stroke-width='1' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><polygon points='12 2 15 8.6 22 9.3 17 14.1 18.3 21.9 12 18 5.7 21.9 7 14.1 2 9.3 9 8.6 12 2'/></svg>") repeat-x 0 0;
  background-size: 1em 1em;
}
.custom-products-grid .star-rating span {
  display: none;
  height: 100%;
  background: url("data:image/svg+xml;utf8,<svg fill='%2375b0b2' stroke='%2375b0b2' stroke-width='1' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><polygon points='12 2 15 8.6 22 9.3 17 14.1 18.3 21.9 12 18 5.7 21.9 7 14.1 2 9.3 9 8.6 12 2'/></svg>") repeat-x 0 0;
  background-size: 1em 1em;
  width: 0;
}

h3.custom-product-title{
  margin-bottom: 15px;
}
ins{
  text-decoration: none;
}
ul#AreasMenu{
	margin:0;
	padding:0;
	list-style:none;
}
ul#AreasMenu li{
	margin:0 0 10px 0;
	padding:0;
}