@charset "utf-8";
/* CSS Document */

body {
    font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    color: #000;
    background-color: #FFFFFF;
    background-image: url(bg.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center top;
	background-size: cover;
}


#popupDiv {
	width: 960px;
    display: none;
    color:#000 !important;
    margin: 8px auto 2px auto !important;
    padding: 5px 5px 8px 5px !important;
    -webkit-border-radius:  5px 5px 5px 5px;
    -moz-border-radius: 5px 5px 5px 5px !important ;
    border-radius: 5px 5px 5px 5px;
    background-color:rgba(100%,100%,100%,1) !important;
    border-width: 1px !important;
    border-color: rgba( 0, 20, 45, .5) !important;
    border-style: solid !important;
    color: rgba( 0%,0%,0%,1) !important;
    box-shadow: 2px 2px 2px rgba(0%,0%,0%,0.2) !important;
}


div#countdownto {
    /*display:none;*/;
}

#dg {
    width: 225px;
    border: 1px solid blue;
}

#dg h5 {
    margin: 1px;
    background: #07da08;
    cursor: pointer;
    text-decoration: underline;
    text-align: center;
}

#dg p {
    margin: 10px 3px 0px 3px;
    background: #d7d8fe;
}

div#home {
    float: left;
    position: fixed;
    background-color: #FFF;
    display: block;
    width: 700px;
    margin: 0 auto;
    padding: 1em;
    border: 1px solid #000000;
}

div#profil {
    position: fixed;
    background-color: #FFF;
    display: none;
    float: left;
    width: 700px;
    margin: 0 auto;
    padding: 1em;
    border: 1px solid #000000;
}

div#sheet {
    position: fixed;
    background-color: #FFF;
    display: none;
    float: left;
    width: 700px;
    margin: 0 auto;
    padding: 1em;
    border: 1px solid #000000;
}

div#travel {
    position: fixed;
    background-color: #FFF;
    display: none;
    float: left;
    width: 700px;
    margin: 0 auto;
    padding: 1em;
    border: 1px solid #000000;
}

div#shop {
    position: fixed;
    background-color: #FFF;
    display: none;
    float: left;
    width: 700px;
    margin: 0 auto;
    padding: 1em;
    border: 1px solid #000000;
}

div#missions {
    position: fixed;
    background-color: #FFF;
    display: none;
    float: left;
    width: 700px;
    margin: 0 auto;
    padding: 1em;
    border: 1px solid #000000;
}

div#training {
    position: fixed;
    background-color: #FFF;
    display: none;
    float: left;
    width: 700px;
    margin: 0 auto;
    padding: 1em;
    border: 1px solid #000000;
}

div#arena {
    position: fixed;
    background-color: #FFF;
    display: none;
    float: left;
    width: 700px;
    margin: 0 auto;
    padding: 1em;
    border: 1px solid #000000;
}

div#tournament {
    position: fixed;
    background-color: #FFF;
    display: none;
    float: left;
    width: 700px;
    margin: 0 auto;
    padding: 1em;
    border: 1px solid #000000;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl {
 /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
    a: link {
	color: #42413C;
    text-decoration: underline;
 /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #6E6C64;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

/* ~~this fixed width container surrounds the other divs~~ */


/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
.header {
	background-color: #ADB96E;
}

/* ~~ These are the columns for the layout. ~~ 

1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.

3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.

4) If you prefer your nav on the right instead of the left, simply float these columns the opposite direction (all right instead of all left) and they'll render in reverse order. There's no need to move the divs around in the HTML source.

*/

h1 {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:16px;
	font-weight:bold;
	margin:0;
	padding:0;
	}

hr {
	border:none;
	border-top:1px solid #CCCCCC;
	height:1px;
	margin-bottom:25px;
	}
	
	
#tabs {
	float:left;
	width:670px;
	font-size:93%;
	border-bottom:1px solid #2763A5;
	line-height:normal;
	}

#tabs ul {
	margin:0;
	padding:10px 10px 0 50px;
	list-style:none;
	}

#tabs li {
	display:inline;
	margin:0;
	padding:0;
	}

#tabs a {
	float:left;
	background:url("tableft.gif") no-repeat left top;
	margin:0;
	padding:0 0 0 4px;
	text-decoration:none;
	}

#tabs a span {
	float:left;
	display:block;
	background:url("tabright.gif") no-repeat right top;
	padding:5px 15px 4px 6px;
	color:#FFF;
	}

/* Commented Backslash Hack hides rule from IE5-Mac \*/
#tabs a span {float:none;}

/* End IE5-Mac hack */
#tabs a:hover span {
	color:#FFF;
	}

#tabs a:hover {
	background-position:0% -42px;
	}

#tabs a:hover span {
	background-position:100% -42px;
	}
	
	
.logo {	
	width: 1100px;
	height: 270px;
	margin-top: 15px;
	margin-right: auto;
	/*margin-bottom: 15px;*/
	margin-left: auto;
	/*background-color: #FFFFFF;*/
	background-image: url(http://main.jingames.net/wp-content/uploads/2015/01/cropped-header1.png);
	/*background-repeat: no-repeat;*/
	/*background-attachment: fixed;*/
	/*background-position: center top;*/
	
}
.container {
	width: 1141px;
	/*margin-top: 15px;*/
	margin-right: auto;
	/*margin-bottom: 15px;*/
	margin-left: auto;
	/*padding: 0.3em;*/
	background-color: #FFFFFF;
	margin-top:55px;
	overflow: hidden
}
.menucontainer {
	width: 1141px;
	margin-top: 15px;
	margin-right: auto;
	/*margin-bottom: 15px;*/
	margin-left: auto;
	/*padding: 0.3em;*/
	/*background-color: #FFFFFF;*/
}
.adtop {
	margin-right: 15px;
	margin-left: auto;
	float: left;
	width: 728px;
	padding-bottom: 10px;
}
.adleft {
	float: left;
	width: 300px;
	padding-bottom: 10px;
}
.adright {
	float: left;
	width: 320px;
	padding-bottom: 10px;
}
.mainmenu {
	margin-right: 5px;
	margin-bottom: 15px;
	margin-left: 5px;
	padding: 5px;
	padding-top: 15px;
	padding-bottom: 15px;
	width: 1141px;
	float: left;
}
.content {
	/*background-color: #FFFFFF;*/
  	/*background-color:rgba(255, 255, 255, 0.5)*/
	/*margin-top: 15px;*/
	/*margin-right: 5px;
	margin-bottom: 15px;
	margin-left: 5px;*/
	padding: 5px;
	padding-top: 15px;
	padding-bottom: 15px;
	width: 760px;
	float: left;
}
.leftcontent {
	float:left;
	width:760px;
	font-size:93%;
	line-height:normal;
	margin: 10px;
}
.rightcontent {
	float: left;
	width: 341px;
	/*padding-bottom: 10px;*/
	margin: 10px;
}
	
.content2 {
  	/*background-color:rgba(0, 0, 0, 0.5)*/
	padding: 10px 0;
	width: 650px;
	float: left;
}

.sidebar1 {
	float: left;
	width: 180px;
	background-color: #EADCAE;
	padding-bottom: 10px;
}
.content-news {

	width: 390px;
	float: left;
}
.content-charinfo {

	width: 390px;
	float: left;
}

.submenu {
	float: left;
	width: 760px;
	/*height: 100px;*/
	padding-top: 10px;
	padding-bottom: 10px;
}
.socialmain {
	float:left;
	position: relative;
	height: 40px;
	width: 37px;
}
.socialslideup {
	position: absolute;
	width: 100%;
	bottom: 5px;
	max-height: 80%;	
	/*color: #FFF;*/
	transition: max-height 250ms ease-in;
	/*background-color: #666666;*/
	text-align: center;
}
.socialmain:hover > .socialslideup {
    max-height: 100%;
}

/*.social social1 {
  top: 3px;
  -webkit-transition: top 1s ease;
     -moz-transition: top 1s ease;
       -o-transition: top 1s ease;
      -ms-transition: top 1s ease;
          transition: top 1s ease;
}
 
.social social1:hover {
  top: -3px;
}*/

/* =Menu -PRIMARY
-------------------------------------------------------------- */

#access {
	display: block;
	float: left;
	margin: 0 auto;
	margin-top:10px;
}

#access .menu-header, div.menu {
margin:0 6px;
}

#access ul {
margin-bottom:0px;
}

 #access  ul li.current_page_item,  #access ul li.current-menu-item  {
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
background:#fff;
}


#access a {
	display:block;
	color: #5F5B5B;
	text-decoration: none;
	padding:0.2em 1.2em;
	font-size:14px;
}

#access ul li {
display:block;
float:left;
background:#FAFAFA;
-webkit-border-radius:7px 7px 0 0;
-moz-border-radius:7px 7px 0 0;
border-radius:7px 7px 0 0;
margin:0 3px;
padding:3px 0;
-moz-box-shadow:0 -3px 4px rgba(0,0,0,0.1) inset;
-webkit-box-shadow:0 -3px 4px rgba(0,0,0,0.1) inset;
box-shadow:0 -3px 4px rgba(0,0,0,0.1) inset;
white-space: nowrap;
}

#access a:hover {
	color:#0C85CD ;
}

#access ul ul {
	display: none;
	position: absolute;
	clear:both;
	z-index: 99999;
	margin-left:0px;
	-moz-box-shadow:0 10px 10px rgba(0, 0, 0, 0.3) ;
	-webkit-box-shadow:0 10px 10px rgba(0, 0, 0, 0.3);
	box-shadow:0 10px 10px rgba(0, 0, 0, 0.3);
}
#access ul ul li { /* level 2 */
	  margin:0;
      width: 100%; /* submenu width fix */
      border-bottom: 1px solid rgba(220,220,220,0.3);
	position:relative;
	background:#FFF;
	-webkit-border-radius: 0;
	-moz-border-radius:0;
	border-radius: 0;
	-moz-box-shadow:none ;
	-webkit-box-shadow:none ;
	box-shadow:none;
	display:block;
	float:left;
	clear:both;
	min-width:150px;
}


#access ul ul ul {
position:absolute;
	left: 100%;
	top: 0px;
	margin:0;
}


#access ul ul ul li { /* level 3 */
      border: 0;
     width: 100%;
	  display: block;
      float: none;
      border-bottom: 1px solid rgba(220,220,220,0.3);
 }


#access ul ul a, #access ul ul ul a {
	display:block;
	float:none;
	color:#5F5B5B;
	width:100% ;
	padding-top: 0.6em ;
	padding-bottom: 0.6em ;
	}

#access ul ul li:hover, #access ul ul ul li:hover {
	background:#FCFCFC ;
	}



#access li:hover > a {
	color:#0E85CD ;
}

#access ul ul :hover > a {
	color:#0E85CD;
}

#access ul li > ul {
	display: none;
}

#access ul li:hover > ul {
	display: block;
}
#access ul li.current_page_item > a,
#access ul li.current-menu-item > a{

	color: #000 !important;
}

#access ul ul li.current_page_item ,
#access ul ul li.current-menu-ancestor,
#access ul ul li.current-menu-item ,
#access ul ul li.current-menu-parent {
	color: #000 !important;
	background:#FFF !important;
}


* html #access ul li.current_page_item a,
* html #access ul li.current-menu-ancestor a,
* html #access ul li.current-menu-item a,
* html #access ul li.current-menu-parent a,
* html #access ul li a:hover {
	color: #5F5B5B ;
}
*{
    font-family: Segoe UI,Arial,sans-serif;
}

/*
.widget-area ul {
	list-style: none !important;
	margin-left: 0;
	list-style-image:none;
}
.widget-area ul ul {
	list-style: none !important;
	margin-left: 0;
}

.widget-area ul li{
	background-image: none;
	margin-left: 0;
	list-style-image:none;
}
.widget-area ul ul li{
	background:url(images/bullets/arrow_white.png)  left 8px no-repeat;
	margin:4px 3px;
	display:block;
	float:none;
	width:auto;
	padding:3px 0 0 12px;
}
.widget-container {
	margin: 0 0 18px 0;
}
.widget-title {
	color: #2EA5FD;
	font-size:16px;
	padding:4px 0;
	padding-left:15px;
	text-align:left;
	margin-bottom:10px;
	background-color:#333;
	margin-left:-10px;
	padding-right:10px;
	width:100%;
	-moz-border-radius:10px 0 0 0;
	-webkit-border-radius:10px 0 0 0;
	border-radius:10px 0 0 0;

}*/
/* Main sidebars */
#main .widget-area ul {
	margin-left: 0;
	padding: 0;
}
#main .widget-area ul ul {
	border: none;
	margin-left: 0px;
	padding: 0;
}
#main .widget-area ul.xoxo{
padding-right:10px;
}

/* =Morethings -ANOTHER
-------------------------------------------------------------- */
	
	
/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol { 
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}

/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
ul.nav {
	list-style: none; /* this removes the list marker */
	border-top: 1px solid #666; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
	margin-bottom: 15px; /* this creates the space between the navigation on the content below */
}
ul.nav li {
	border-bottom: 1px solid #666; /* this creates the button separation */
}
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 5px 5px 5px 15px;
	display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
	width: 160px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
    text-decoration: none;
    background-color: #C6D580;
}

ul.nav a:hover, ul.nav a:active, ul.nav a:focus {
 /* this changes the background and text color for both mouse and keyboard navigators */
    background-color: #ADB96E;
    color: #FFF;
}

/* ~~ The footer ~~ */
.footer {
    width: 1100px;
    background-color: #171717;
  	/*background-color:rgba(255, 255, 255, 0.5)*/
	/*margin-top: 15px;*/
    margin-right: auto;
    margin-bottom: 15px;
    margin-left: auto;
    margin-top: 15px;
	padding: 10px;
    /*float: left;*/
	/*padding: 10px 0;*/
	/*background-color: #FFFFFF;*/
	/*position: relative;/* this gives IE6 hasLayout to properly clear */
    */
	/*clear: both; /* this clear property forces the .container to understand where the columns end and contain them */*/;
}

/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {
  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
    float: right;
    margin-left: 8px;
}

.fltlft {
 /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
    float: left;
    margin-right: 8px;
}

.clearfloat {
 /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
    clear: both;
    height: 0;
    font-size: 1px;
    line-height: 0px;
}

.btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.428571429;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.btn:focus {
    outline: thin dotted #333;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

.btn:hover,.btn:focus {
    color: #333;
    text-decoration: none;
}

.btn:active,.btn.active {
    background-image: none;
    outline: 0;
    -webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,0.125);
    box-shadow: inset 0 3px 5px rgba(0,0,0,0.125);
}

.btn.disabled,.btn[disabled],fieldset[disabled] 
.btn {
    pointer-events: none;
    cursor: not-allowed;
    opacity: .65;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-primary {
    color: #fff;
    background-color: #FAFAFA;
    border-color: #357ebd;
}

.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.open .dropdown-toggle.btn-primary {
    color: #fff;
    background-color: #FCFCFC;
    border-color: #285e8e;
}

.btn-primary:active,.btn-primary.active,.open .dropdown-toggle.btn-primary {
    background-image: none;
}

.btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] 
.btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] 
.btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] 
.btn-primary:focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] 
.btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] 
.btn-primary.active {
    background-color: #FAFAFA;
    border-color: #357ebd;
}

a.thick {
    font-weight: bold;
}

a.likes {
    color: rgb(38,127,0);
}

a.dislikes {
    color: rgb(200,0,0);
}

a.ranks {
    text-align: center;
}

td.border {
    border: 1px solid black;
}

td.ranks {
    text-align: center;
}

td, th {
    vertical-align: top;
}

.topmenu {
overflow:hidden;
	}

.topmenu ul{
	margin:0;
	padding:0;
	float:right;
}

.topmenu ul li{
	display:block;
	float:left;
	margin:3px 5px;
}

/* Style HTML5 tags for IE8 and lower */
header
,nav
,section
,article
,aside
,footer
,hgroup
{
display: block;
}

.tinynav {
display:block;
float:none;
margin:0 auto;
display:none;
min-width:200px;
width:100%;
padding:10px;
margin-bottom:8px;
}

.tinynav  option {

}

.topmenu 
a:link {
    color: #0D85CC;text-decoration:none;
}
.topmenu 
a:visited {
	color: #0D85CC;text-decoration:none;;
}
.topmenu 
a:active 
a:hover {
    color: #12a7ff;
}

.topmenu{
	color: #666;
	font-size: 12px;
	line-height: 18px;

}




@import url(http://fonts.googleapis.com/css?family=Oxygen+Mono);
/* Starter CSS for Menu */
#cssmenu {
  padding: 0;
  margin: 0;
  border: 0;
  width: auto;
}
#cssmenu ul,
#cssmenu li {
  list-style: none;
  margin: 0;
  padding: 0;
}
#cssmenu ul {
  position: relative;
  z-index: 597;
}
#cssmenu ul li {
  float: left;
  min-height: 1px;
  vertical-align: middle;
}
#cssmenu ul li.hover,
#cssmenu ul li:hover {
  position: relative;
  z-index: 599;
  cursor: default;
}
#cssmenu ul ul {
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 598;
  width: 100%;
}
#cssmenu ul ul li {
  float: none;
}
#cssmenu ul ul ul {
  top: 0;
  left: 190px;
  width: 190px;
}
#cssmenu ul li:hover > ul {
  visibility: visible;
}
#cssmenu ul ul {
  bottom: 0;
  left: 0;
}
#cssmenu ul ul {
  margin-top: 0;
}
#cssmenu ul ul li {
  font-weight: normal;
}
#cssmenu a {
  display: block;
  line-height: 1em;
  text-decoration: none;
}
/* Custom CSS Styles */
#cssmenu {
 background: #FFFFFF;/* this is the background*/
  border-bottom: 4px solid #1b9bff;
  font-family: 'Oxygen Mono', Tahoma, Arial, sans-serif;
  font-size: 12px;
}
#cssmenu > ul {
  *display: inline-block;
}
#cssmenu:after,
#cssmenu ul:after {
  content: '';
  display: block;
  clear: both;
}
#cssmenu ul {
  text-transform: uppercase;
}
#cssmenu ul ul {
  border-top: 4px solid #1b9bff;
  text-transform: none;
  min-width: 190px;
}
#cssmenu ul ul a {
  background: #1b9bff;
  color: #ffffff;
  border: 1px solid #0082e7;
  border-top: 0 none;
  line-height: 150%;
  padding: 16px 20px;
  font-size: 12px;
}
#cssmenu ul ul ul {
  border-top: 0 none;
}
#cssmenu ul ul li {
  position: relative;
}
#cssmenu ul ul li:first-child > a {
  border-top: 1px solid #0082e7;
}
#cssmenu ul ul li:hover > a {
  background: #4eb1ff;
  color: #ffffff;
}
#cssmenu ul ul li:last-child > a {
  -moz-border-radius: 0 0 3px 3px;
  -webkit-border-radius: 0 0 3px 3px;
  border-radius: 0 0 3px 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -moz-box-shadow: 0 1px 0 #1b9bff;
  -webkit-box-shadow: 0 1px 0 #1b9bff;
  box-shadow: 0 1px 0 #1b9bff;
}
#cssmenu ul ul li:last-child:hover > a {
  -moz-border-radius: 0 0 0 3px;
  -webkit-border-radius: 0 0 0 3px;
  border-radius: 0 0 0 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
#cssmenu ul ul li.has-sub > a:after {
  content: '+';
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -8px;
}
#cssmenu ul li:hover > a,
#cssmenu ul li.active > a {
  background: #1b9bff;
  color: #ffffff;
}
#cssmenu ul li.has-sub > a:after {
  content: '+';
  margin-left: 5px;
}
#cssmenu ul li.last ul {
  left: auto;
  right: 0;
}
#cssmenu ul li.last ul ul {
  left: auto;
  right: 99.5%;
}
#cssmenu a {
  background: #FFFFFF;/* this is the background*/
  color: #333333;/* this is the font color*/
  padding: 0 20px;
}
#cssmenu > ul > li > a {
  line-height: 48px;
  font-size: 12px;
}
    