﻿@import url("font.css");
@import url("flexnav.css");
@import url("responsive.css");

/* html-reset.css */

/**
 * @file
 * HTML Element Styling
 *
 * Ok, I admit it. I fooled you. This isn't a "reset" stylesheet. Instead this
 * is the place where you should set (not reset) the default styling for all
 * HTML elements.
 *
 * @see http://meiert.com/en/blog/20080419/reset-style-sheets-are-bad/
 * @see http://snook.ca/archives/html_and_css/no_css_reset/
 */


/*
 * Fonts
 *
 * Our font size and line height declarations are based on the following ALA
 * article:
 *   http://www.alistapart.com/articles/howtosizetextincss
 *
 * All modern browsrs use a 16px default font size. Specifying the font-size
 * and line-height in ems (relative to the 16px default font) allows the user
 * to resize the font in the browser and produces the most consistent results
 * across different browsers.
 */
body {
  font-size: 100%; /* Fixes exaggerated text resizing in IE6 and IE7 */
  /*-webkit-filter: grayscale(100%) !important;*/
}

#skip-link,
#page {
  /*
   * To use a 12px font size on the page, delete the 14px declarations.
   * to use a 14px font size on the page, delete the 12px declarations.
   */

  /* Use a 12px base font size with a 16px line height */
  font-size: 0.75em; /* 16px x .75 = 12px */
  line-height: 1.333em; /* 12px x 1.333 = 16px */

  /* Use a 14px base font size with a 18px line height */
  font-size: 0.875em; /* 16px x .875 = 14px */
  line-height: 1.286em; /* 14px x 1.286 = 18px */
}

body,
caption,
th,
td,
input,
textarea,
select,
option,
legend,
fieldset {
  /* The following font family declarations are based on the Microsoft core web
   * fonts which are common fonts available on most computer systems. The DejaVu
   * fonts are commonly available on Linux systems where the MS fonts are less
   * common. Tahoma and Helvetica are also widely available.
   *
   * A user's web browser will look at the comma-separated list and will
   * attempt to use each font in turn until it finds one that is available
   * on the user's computer. The final "generic" font (sans-serif or serif)
   * hints at what type of font to use if the web browser doesn't find any
   * of the fonts in the list.

  font-family: "Times New Roman", Times, Georgia, "DejaVu Serif", serif;
  font-family: Times, "Times New Roman", Georgia, "DejaVu Serif", serif;
  font-family: Georgia, "Times New Roman", "DejaVu Serif", serif;

  font-family: Verdana, Tahoma, "DejaVu Sans", sans-serif;
  font-family: Tahoma, Verdana, "DejaVu Sans", sans-serif;
  font-family: Helvetica, Arial, "Nimbus Sans L", sans-serif;
  font-family: Arial, Helvetica, "Nimbus Sans L", sans-serif;

  font-family: "Courier New", "DejaVu Sans Mono", monospace;

   */

  font-family: Verdana, Tahoma, "DejaVu Sans", sans-serif;
}

pre,
code {
  font-size: 1.1em; /* Monospace fonts can be hard to read */
  font-family: "Courier New", "DejaVu Sans Mono", monospace;
}

/*
 * Headings
 */
h1 {
  font-size: 2em;
  line-height: 1.3em;
  margin-top: 0;
  margin-bottom: 0.5em; /* 0.5em is equavalent to 1em in the page's base font.
                           Remember, a margin specified in ems is relative to
                           the element's font-size, not to the pages' base
                           font size. So, for example, if we want a 1em margin
                           (relative to the base font), we have to divide that
                           length by the element's font-size:
                           1em / 2em = 0.5em */
}

h2 {
  font-size: 1.5em;
  line-height: 1.3em;
  margin-top: 0.667em; /* Equivalent to 1em in the page's base font: 1 / 1.5 = 0.667em */
  margin-bottom: 0.667em;
}

h3 {
  font-size: 1.3em;
  line-height: 1.3em;
  margin-top: 0.769em; /* Equivalent to 1em in the page's base font: 1 / 1.3 = 0.769 */
  margin-bottom: 0.769em;
}

h4,
h5,
h6 {
  font-size: 1.1em;
  line-height: 1.3em;
  margin-top: 0.909em; /* Equivalent to 1em in the page's base font: 1 / 1.1 = 0.909 */
  margin-bottom: 0.909em;
}

/*
 * Block-level elements
 */
p,
ul,
ol,
dl,
pre,
table,
fieldset {
  margin: 1em 0;
}

blockquote {
  margin: 1em 2em;
}

/*
 * Lists
 *
 * We need to standardize the list item indentation.
 */
ul,
ol {
  margin-left: 0;
  padding-left: 2em; /* LTR */
}

.block ul,
.item-list ul /* Drupal overrides */ {
  margin: 1em 0;
  padding: 0 0 0 2em; /* LTR */
}

ul ul, ul ol,
ol ol, ol ul,
.block ul ul, .block ul ol,
.block ol ol, .block ol ul,
.item-list ul ul, .item-list ul ol,
.item-list ol ol, .item-list ol ul {
  margin: 0;
}

li {
  margin: 0;
  padding: 0;
}

.item-list ul li /* Drupal override */ {
  margin: 0;
  padding: 0;
  list-style: inherit;
}
.block ul, .item-list ul {
	list-style: none;
}

ul.menu li,
li.expanded,
li.collapsed,
li.leaf /* Drupal override */ {
  margin: 0;
  padding: 0;
}

ul          { list-style-type: disc; }
ul ul       { list-style-type: circle; }
ul ul ul    { list-style-type: square; }
ul ul ul ul { list-style-type: circle; }
ol          { list-style-type: decimal; }
ol ol       { list-style-type: lower-alpha; }
ol ol ol    { list-style-type: decimal; }

dt {
  margin: 0;
  padding: 0;
}

dd {
  margin: 0 0 0 2em;
  padding: 0;
}

/*
 * Links
 *
 * The order of link states are based on Eric Meyer's article:
 * http://meyerweb.com/eric/thoughts/2007/06/11/who-ordered-the-link-states
 */
a:link {
	color: #8b008b;
}

a:visited {
}

a:hover,
a:focus {
}

a:active {
}

/*
 * Tables
 *
 * Drupal provides table styling which is only useful for its admin section
 * forms, so we override this default CSS. (We set it back in forms.css.)
 */
table {
  border-collapse: collapse;
  /* width: 100%; */ /* Prevent cramped-looking tables */
}

th,
thead th,
tbody th {
  text-align: left; /* LTR */
  padding: 0;
  border-bottom: none;
}

tbody {
  border-top: none;
}

/*
 * Abbreviations
 */
abbr {
  border-bottom: 1px dotted #666;
  cursor: help;
  white-space: nowrap;
}

abbr.created /* Date-based "abbreviations" show computer-friendly timestamps which are not human-friendly. */ {
  border: none;
  cursor: auto;
  white-space: normal;
}

/*
 * Images
 */
img {
  border: 0;
  height: auto;
  max-width: 100%;
}

/*
 * Horizontal rules
 */
hr {
  height: 1px;
  border: 1px solid #666;
}

/*
 * Forms
 */
form {
  margin: 0;
  padding: 0;
}

fieldset {
  margin: 1em 0;
  padding: 0.5em;
}

/* wireframes.css */

/**
 * @file
 * Wireframes Styling
 *
 * Add wireframes to the basic layout elements.
 */


.with-wireframes #header .section,
.with-wireframes #content .section,
.with-wireframes #navigation .section,
.with-wireframes .region-sidebar-first .section,
.with-wireframes .region-sidebar-second .section,
.with-wireframes #footer .section {
  margin: 1px;
  padding: 2px;
  border: 1px solid #ccc;
}

.with-wireframes .region-page-closure {
  margin-top: 1px;
  padding: 2px;
  border: 1px solid #ccc;
}

/* layout-liquid.css */

/**
 * @file
 * Layout Styling (DIV Positioning)
 *
 * Define CSS classes to create a table-free, 3-column, 2-column, or single
 * column layout depending on whether blocks are enabled in the left or right
 * columns.
 *
 * This layout is based on the Zen Columns layout method.
 *   http://drupal.org/node/201428
 *
 * Only CSS that affects the layout (positioning) of major elements should be
 * listed here.  Such as:
 *   display, position, float, clear, width, height, min-width, min-height
 *   margin, border, padding, overflow
 */


/*
 * Body
 */
body {
}

#page-wrapper,
.region-page-closure {
  /*min-width: 960px;*/ /* Don't allow the browser to make the site unreadable. */
}

#page {
}

/*
 * Header
 */
#header {
}

#header .section {
}

#search-box {
	/*float: right;*/
	clear: both;
}
#search-box #search-theme-form fieldset {
	border: none;
	margin: 0;
	padding-bottom: 0;
}
#search-box #search-theme-form legend {
	text-indent: -9999px;
	font-size: 0;
	height: 0;
	margin: 0;
	padding: 0;
}
#search-box #search-theme-form input.form-text {
	background-color: white;
    border: 1px solid #cccccc;
    border-radius: 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset;
    box-sizing: border-box;
    color: rgba(0, 0, 0, 0.75);
    display: block;
    font-size: 15px;
	width: 220px;
    height: 24px;
    margin: 0 10px 0 0;
    padding: 5px;
	float: left;
    transition: box-shadow 0.45s ease 0s, border-color 0.45s ease-in-out 0s;
}
#search-box #search-theme-form input.form-submit {
	background: url(../images/icon-search.png) no-repeat;
	width: 24px;
	height: 24px;
	border: none;
	text-indent: -9999px;
	font-size: 0;
	float: left;
	cursor: pointer;
}
#search-box #search-theme-form .form-radios {
	clear: both;
	display: block;
	margin: 0;
	padding: 6px 0 0 0;
}
/*#search-box #search-theme-form .form-radios .form-radio {
	margin-left: 0;
}*/
#search-box #search-theme-form .form-radios label {
	font-size: 13px;
	color: #ffffff;
	font-family: 'thaisans_neue_semibold';
}

.region-header {
  /*clear: both;*/ /* Clear the logo */
}

/*
 * Main (container for everything else)
 */
#main-wrapper {
  position: relative;
}

#main {
}

/*
 * Content
 */
#content {
  float: left; /* LTR */
  width: 100%;
  /*margin-left: 0;*/ /* LTR */
  /*margin-right: -100%;*/ /* LTR */ /* Negative value of #content's width + left margin. */
  padding: 0; /* DO NOT CHANGE. Add padding or margin to #content .section. */
  margin: 0;
}

#content .section,
.no-sidebars #content .section {
  margin: 0;
  padding: 0;
}

.sidebar-first #content .section {
  padding-left: 200px; /* LTR */ /* The width + left margin of .region-sidebar-first. */
  padding-right: 0; /* LTR */
}

.sidebar-second #content .section {
  padding-left: 0; /* LTR */
  padding-right: 200px; /* LTR */ /* The width + right margin of .region-sidebar-second. */
}

.two-sidebars #content .section {
  padding-left: 200px; /* The width + left margin of .region-sidebar-first. */
  padding-right: 200px; /* The width + right margin of .region-sidebar-second. */
}

.two-sidebars #content .section {
	float: right;
	max-width: 600px;
	width: 100%;
}

/*
 * Navigation
 */
#navigation {
  /*float: left;*/ /* LTR */
  /*width: 100%;*/
  /*margin-left: 0;*/ /* LTR */
  /*margin-right: -100%;*/ /* LTR */ /* Negative value of #navigation's width + left margin. */
  /*padding: 0;*/ /* DO NOT CHANGE. Add padding or margin to #navigation .section. */
  /*height: 2.3em;*/ /* The navigation can have any arbritrary height. We picked one
                    that is the line-height plus 1em: 1.3 + 1 = 2.3
                    Set this to the same value as the margin-top below. */
}

.with-navigation #content,
.with-navigation .region-sidebar-first,
.with-navigation .region-sidebar-second {
  margin-top: 2.3em; /* Set this to the same value as the navigation height above. */
}

#navigation .section {
	font-family: 'thaisans_neue_semibold';
	font-size: 15px;
}

#navigation ul /* Primary and secondary links */ {
  margin: 0;
  padding: 0;
  text-align: left; /* LTR */
}

#navigation li /* A simple method to get navigation links to appear in one line. */ {
  /*float: left;*/ /* LTR */
  /*padding: 0 10px 0 0;*/ /* LTR */
}

/*
 * First sidebar
 */
.region-sidebar-first {
  float: left; /* LTR */
  width: 200px;
  margin-left: 0; /* LTR */
  margin-right: -200px; /* LTR */ /* Negative value of .region-sidebar-first's width + left margin. */
  padding: 0; /* DO NOT CHANGE. Add padding or margin to .region-sidebar-first .section. */
}

.region-sidebar-first .section {
  margin: 0 20px 0 0; /* LTR */
  padding: 0;
}

/*
 * Second sidebar
 */
.region-sidebar-second {
  float: right; /* LTR */
  width: 200px;
  margin-left: -200px; /* LTR */ /* Negative value of .region-sidebar-second's width + right margin. */
  margin-right: 0; /* LTR */
  padding: 0; /* DO NOT CHANGE. Add padding or margin to .region-sidebar-second .section. */
}

.region-sidebar-second .section {
  margin: 0 0 0 20px; /* LTR */
  padding: 0;
}

/*
 * Footer
 */
#footer {
	/*background: #bf5fff;*/
	background: #C888FB;
	color: #ffffff;
	margin: 40px 0 0 0;
	padding: 0;
	/*font-size: 13px;*/
	font-size: 13.5px;
	clear: both;
}

#footer .section {
	margin: 0;
	padding: 10px 0;
	clear: both;
	background: #bf5fff;
}
#footer .section h2 {
	/*font-size: 14px;*/
	font-size: 16px;
	text-shadow: 3px 3px 6px #000000;
	color: #ffffff;
}
#footer a {
	color: #ffffff;
	text-decoration: none;
}

address {
	font-style: normal;
	margin: 5px 0 0 0;
}

#block-block-59 {
	margin: 0;
	padding: 0;
	width: 800px;
	float: left;
}

#block-counter-0 {
	width: 125px;
	float: left;
    margin-top: 11px;
}

/*
 * Closure
 */
.region-page-closure /* See also the #page-wrapper declaration above that this div shares. */ {
}

/*
 * Prevent overflowing content
 */
#header,
#content,
#navigation,
.region-sidebar-first,
.region-sidebar-second,
#footer,
.region-page-closure {
  overflow: visible;
  word-wrap: break-word; /* A very nice CSS3 property */
}

#navigation {
  /*overflow: hidden;*/ /* May need to be removed if using a dynamic drop-down menu */
}

/*
 * If a div.clearfix doesn't have any content after it and its bottom edge
 * touches the bottom of the viewport, Firefox and Safari will mistakenly
 * place several pixels worth of space between the bottom of the div and the
 * bottom of the viewport. Uncomment this CSS property to fix this.
 * Note: with some over-large content, this property might cause scrollbars
 * to appear on the #page-wrapper div.
 */
/*
#page-wrapper {
  overflow-y: hidden;
}
*/

/* page-backgrounds.css */

/**
 * @file
 * Page Background Styling
 *
 * The default layout method of Zen doesn't give themers equal-height columns.
 * However, equal-height columns are difficult to achieve and totally
 * unnecessary. Instead, use the Faux Columns method described in the following
 * ALA article:
 *   http://www.alistapart.com/articles/fauxcolumns/
 */


body {
}

#page-wrapper {
	/*max-width: 1000px;
	min-width: 320px;*/
	width: 1000px;
	margin: auto;
	padding: 0;
}

#page {
}

#header {
}

#top-right {
	float: right;
}
/*.lang-en #top-right {
	margin-right: 30px;
}*/
#access-view {
	margin: 0 0 0 8px;
}
#access-view h2 {
	font-family: 'thaisans_neue_semibold';
	font-weight: normal;
	font-size: 13px;
	float: left;
	margin: 0;
	padding: 0;
	color: #FFFFFF;
	line-height: normal;
	border: none;
}
.lang-en #access-view h2 {
	text-transform: uppercase;
}
#access-view ul.change, #access-view ul.change li {
	float: left;
	list-style: none;
	margin: 0;
	padding: 0 0 0 5px;
}
.lang-en #access-view ul.change {
	padding-left: 4px;
}
#access-view a {
	cursor: pointer;
    margin: 2px 1px;
	padding: 0;
	display: block;
	font-size: 0;
    text-indent: -9999px;
	line-height: normal;
	width: 16px;
	height: 16px;
	border-radius: 3px;
	position: relative;
	text-decoration: none;
}
#access-view a.fsactive {
	cursor: pointer;
}
#access-view a#defaultFont {
	background: #E5E5E5;
}
#access-view a#mediumFont {
	background: #E5E5E5;
}
#access-view a#largeFont {
	background: #E5E5E5;
}
#access-view a.white-style {
	background: #000000;
}
#access-view a.default-style {
	background: #FFFFFF;
	/*width: 14px;
	height: 14px;*/
	/*border: 1px solid #3a3a3a;*/
}
#access-view a.yellow-style {
	background: #000000;
}
#access-view a#defaultFont:after,
#access-view a#mediumFont:after,
#access-view a#largeFont:after {
	content: 'ก';
	color: #808080;
    text-align: center;
    text-indent: 0;
	display: block;
}
.lang-en #access-view a#defaultFont:after,
.lang-en #access-view a#mediumFont:after,
.lang-en #access-view a#largeFont:after {
	content: 'a';
}
#access-view a#defaultFont:after {
	font-size: 13px;
    line-height: 16px;
}
#access-view a#mediumFont:after {
	font-size: 17px;
	line-height: 12px;
}
#access-view a#largeFont:after {
	font-size: 21px;
	line-height: 9px;
}
#access-view a.white-style:after,
#access-view a.default-style:after,
#access-view a.yellow-style:after {
	content: 'c';
	font-size: 17px;
	display: block;
	text-align: center;
	text-indent: 0;
	line-height: 12px;
}
#access-view a.white-style:after {
	color: #FFFFFF;
}
#access-view a.default-style:after {
	color: #000000;
	/*line-height: 13px;*/
}
#access-view a.yellow-style:after {
	color: #FFFF00;
}

div.region-topbar {
	position: absolute;
	bottom: 10px;
	right: 20px;
	z-index: 99;
}
/*.lang-en div.region-topbar {
	bottom: 40px;
	right: 15px;
}*/
#block-locale-0 {
	float: right;
}
#block-locale-0 h2 {
	text-indent: -9999px;
	font-size: 0;
	height: 0;
}
#block-locale-0 .content ul {
	margin: 0;
	padding: 0;
}
#block-locale-0 .content ul li {
	list-style: none;
	float: left;
	margin: 0 0 0 5px;
	padding: 0;
}
#block-locale-0 .content ul li img {
	width: 16px;
	height: 12px;
}

#header .section {
}

#main-wrapper {
}

#main {
}

#footer {
}

#footer .section {
}

/* tabs.css */

/**
 * @file
 * Tabs Styling
 *
 * Adds styles for the primary and secondary tabs.
 *
 * Compare this with default CSS found in the system module's stylesheet (a copy
 * of which is in drupal6-reference.css, line 510.)
 */


div.tabs {
  margin: 0 0 5px 0;
}

ul.primary {
  margin: 0;
  padding: 0 0 0 10px; /* LTR */
  border-width: 0;
  list-style: none;
  white-space: nowrap;
  line-height: normal;
  background: url(../images/tab-bar.png) repeat-x left bottom;
}

ul.primary li {
  float: left; /* LTR */
  margin: 0;
  padding: 0;
}

ul.primary li a {
  display: block;
  height: 24px;
  margin: 0;
  padding: 0 0 0 5px; /* width of tab-left.png */
  border-width: 0;
  font-weight: bold;
  text-decoration: none;
  color: #777;
  background-color: transparent;
  background: url(../images/tab-left.png) no-repeat left -38px;
}

ul.primary li a .tab {
  display: block;
  height: 20px; /* 24px (parent) - 4px (padding) */
  margin: 0;
  padding: 4px 13px 0 6px;
  border-width: 0;
  line-height: 20px;
  background: url(../images/tab-right.png) no-repeat right -38px;
}

ul.primary li a:hover,
ul.primary li a:focus {
  border-width: 0;
  background-color: transparent;
  background: url(../images/tab-left.png) no-repeat left -76px;
}

ul.primary li a:hover .tab,
ul.primary li a:focus .tab {
  background: url(../images/tab-right.png) no-repeat right -76px;
}

ul.primary li.active a,
ul.primary li.active a:hover,
ul.primary li.active a:focus {
  border-width: 0;
  color: #000;
  background-color: transparent;
  background: url(../images/tab-left.png) no-repeat left 0;
}

ul.primary li.active a .tab,
ul.primary li.active a:hover .tab,
ul.primary li.active a:focus .tab {
  background: url(../images/tab-right.png) no-repeat right 0;
}

ul.secondary {
  margin: 0;
  padding: 0 0 0 5px; /* LTR */
  border-bottom: 1px solid #c0c0c0;
  list-style: none;
  white-space: nowrap;
  background: url(../images/tab-secondary-bg.png) repeat-x left bottom;
}

ul.secondary li {
  float: left; /* LTR */
  margin: 0 5px 0 0;
  padding: 5px 0;
  border-right: none; /* LTR */
}

ul.secondary a {
  display: block;
  height: 24px;
  margin: 0;
  padding: 0;
  border: 1px solid #c0c0c0;
  text-decoration: none;
  color: #777;
  background: url(../images/tab-secondary.png) repeat-x left -56px;
}

ul.secondary a .tab {
  display: block;
  height: 18px; /* 24px (parent) - 6px (padding) */
  margin: 0;
  padding: 3px 8px;
  line-height: 18px;
}

ul.secondary a:hover,
ul.secondary a:focus {
  background: url(../images/tab-secondary.png) repeat-x left bottom;
}

ul.secondary a.active,
ul.secondary a.active:hover,
ul.secondary a.active:focus {
  border: 1px solid #c0c0c0;
  color: #000;
  background: url(../images/tab-secondary.png) repeat-x left top;
}

/* messages.css */

/**
 * @file
 * Message Styling
 *
 * Sensible styling for Drupal's error/warning/status messages.
 */


div.messages,
div.status,
div.warning,
div.error /* Important messages (status, warning, and error) for the user */ {
  min-height: 21px;
  margin: 0 1em 5px 1em;
  border: 2px solid #ff7;
  padding: 5px 5px 5px 35px; /* LTR */
  color: #000;
  background-color: #ffc;
  background-image: url(../images/messages-status.png);
  background-repeat: no-repeat;
  background-position: 5px 5px; /* LTR */
}

div.status /* Normal priority messages */ {
}

div.warning /* Medium priority messages */ {
  border-color: #fc0;
  background-image: url(../images/messages-warning.png);
}

div.warning,
tr.warning {
  color: #000; /* Drupal core uses #220 */
  background-color: #ffc;
}

div.error /* High priority messages. See also the .error declaration in pages.css. */ {
  /* border: 1px solid #d77; */ /* Drupal core uses: 1px solid #d77 */
  border-color: #c00;
  background-image: url(../images/messages-error.png);
}

div.error,
tr.error {
  color: #900; /* Drupal core uses #200 */
  background-color: #fee;
}

div.messages ul {
  margin-top: 0;
  margin-bottom: 0;
}

/* pages.css */

/**
 * @file
 * Page Styling
 *
 * Style the markup found in page.tpl.php. Also includes some styling of
 * miscellaneous Drupal elements that appear in the $content variable, such as
 * ul.links, .pager, .more-link, etc.
 */


/*
 * Body
 */
body {
  margin: 0;
  padding: 0;
}

#page-wrapper {
}

#page {
}

/*
 * The skip navigation link will be completely hidden until a user tabs to the
 * link. See http://www.webaim.org/techniques/skipnav/
 */
#skip-link a,
#skip-link a:visited {
  position: absolute;
  display: block;
  left: 0;
  top: -500px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  text-align: center;
  background-color: #666;
  color: #fff;
}

#skip-link a:hover,
#skip-link a:active,
#skip-link a:focus {
  position: static;
  width: 100%;
  height: auto;
  padding: 2px 0 3px 0;
}

/*
 * Header
 */
#header {
	background: #bf5fff;
	margin: 0;
	padding: 10px;
	position: relative;
}

#header .section {
}

#logo /* Wrapping link for logo */ {
  float: left; /* LTR */
  margin: 0;
  padding: 0;
}

#logo img {
  vertical-align: bottom;
}

#name-and-slogan /* Wrapper for website name and slogan */ {
	float: left;
}

h1#site-name,
div#site-name /* The name of the website */ {
  margin: 0;
  font-size: 2em;
  line-height: 1.3em;
}

#site-name a {
	background: url(../images/logo-mol.png) no-repeat;
	background-size: 100%;
	background-position: center;
	width: 350px;
	height: 80px;
	display: block;
	margin: 0;
	padding: 0;
	text-indent: -9999px;
	font-size: 0;
}

#site-name a:link,
#site-name a:visited {
  color: #000;
  text-decoration: none;
}

#site-name a:hover,
#site-name a:focus {
  text-decoration: underline;
}

#site-slogan /* The slogan (or tagline) of a website */ {
}

.region-header /* Wrapper for any blocks placed in the header region */ {
	/*width: 70%;*/
	float: left;
	margin: 0 0 0 10px;
}

/*
 * Main (container for everything else)
 */
#main-wrapper {
}

#main {
}

/*
 * Content
 */
#content {
}

#content .section {
}

#mission /* The mission statement of the site (displayed on homepage) */ {
}

.region-content-top /* Wrapper for any blocks placed in the "content top" region */ {
}

.breadcrumb /* The path to the current page in the form of a list of links */ {
  padding-bottom: 0; /* Undo system.css */
  /*font-size: 11px;
  margin: 5px 15px;*/
  height: 0;
  font-size: 0;
  text-indent: -9999px;
}
.breadcrumb a {
	text-decoration: none;
	color: #a2a2a2;
}
.breadcrumb a:hover {
	text-decoration: underline;
}

.page-anonymouse-home .breadcrumb {
	display: none;
}

h1.title, /* The title of the page */
h2.title, /* Block title or the title of a piece of content when it is given in a list of content */
h3.title /* Comment title */ {
  margin: 0;
}

tr.even /* Some tables have rows marked even or odd. */ {
  /* background-color: #eee; */ /* Drupal core uses a #eee background */
}

tr.odd {
  /* background-color: #eee; */ /* Drupal core uses a #eee background */
}

div.messages /* Important messages (status, warning, and error) for the user. See also the declarations in messages.css. */ {
}

div.status /* Normal priority messages */ {
}

div.warning,
tr.warning /* Medium priority messages */ {
  /* border: 1px solid #f0c020; */ /* Drupal core uses: 1px solid #f0c020 */
}

div.error,
tr.error /* High priority messages. See also the .error declaration below. */ {
}

.error /* Errors that are separate from div.messages status messages. */ {
  /* color: #e55; */ /* Drupal core uses a #e55 background */
}

.warning /* Warnings that are separate from div.messages status messages. */ {
  /* color: #e09010; */ /* Drupal core uses a #e09010 background */
}

div.tabs /* See also the tabs.css file. */ {
}

.help /* Help text on a page */ {
  margin: 1em 0;
}

.more-help-link /* Link to more help */ {
  font-size: 0.85em;
  text-align: right;
}

#content-area /* Wrapper for the actual page content */ {
}

ul.links /* List of links */ {
  margin: 1em 0;
  padding: 0;
}

ul.links.inline {
  margin: 0;
  display: inline;
}

ul.links li {
  display: inline;
  list-style-type: none;
  padding: 0 0.5em;
}

.pager /* A list of page numbers when more than 1 page of content is available */ {
  clear: both;
  margin: 1em 0;
  text-align: center;
}

.pager a,
.pager strong.pager-current /* Each page number in the pager list */ {
  padding: 0.5em;
}

.feed-icons /* The links to the RSS or Atom feeds for the current list of content */ {
  margin: 1em 0;
}

.more-link /* Aggregator, blog, and forum more link */ {
  text-align: right; /* LTR */
}

.region-content-bottom /* Wrapper for any blocks placed in the "content bottom" region */ {
}

/*
 * First sidebar (on left in LTR languages, on right in RTL)
 *
 * Remember to NOT add padding or margin to your .region-sidebar-first
 * (see the layout.css file.)
 */
.region-sidebar-first {
}

.region-sidebar-first .section {
}

/*
 * Second sidebar (on right in LTR languages, on left in RTL)
 *
 * Remember to NOT add padding or margin to your .region-sidebar-second
 * (see the layout.css file.)
 */
.region-sidebar-second {
}

.region-sidebar-second .section {
}

/*
 * Footer
 */
#footer {
}

#footer .section {
	overflow: hidden;
}

#footer-message /* Wrapper for the footer message from Drupal's "Site information"
                   and for any blocks placed in the footer region */ {
}

.region-footer {
}

#footer #block-block-14,
#footer #block-menu-menu-about-menu,
#footer #block-menu-menu-service,
#footer #block-block-43 {
	/*width: 220px;
	margin: 10px 15px;*/
	width: 235px;
	margin: 10px 7px;
	padding: 0;
	float: left;
}
#footer .section .block .content ul {
	margin: 0;
	padding: 0;
}
#footer .section .block .content ul li {
	list-style: none;
	margin: 5px 0 0 0;
	padding: 0;
}
#footer .section .block .content ul li a:hover {
	text-decoration: underline;
}


/*
 * Closure
 */
.region-page-closure /* Wrapper for any blocks placed in the closure region */ {
}

/*
 * Drupal boxes
 *
 * Wrapper for Comment form, Comment viewing options, Menu admin, and
 * Search results.
 */
.box /* Wrapper for box */ {
}

.box h2 /* Box title */ {
}

.box .content /* Box's content wrapper */ {
}

/*
 * Markup free clearing (See: http://www.positioniseverything.net/easyclearing.html )
 */
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/**
 * Hide elements from all users.
 *
 * Used for elements which should not be immediately displayed to any user. An
 * example would be a collapsible fieldset that will be expanded with a click
 * from a user. The effect of this class can be toggled with the jQuery show()
 * and hide() functions.
 */
.element-hidden {
  display: none;
}

/**
 * Hide elements visually, but keep them available for screen-readers.
 *
 * Used for information required for screen-reader users to understand and use
 * the site where visual display is undesirable. Information provided in this
 * manner should be kept concise, to avoid unnecessary burden on the user. Must
 * not be used for focusable elements (such as links and form elements) as this
 * causes issues for keyboard only or voice recognition users. "!important" is
 * used to prevent unintentional overrides.
 */
.element-invisible {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
}

/* block-editing.css */

/**
 * @file
 * Zen's rollover edit links for blocks.
 */


div.block.with-block-editing {
  position: relative;
}

div.block.with-block-editing div.edit {
  display: none;
  position: absolute;
  right: 0; /* LTR */
  top: 0;
  z-index: 40;
  border: 1px solid #eee;
  padding: 0 2px;
  font-size: 0.75em;
  background-color: #fff;
}

div.block.with-block-editing:hover div.edit {
  display: block;
}

/* blocks.css */

/**
 * @file
 * Block Styling
 */


.block /* Block wrapper */ {
  margin-bottom: 1em;
}

.block.first /* The first block in the region */ {
}

.block.last /* The last block in the region */ {
}

.block.region-odd /* Zebra striping for each block in the region */ {
}

.block.region-even /* Zebra striping for each block in the region */ {
}

.block.odd /* Zebra striping independent of each region */ {
}

.block.even /* Zebra striping independent of each region */ {
}

.region-count-1 /* Incremental count for each block in the region */ {
}

.count-1 /* Incremental count independent of each region */ {
}

.block h2.title /* Block title */ {
}

.block .content /* Block's content wrapper */ {
}

#block-aggregator-category-1 /* Block for the latest news items in the first category */ {
}

#block-aggregator-feed-1 /* Block for the latest news items in the first feed */ {
}

#block-block-1 /* First administrator-defined block */ {
}

#block-blog-0 /* "Recent blog posts" block */ {
}

#block-book-0 /* "Book navigation" block for the current book's table of contents */ {
}

#block-comment-0 /* "Recent comments" block */ {
}

#block-forum-0 /* "Active forum topics" block */ {
}

#block-forum-1 /* "New forum topics" block */ {
}

#block-menu-primary-links /* "Primary links" block */ {
}

#block-menu-secondary-links /* "Secondary links" block */ {
}

#block-node-0 /* "Syndicate" block for primary RSS feed */ {
}

#block-poll-0 /* "Most recent poll" block */ {
}

#block-profile-0 /* "Author information" block for the profile of the page's author */ {
}

#block-search-0 /* "Search form" block */ {
}

#block-statistics-0 /* "Popular content" block */ {
}

#block-user-0 /* "User login form" block */ {
}

#block-user-1 /* "Navigation" block for Drupal navigation menu */ {
}

#block-user-2 /* "Who's new" block for a list of the newest users */ {
}

#block-user-3 /* "Who's online" block for a list of the online users */ {
}

/* navigation.css */

/**
 * @file
 * Navigation Styling
 *
 * Default menu styling (ul.menu) is defined in system-menus.css.
 */


/*
 * The active item in a Drupal menu
 */
li a.active {
  color: #000;
}

/*
 * Navigation bar
 */
#navigation {
	background: #e4e4e4;
	min-height: 40px;
	margin: 0;
	padding: 0;
	position: relative;
	z-index: 99;
}

.region-navigation {
}

/*
 * Primary and Secondary menu links
 */
#main-menu {
	line-height: 40px;
	font-family: 'thaisans_neue_semibold';
	font-size: 15px;
}
#navigation #main-menu li {
	margin: 0;
	padding: 0;
}
#main-menu a {
	text-decoration: none;
	color: #000000;
	display: block;
	margin: 0;
	padding: 0 15px;
	
}
#main-menu a:hover {
	background: #fafafa;
}

#secondary-menu {
}

/*
 * Menu blocks
 */
.block-menu {
}

/*
 * "Menu block" blocks. See http://drupal.org/project/menu_block
 */
.block-menu_block {
}


/**
 *
 */
#header .block {
	margin-bottom: 0;
}
#block-block-60 {
	padding:  30px 10px 0 0;
}
/*.lang-en #block-block-60 {
	padding-right: 60px;
}*/
a.logo-mol {
	background: url(../images/logo-mol.png) no-repeat;
	background-size: 280px 70px;
	width: 280px;
	height: 70px;
	display: block;
	text-indent: -9999px;
	font-size: 0;
}

ul.validate-logo {
	margin: 0;
	padding: 0;
    display: block;
    clear: both;
}
ul.validate-logo li {
	float: left;
	list-style: none;
	margin: 0 0 0 5px;
	padding: 0 0 0 0;
}

.region-header ul.social-button {

	margin: 0;
	padding: 0;
    display: block;
    clear: both;
}
.region-footer-top ul.social-button {
	margin: 4px 0 0 0;
	padding: 0;
}
ul.social-button li {
	list-style: none;
	float: left;
	margin: 0;
	padding: 4px 2px 10px 0px;
}
ul.social-button li a {
	background: url(../images/icons-social-media-group.png) no-repeat;
	display: block;
	height: 24px;
	text-indent: -9999px;
	font-size: 0;
}
ul.social-button li.1506-btn a {
	text-indent: 0px;
}

/*
ul.social-button li.facebook-btn a {
	width: 24px;
}
ul.social-button li.twitter-btn a {
	background-position: -26px 0;
	width: 32px;
}
*/
ul.social-button li.rss-btn a {
	background-position: -168px 0;
	width: 32px;
}
ul.social-button li.email-btn a {
	background-position: -202px 0;
	width: 47px;
}

/*
ul.social-button li.facebook-btn a:hover {
	background-position: 0 -26px;
}

ul.social-button li.twitter-btn a:hover {
	background-position: -26px -28px;
}
*/
ul.social-button li.rss-btn a:hover {
	background-position: -168px -28px;
}
ul.social-button li.email-btn a:hover {
	background-position: -202px -28px;
}

ul.social-button li.facebook-btn a {
	background: url(../images/icon-facebook.png) no-repeat;
	background-position: 0 0;
	width: 24px;
	height: 24px;
	margin: 0 0 0 10px;
}
ul.social-button li.facebook-btn a:hover {
	/*
	background: url(../images/icon-line.png) no-repeat;
	background-position: 0 -24px;
	*/
	background: url(../images/icon-facebook.png) no-repeat;
	background-position: 0 0;
	width: 24px;
	height: 24px;
	margin: 0 0 0 10px;
}

ul.social-button li.twitter-btn a {
	background: url(../images/icon-twitter.png) no-repeat;
	background-position: 0 0;
	width: 24px;
	height: 24px;
	margin: 0 0 0 10px;
}
ul.social-button li.twitter-btn a:hover {
	/*
	background: url(../images/icon-line.png) no-repeat;
	background-position: 0 -24px;
	*/
	background: url(../images/icon-twitter.png) no-repeat;
	background-position: 0 0;
	width: 24px;
	height: 24px;
	margin: 0 0 0 10px;
}

ul.social-button li.line-btn a {
	background: url(../images/icon-line.png) no-repeat;
	background-position: 0 0;
	width: 24px;
	height: 24px;
	margin: 0 0 0 10px;
}
ul.social-button li.line-btn a:hover {
	/*
	background: url(../images/icon-line.png) no-repeat;
	background-position: 0 -24px;
	*/
	background: url(../images/icon-line.png) no-repeat;
	background-position: 0 0;
	width: 24px;
	height: 24px;
	margin: 0 0 0 10px;
}

ul.social-button li.login-btn a {
	background: url(../images/icon-lock.png) no-repeat;
	background-position: 0 0;
	width: 18px;
	height: 24px;
	margin: 0 0 0 10px;
}
ul.social-button li.login-btn a:hover {
	background: url(../images/icon-lock.png) no-repeat;
	background-position: 0 -24px;
}

.region-footer-top {
	/*background: #d28fff;*/
	margin: 0;
	padding-left: 10px;
	overflow: hidden;
}
.region-footer-top .col-left {
	float: left;
	width: 50%;
	padding-top: 19px;
}
.region-footer-top .col-right {
	float: left;
	width: 50%;
	margin: 20px 0 0 0;
}
.region-footer-top .col-right p {
	float: right;
	margin: 0 5px 0 20px;
}

.page-anonymouse-home #content .block-quicktabs {
	float: left;
    margin: 10px;
	padding: 0;
    max-width: 490px;
    width: 100%;
	min-height: 600px;
}
.page-anonymouse-home #content .block-quicktabs .quicktabs_tabs {
	padding: 0;
	font-family: 'THSarabunNew_Bold';
	font-size: 20px;
	border-bottom: 1px solid #aaaaaa;
	min-height: 0;
}
.page-anonymouse-home #content .block-quicktabs .quicktabs_tabs:before,
.page-anonymouse-home #content .block-quicktabs .quicktabs_tabs:after {
	border-collapse: collapse;
    content: "";
    display: table;
}
.page-anonymouse-home #content .block-quicktabs .quicktabs_tabs:after {
	clear: both;
}
.page-anonymouse-home #content .block-quicktabs .quicktabs_tabs li {
    float: left;
    list-style: outside none none;
    margin: 1px 0.2em 0 0;
    padding: 0;
    position: relative;
    top: 0;
    white-space: nowrap;
	background: #e6e6e6;
	border: 1px solid #d3d3d3;
	border-bottom-width: 0;
}
.page-anonymouse-home #content .block-quicktabs .quicktabs_tabs li.active {
	background: white;
	border: 1px solid #aaaaaa;
	border-bottom-width: 0;
	margin-bottom: -1px;
    padding-bottom: 1px;
}
.page-anonymouse-home #content .block-quicktabs .quicktabs_tabs li:hover {
	margin-bottom: -1px;
    padding-bottom: 1px;
	border-color: #2a2a2a;
}
.page-anonymouse-home #content .block-quicktabs .quicktabs_tabs li a {
	padding: 8px 9px;
	color: #5a5a5a;
	/*display: block;*/
	float: left;
}
.page-anonymouse-home #content .block-quicktabs .quicktabs_tabs li.active a {
	color: #2a2a2a;
}
.page-anonymouse-home #content .block-quicktabs .quicktabs_tabs li a:hover {
	text-decoration: none;
	background: #6a6a6a;
	color: #fafafa;
}
.page-anonymouse-home #content .block.block-quicktabs h3 {
	font-family: 'THSarabunNew_Bold';
	font-size: 20px;
	line-height: 20px;
	margin: 5px 0 0 0;
}
.page-anonymouse-home #content .block.block-quicktabs h3 a {
	color: #8b008b;
}
.page-anonymouse-home #content .block.block-quicktabs .view-content a:hover {
	text-decoration: underline;
}
.page-anonymouse-home #content .block.block-quicktabs .views-row {
	margin: 0 0 15px 0;
	padding: 0 0 15px 0;
	border-bottom: 1px dotted #999;
	min-height: 130px;
}
.page-anonymouse-home #content .block.block-quicktabs .views-field-body {
	font-size: 13px;
}
.page-anonymouse-home #content .block.block-quicktabs .views-field-changed {
	font-size: 13px;
	/*color: #6d6e71;*/
	color: 4a4a4a;
}
.page-anonymouse-home #content .block.block-quicktabs .view-footer {
	text-align: right;
	font-family: 'THSarabunNew_Bold';
	font-size: 20px;
}
#content .block.block-quicktabs .view-footer a {
	color: #8b008b;
}

#block-views-News_tabs-block_1 .views-field-field-thumbnail-fid {
	float: left;
	margin: 0 10px 0 0;
	min-height: 160px;
}

#block-views-activities_civil_state-block_1  .views-field-field-thumbnail-fid {
	float: left;
	margin: 0 10px 0 0;
}
/*
imagefield imagefield-field_thumbnail
*/
#block-views-activities_civil_state-block_1  .views-field-field-thumbnail-fid .imagefield-field_thumbnail {
	border: 0;
	height: 70px;
	width: 90px;
}

.page-anonymouse-home #content #block-views-Today_Activity-block_1 {
	float: left;
	width: 100%;
	max-width: 225px;
	margin: 10px;
	padding: 0;
}

.page-anonymouse-home #block-views-e_magazine-block_1,
.page-anonymouse-home #content #block-views-activities_civil_state-block_1 {
	float: left;
	width: 100%;
	max-width: 225px;
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: 10px;
	margin-left: 10px;
	padding: 0;
}
.page-anonymouse-home #content #block-views-Today_Activity-block_1 .content ul {
	padding: 0;
}

.page-anonymouse-home #block-views-e_magazine-block_1 .content ul,
.page-anonymouse-home #content #block-views-activities_civil_state-block_1 .content ul {
	padding: 0;
}
.page-anonymouse-home #content #block-views-Today_Activity-block_1 .content ul li {
	list-style: none;
}

.page-anonymouse-home #block-views-e_magazine-block_1 .content ul li, 
.page-anonymouse-home #content #block-views-activities_civil_state-block_1 .content ul li {
	list-style: none;
}
.page-anonymouse-home #block-views-e_magazine-block_1 h2 {
  margin-bottom: 5px !important;
  text-transform: initial !important; 
}
.page-anonymouse-home #block-views-e_magazine-block_1 .view-footer {
  text-align: right;
}
.page-anonymouse-home #block-views-e_magazine-block_1 .view-footer a,
.page-anonymouse-home #block-views-e_magazine-block_1 .view-footer a:visited {
  color: #8b008b;
}
.page-anonymouse-home #block-views-e_magazine-block_1 ul {margin: 0 !important}
.page-anonymouse-home #block-views-e_magazine-block_1 .views-field-image-attach-images span div {
  width: 225px !important;
}
.page-anonymouse-home #block-views-e_magazine-block_1 { margin-top: -7px ;text-align: center;}
.page-anonymouse-home #block-views-e_magazine-block_1 ul li img {
  width: 128px;
  margin-top: 5px;
}

.page-e-magazine .view-id-e_magazine .view-content img {
  width: 128px;
}
.page-e-magazine .view-id-e_magazine .view-content ul,
.page-e-magazine .view-id-e_magazine .view-content ul li {
  list-style: none;
  margin: 0;padding: 0;
}
.page-e-magazine .view-id-e_magazine .view-content .views-field-image-attach-images div {
    width: 100% !important;
}
.page-e-magazine .view-id-e_magazine .view-content ul li {
  display: inline-block;
  width: 22%; margin: 0 1% 10px;
  text-align: center;
}




.page-anonymouse-home #content #block-views-Today_Activity-block_1 .content .views-row {
	margin: 0 0 10px 0;
	padding: 0 0 10px 0;
	border-bottom: 1px dotted #999;
}

.page-anonymouse-home #content #block-views-activities_civil_state-block_1 .content .views-row {
	margin: 0 0 10px 0;
	padding: 0 0 10px 0;
	border-bottom: 1px dotted #999;
}
.page-anonymouse-home #content #block-views-Today_Activity-block_1 .content a {
	color: #8b008b;
}

.page-anonymouse-home #content #block-views-activities_civil_state-block_1 .content a {
	color: #8b008b;
}
.page-anonymouse-home #content #block-views-Today_Activity-block_1 .content a:hover {
	text-decoration: underline;
}

.page-anonymouse-home #content #block-views-activities_civil_state-block_1 .content a:hover {
	text-decoration: underline;
}
.page-anonymouse-home #content #block-views-Today_Activity-block_1 .views-field-created {
	font-size: 13px;
	/*color: #6d6e71;*/
	color: 4a4a4a;
}
.page-anonymouse-home #content #block-views-activities_civil_state-block_1 .views-field-created {
	font-size: 13px;
	/*color: #6d6e71;*/
	color: 4a4a4a;
}
.page-anonymouse-home #content #block-views-Today_Activity-block_1 .views-field-title {
	font-family: 'THSarabunNew_Bold';
	font-size: 20px;
	line-height: 20px;
	margin-top: 5px;
}

.page-anonymouse-home #content #block-views-activities_civil_state-block_1 .views-field-title {
	font-family: 'THSarabunNew_Bold';
	font-size: 20px;
	line-height: 20px;
	margin-top: 5px;
	min-height: 70px;
}
.page-anonymouse-home #content #block-views-Today_Activity-block_1 .view-footer {
	text-align: right;
	font-family: 'THSarabunNew_Bold';
	font-size: 20px;
}

.page-anonymouse-home #content #block-views-activities_civil_state-block_1 .view-footer {
	text-align: right;
	font-family: 'THSarabunNew_Bold';
	font-size: 20px;
}
#block-views-Today_Activity-block_1 .view-footer a {
	color: #8b008b;
}

#block-views-activities_civil_state-block_1 .view-footer a {
	color: #8b008b;
}

.page-anonymouse-home #content #block-menu-menu-menu-service,
#block-block-69 {
	float: left;
	width: 100%;
	max-width: 225px;
	margin: 10px;
	padding: 0;
}
.page-anonymouse-home #content #block-menu-menu-menu-service .content ul,
#block-block-69 ul {
	/*font-family: 'thaisans_neue_semibold';
	font-size: 15px;*/
	font-family: 'THSarabunNew_Bold';
	font-size: 20px;
	line-height: 20px;
	padding: 0 0 10px 20px;
	margin-bottom: 0;
	border-bottom: 1px dotted #999;
}
.page-anonymouse-home #content #block-menu-menu-menu-service .content ul li,
#block-block-69 ul li {
	list-style-image: none;
	list-style: disc;
	margin: 0 0 5px 0;
}
.page-anonymouse-home #content #block-menu-menu-menu-service .content ul li a,
#block-block-69 ul li a {
	color: #8b008b;
}
.page-anonymouse-home #content #block-menu-menu-menu-service .content ul li a:hover,
#block-block-69 ul li a:hover {
	text-decoration: underline;
}

.page-anonymouse-home #content .block h2 {
	border-bottom: 1px solid #7c858e;
    font-family: 'thaisans_neuebold';
    font-size: 21px;
    font-weight: bold;
	margin: 0 0 20px 0;
    padding: 10px 0 5px;
    text-transform: uppercase;
    word-wrap: break-word;
}
.page-anonymouse-home #content a {
	text-decoration: none;
	
}

#block-block-62 {
	float: left;
	width: 100%;
	max-width: 225px;
	margin: 10px;
	padding: 0;
}
.page-anonymouse-home #content #block-block-62 h2 {
	padding-top: 0;
}
#block-block-62 .content {
	font-family: 'THSarabunNew_Bold';
	font-size: 20px;
	line-height: 20px;
	/*color: #4a4a4a;*/
	color: ffffff;
}
#block-block-62 .content ul {
	margin: 0;
	padding: 0 0 0 20px;
}
#block-block-62 .content ul li {
	margin: 0 0 5px 0;
	padding: 0;
}
#block-block-62 .content a {
	text-decoration: none;
	color: #8b008b;
}
#block-block-62 .content a:hover {
	text-decoration: underline;
}

#block-block-61 {
	width: 100%;
	max-width: 480px;
	margin: 10px;
	padding: 0;
	float: left;
/*	clear: both; */
}
#block-block-61 .content div {
	float: left;
	/*width: 225px;*/
	margin: 10px;
	padding: 0;
}
#block-block-61 .content ul {
	margin: 0 5px 0 0;
	padding: 0 0 0 15px;
	float: left;
	width: 210px;
	list-style: disc;
}
#block-block-61 .content ul li {
	margin: 0 0 5px 0;
	padding: 0;
	font-family: 'THSarabunNew_Bold';
	font-size: 20px;
	line-height: 20px;
	/*width: 200px;*/
}

/*#block-block-61 .content ul li.column1 {
	margin-left: 0em; 
}

#block-block-61 .content ul li.column2 {
	margin-left: 12em; 	
}

#block-block-61 .content ul li.reset {
	margin-top: -15.3em;
}*/

#block-block-61 .content a {
	text-decoration: none;
	color: #8b008b;
}
#block-block-61 .content a:hover {
	text-decoration: underline;
}

#block-block-66 {
/* background-color: blue; */
    width: 100%;
    /* padding: 0; */
    /* float: left; */
    margin-bottom: -14px;
    /* margin-left: 10px; */
    margin-top: 10px;
    margin-right: 10px;
	clear: both;
}

#block-block-69 {
	float: left;
	margin: 0 10px;
	padding:0px;
	max-width: 225px;
	width: 100%;
}
#block-block-69 ul {
	list-style: disc;
}

#block-views-Promote_Video-block_1 {
	width: 100%;
	/*max-width: 480px;*/
	max-width: 470px;
	position: relative;
	margin: 10px;
	padding: 0;
	float: right;
}
#block-views-Promote_Video-block_1 .views-field-body .video-container,
#block-blockclone-21 .views-field-body .video-container {
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    padding-top: 30px;
    position: relative;
}
#block-views-Promote_Video-block_1 .views-field-body .video-container iframe,
#block-views-Promote_Video-block_1 .views-field-body .video-container object,
#block-views-Promote_Video-block_1 .views-field-body .video-container embed,
#block-blockclone-21 .views-field-body .video-container iframe,
#block-blockclone-21 .views-field-body .video-container object,
#block-blockclone-21 .views-field-body .video-container embed {
    border: none;
	width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
	left: 0;
}

#block-views-Promote_Video-block_1 iframe {
		width: 100%;
		height: 280px;
}

body.lang-en #block-blockclone-21 {
    float: right;
}

#block-block-65 {
	width: 100%;
	max-width: 470px;
	position: relative;
	margin: 10px;
	padding: 0;
	float: right;
}

#block-views-Highlight_Slideshow-block_1 {
	margin: 0 0 40px 0;
}
#block-views-Highlight_Slideshow-block_1 .views-field-field-highlight-image-fid {
	float: left;
	max-width: 500px;
	width: 100%;
	margin: 0 50px 0 0;
}
#block-views-Highlight_Slideshow-block_1 .views-field-field-highlight-image-fid img {
	width: 500px;
	/*height: 330px;*/
}
#block-views-Highlight_Slideshow-block_1 .views-field-nothing {
	float: left;
	max-width: 400px;
	width: 100%;
	font-family: 'thaisans_neueregular';
	font-size: 18px;
	line-height: 24px;
	margin: 0;
	padding: 10px 0 0 0;
}

/*#block-views-Highlight_Slideshow-block_1 h3 {
	font-family: 'thaisans_neue_semibold';
	font-size: 24px;
	margin: 10px 0;
}*/
#block-views-Highlight_Slideshow-block_1 p {
	margin: 0;
}
#block-views-Highlight_Slideshow-block_1 .field-content a {
	color: #8b008b;
	font-family: 'thaisans_neue_semibold';
	font-size: 24px;
	margin: 10px 0;
}
.block .flex-direction-nav {
	margin: 0;
	padding: 0;
}

#main-wrapper #content {
	margin: 0;
}
h1.title {
	font-family: 'thaisans_neuebold';
	font-size: 23px;
	color: #994CCC;
	margin: 0 0 20px 0;
	padding: 0 0 5px 0;
	border-bottom: 2px solid #e4d9ea;
	position: relative;
}
h1.title:after {
	content: "";
	height: 2px;
	background: #8953aa;
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 250px;
}
.one-sidebar #main-wrapper #content {
	/*max-width: 745px;*/
	max-width: 700px;
	width: 100%;
	margin: 30px 15px;
	padding: 0;
}
.one-sidebar #content .section {
	margin: 0;
	padding: 0;
}
.one-sidebar .region-sidebar-second {
	max-width: 240px;
	width: 100%;
	margin: 30px 15px;
	padding: 10px 0 0 0;
	float: left;
}
.one-sidebar .region-sidebar-second .block {
	padding-bottom: 20px;
}
.one-sidebar .region-sidebar-second h2 {
	border-bottom: 1px solid #7c858e;
    font-family: "thaisans_neueregular";
    font-size: 18px;
    font-weight: normal;
    line-height: 9px;
    padding-bottom: 15px;
}
.one-sidebar .region-sidebar-second h2:before {
	font-family: 'FontAwesome';
	font-weight: normal;
	margin: 0 5px 0 0;
	color: #820BBB;
}
#block-simplenews-3 h2:before {
	content: "\f0e0";
}
#block-menu-menu-employee h2:before,
#block-menu-menu-entrepreneur h2:before,
#block-menu-menu-academician h2:before,
#block-menu-menu-menu-services-en h2:before,
#block-menu-menu-academician-en h2:before {
	content: "\f0ca";
}
#block-menu-menu-anoymous h2:before {
	content: "\f0c0";
}
.region-sidebar-second .block .content {
	font-family: 'THSarabunNew_Bold';
	font-size: 20px;
}
.region-sidebar-second .block .content ul {
	margin-bottom: 0;
	padding-left: 25px;
}
.region-sidebar-second .block .content ul li {
	padding: 0 0 5px 0;
}
.region-sidebar-second .block .content ul li a {
	text-decoration: none;
	color: #8b008b;
}
.region-sidebar-second .block .content ul li a:hover {
	text-decoration: underline;
}
#block-simplenews-3 .content {
	margin: 10px 0 0 0;
	padding: 15px;
	background: #eeeeee;
	border-radius: 2px;
}
#block-simplenews-3 .content p {
	margin: 0;
}
#block-simplenews-3 .form-radios,
#block-simplenews-3 .form-item {
	margin: 0.5em 0;
}
#block-simplenews-3 input.form-submit {
	box-shadow: 0 -2px 0 rgba(0, 0, 0, 0.2) inset;
	padding: 3px 15px;
	/*display: block;*/
	background: #bf5fff;
	border-radius: 2px;
	font-family: 'thaisans_neue_semibold';
	color: #ffffff;
	border: none;
	cursor: pointer;
}


.one-sidebar #content h2:before {
    color: #8a2be2;
    /*content: "";*/
    font-family: 'FontAwesome';
    font-weight: normal;
}
.one-sidebar #content h2 {
	font-family: 'thaisans_neueregular';
    font-size: 20px;
	font-weight: normal;
	color: #2a2a2a;
    /*font-family: 'THSarabunNew_Bold';
    font-size: 25px;
    font-weight: bold;*/
    text-transform: uppercase;
    word-wrap: break-word;
	line-height: 32px;
	/*border-bottom: 1px solid #7c858e;*/

}

#block-views-views_weekend_of_labor-block_1 h2,
#block-views-views_weekend_of_labor-block_2 h2 {
	background: url(../images/icon-job.png) no-repeat;
	vertical-align: middle;
	padding: 0 0 0 40px;
}
#block-views-views_weekend_of_labor-block_1 table {
	background: white;
    border: 1px solid #eaeaea;
	border-collapse: separate;
}
#block-views-views_weekend_of_labor-block_1 table thead,
#block-views-views_weekend_of_labor-block_1 table tfoot {
    background: #e2d9ee;
    font-weight: bold;
}
#block-views-views_weekend_of_labor-block_1 tr.odd {
	background: #fafafa;
}
#block-views-views_weekend_of_labor-block_1 tr.even {
	 background: whitesmoke;
}
#block-views-views_weekend_of_labor-block_1 th {
	padding: 10px;
}
#block-views-views_weekend_of_labor-block_1 td {
	font-size: 13px;
	padding: 10px;
}
#block-views-views_weekend_of_labor-block_1 table a,
#block-views-legislation_employee-block_1 table a,
#block-menu-menu-menu-content-employee2 a,
#block-menu-menu-content-employee a,
#block-views-legislation_employer-block_1 table a,
#block-menu-menu-content-employer a,
#block-menu-menu-report-situations a,
#block-menu-menu-content-academician a,
#block-views-legislation_employer-block_2 table a,
#block-views-legislation_employee-block_2 table a {
	color: #8b008b;
	text-decoration: none;
}
#block-views-views_weekend_of_labor-block_1 table a:hover,
#block-views-legislation_employee-block_1 table a:hover,
#block-menu-menu-menu-content-employee2 a:hover,
#block-menu-menu-content-employee a:hover,
#block-views-legislation_employer-block_1 table a:hover,
#block-menu-menu-content-employer a:hover,
block-menu-menu-report-situations a:hover,
#block-menu-menu-content-academician a:hover,
#block-views-legislation_employer-block_2 table a:hover,
#block-views-legislation_employee-block_2 table a:hover {
	text-decoration: underline;
}

.more-link a:after {
	content: "\f138";
    font-family: 'FontAwesome';
}
.more-link a {
	background: #bf5fff;
    border-radius: 2px;
    box-shadow: 0 -2px 0 rgba(0, 0, 0, 0.2) inset;
    color: #ffffff;
    font-family: 'thaisans_neue_semibold';
	font-size: 13px;
    padding: 3px 15px;
	text-decoration: none;
}

#block-views-views_weekend_of_labor-block_1,
#block-views-legislation_employee-block_1,
#block-menu-menu-menu-content-employee2,
#block-menu-menu-content-employee,
#block-views-legislation_employer-block_1,
#block-menu-menu-content-employer,
#block-menu-menu-report-situations,
#block-views-views_labormarket-block_2,
#block-views-views_foreign-block_2,
#block-views-views_weekend_of_labor-block_2,
#block-views-views_skill_development-block_2,
#block-views-legislation_employee-block_2,
#block-views-views_news_en-block_1,
#block-views-legislation_employer-block_2,
#block-menu-menu-interesting-for-academician,
#block-block-40,
#block-menu-menu-report-situations-en,
#block-menu-menu-employer {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px dotted #a2a2a2;
}
#block-views-legislation_employee-block_1 h2,
#block-views-legislation_employer-block_1 h2,
#block-views-legislation_employee-block_2 h2,
#block-views-legislation_employer-block_2 h2 {
	background: url(../images/icon-law.png) no-repeat;
	vertical-align: middle;
	padding: 0 0 0 40px;
}
#block-views-legislation_employee-block_1 table,
#block-views-legislation_employer-block_1 table,
#block-views-legislation_employer-block_2 table,
#block-views-legislation_employee-block_2 table {
	background: none;
}
#block-views-legislation_employee-block_1 tr,
#block-views-legislation_employer-block_1 tr,
#block-views-legislation_employer-block_2 tr,
#block-views-legislation_employee-block_2 tr {
	background: none;
	border: none;
}
#block-views-legislation_employee-block_1 td,
#block-views-legislation_employer-block_1 td,
#block-views-legislation_employer-block_2 td,
#block-views-legislation_employee-block_2 td {
	padding: 0 10px 10px 10px;
}
#block-views-legislation_employee-block_1 .views-field-field-file-fid,
#block-views-legislation_employer-block_1 .views-field-field-file-fid,
#block-views-legislation_employer-block_2 .views-field-field-file-fid,
#block-views-legislation_employee-block_2 .views-field-field-file-fid {
	padding-left: 25px;
}
#block-views-legislation_employee-block_1 .views-field-field-file-fid a,
#block-views-legislation_employer-block_1 .views-field-field-file-fid a,
#block-views-legislation_employer-block_2 .views-field-field-file-fid a,
#block-views-legislation_employee-block_2 .views-field-field-file-fid a {
	display: list-item;
}
#block-views-legislation_employee-block_1 table .views-field-field-file-fid-1,
#block-views-legislation_employer-block_1 table .views-field-field-file-fid-1,
#block-views-legislation_employer-block_2 .views-field-field-file-fid-1,
#block-views-legislation_employee-block_2 .views-field-field-file-fid-1 {
	vertical-align: top;
	padding-left: 0;
}
#block-views-legislation_employee-block_1 table .views-field-field-file-fid-1 a,
#block-views-legislation_employer-block_1 table .views-field-field-file-fid-1 a,
#block-views-legislation_employer-block_2 .views-field-field-file-fid-1 a,
#block-views-legislation_employee-block_2 .views-field-field-file-fid-1 a {
	text-decoration: none;
	color: #a2a2a2;
}
#block-views-legislation_employee-block_1 .views-field-field-file-fid-1 a:after,
#block-views-legislation_employer-block_1 .views-field-field-file-fid-1 a:after,
#block-views-legislation_employer-block_2 .views-field-field-file-fid-1 a:after,
#block-views-legislation_employee-block_2 .views-field-field-file-fid-1 a:after {
	content: "\f1c1";
	font-family: 'FontAwesome';
	font-size: 16px;	
}
#block-views-legislation_employee-block_1 td img,
#block-views-legislation_employer-block_1 td img,
#block-views-legislation_employer-block_2 td img,
#block-views-legislation_employee-block_2 td img {
	display: none;
}

#block-menu-menu-menu-content-employee2 h2,
#block-menu-menu-content-employee h2,
#block-menu-menu-content-employer h2,
#block-menu-menu-employer h2 {
	background: url(../images/icon-storage.png) no-repeat;
	vertical-align: middle;
	padding: 0 0 0 40px;
}
#block-menu-menu-menu-content-employee2 .content ul li,
#block-menu-menu-content-employee .content ul li,
#block-menu-menu-content-employer .content ul li,
#block-menu-menu-report-situations .content ul li,
#block-menu-menu-content-academician .content ul li {
	margin: 0 0 10px 0;
}
#block-menu-menu-menu-content-employee2 .content ul li li,
#block-menu-menu-content-employee .content ul li li,
#block-menu-menu-content-employer .content ul li li,
#block-menu-menu-report-situations .content ul li li,
#block-menu-menu-content-academician .content ul li li {
	margin: 0 0 5px 0;
}

#block-block-58,
#block-block-58 table,
#block-block-58 p {
	margin: 0;
}
#block-block-58 table table tr:first-child,
#block-block-58 table table tr:last-child,
#block-block-58 .bd-L3,
#block-block-58 .bd-R3,
#block-block-58 img {
	display: none;
}
#block-block-58 a {
	background: url(../images/course-banner.png) no-repeat;
	width: 498px;
	height: 129px;
	display: block;
	text-height: -9999px;
	font-size: 0;
}

#block-menu-menu-report-situations h2 {
	background: url(../images/icon-report.png) no-repeat;
	vertical-align: middle;
	padding: 0 0 0 40px;
}

#block-menu-menu-content-academician h2 {
	background: url(../images/icon-book.png) no-repeat;
	vertical-align: middle;
	padding: 0 0 0 45px;
}

#block-block-27 table {
	border-collapse: separate;
}
#block-block-27 table tr:first-child td:first-child {
	vertical-align: middle;
}
#block-block-27 table tr:nth-child(1) td,
#block-block-27 table tr:nth-child(2) td {
	border: 1px solid #54446a !important;
}
#block-block-27 table tr:nth-child(2) {
	border-bottom: 3px solid #9c90aa !important;
}
#block-block-27 table tr:nth-child(2) td {
	background: #e2d9ee !important;
}
#block-block-27 table td {
	padding: 10px !important;
	border: 1px solid #9c90aa !important;
}
#block-block-27 table td span {
	font-size: 14px !important;
}
#block-block-27 p.rtecenter strong {
	font-family: 'thaisans_neueregular';
    font-size: 20px;
	font-weight: normal;
	color: #2a2a2a;
}

.submitted {
	color: #8a8a8a;
	font-size: 13px;
	display: block;
	margin: 0 0 20px 0;
}
.submitted:before {
	content: "\f017";
	font-family: 'FontAwesome';
	margin: 0 5px 0 0;
	font-size: 14px;
}

#node-5500 .content .panel-pane h2 {
	background: url(../images/icon-law.png) no-repeat;
	vertical-align: middle;
	padding: 0 0 0 40px;
}
.node .content a {
	text-decoration: none;
	color: #8b008b;
}
.node .content a:hover {
	text-decoration: underline;
}
.node .content ul li {
	margin: 0 0 10px 0;
}
.node .content ul li li {
	margin: 0 0 5px 0;
}
.node ul.links.inline li.statistics_counter:before {
	content: "\f06e";
	font-family: 'FontAwesome';
	margin: 0 5px 0 0;
	font-size: 14px;
}
.node ul.links.inline li.statistics_counter {
	font-size: 13px;
	color: #8a8a8a;
	margin: 20px 0 0 0;
	display: inline-block;
}

#node-4430 .content {
}

#node-11483 .panel-pane h2:before {
	content: "\f19c";
	font-family: 'FontAwesome';
	margin: 0 8px 0 0;
	color: #8a2be2;
	font-size: 30px;
}
#node-11483 .panel-pane h2 {
	margin: 0 0 20px 0;
}

.not-logged-in .messages.error {
	display: none;
}


/* views-styles.css */

/**
 * @file
 * Views Styling
 */



/* nodes.css */

/**
 * @file
 * Node Styling
 *
 * Style anything that isn't in the $content variable.
 */


.node /* Node wrapper */ {
}

.node-sticky /* A sticky node (displayed before others in a list) */ {
}

.node-unpublished /* Unpublished nodes */ {
  /* background-color: #fff4f4; */ /* Drupal core uses a #fff4f4 background */
}

.node-unpublished div.unpublished,
.comment-unpublished div.unpublished /* The word "Unpublished" displayed underneath the content. */ {
  height: 0;
  overflow: visible;
  color: #d8d8d8;
  font-size: 75px;
  line-height: 1;
  font-family: Impact, "Arial Narrow", Helvetica, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  word-wrap: break-word; /* A very nice CSS3 property */
}

.node-by-viewer /* A node created by the current user */ {
}

.node-teaser /* A node displayed as teaser */ {
}

/* All nodes are given a node-type-FOO class that describes the type of
 * content that it is. If you create a new content type called
 * "my-custom-type", it will receive a "node-type-my-custom-type" class.
 */
.node-type-page /* Page content node */ {
}

.node-type-story /* Story content node */ {
}

.node h2.title /* Node title */ {
}

.marker /* "New" or "Updated" marker for content that is new or updated for the current user */ {
  color: #c00;
}

.node .picture /* The picture of the node author */ {
}

.node.node-unpublished .picture,
.comment.comment-unpublished .picture {
  position: relative; /* Otherwise floated pictures will appear below the "Unpublished" text. */
}

.node .meta /* Wrapper for submitted and terms data */ {
}

.node .submitted /* The "posted by" information */ {
}

.node .terms /* Node terms (taxonomy) */ {
}

.node .content /* Node's content wrapper */ {
}

.node ul.links /* Node links. See also the ul.links declaration in the pages.css. */ {
}

.preview .node /* Preview of the content before submitting new or updated content */ {
  /* background-color: #ffffea; */ /* Drupal core uses a #ffffea background */
}

/* comments.css */

/**
 * @file
 * Comment Styling
 */


#comments /* Wrapper for the list of comments and its title */ {
  margin: 1em 0;
}

#comments h2.title /* Heading for the list of comments */ {
}

.comment /* Wrapper for a single comment */ {
}

.comment-preview /* Preview of the comment before submitting new or updated comment */ {
}

.comment.new /* A new comment since the user last viewed the page. */ {
}

.comment.first /* The first comment in the list of comments */ {
}

.comment.last /* The last comment in the list of comments */ {
}

.comment.odd /* An odd-numbered comment in the list of comments */ {
}

.comment.even /* An even-numbered comment in the list of comments */ {
}

.comment-unpublished /* Unpublished comments */ {
  /* background-color: #fff4f4; */ /* Drupal core uses a #fff4f4 background */
}

.comment-unpublished div.unpublished /* The word "Unpublished" displayed underneath the content. See also the div.unpublished declaration in the nodes.css. */ {
}

.comment-by-anonymous /* A comment created by an anonymous user */ {
}

.comment-by-node-author /* A comment created by the node's author */ {
}

.comment-by-viewer /* A comment created by the current user */ {
}

.comment h3.title /* Comment title */ {
}

.new /* "New" marker for comments that are new for the current user */ {
  color: #c00;
}

.comment .picture /* The picture of the comment author */ {
}

.comment .submitted /* The "posted by" information */ {
}

.comment .content /* Comment's content wrapper */ {
}

.comment .user-signature /* The user's signature */ {
}

.comment ul.links /* Comment links. See also the ul.links declaration in the pages.css. */ {
}

.indented /* Nested comments are indented */ {
  /* margin-left: 25px; */ /* Drupal core uses a 25px left margin */
}

.preview .comment /* Preview of the comment before submitting new or updated comment */ {
  /* background-color: #ffffea; */ /* Drupal core uses a #ffffea background */
}

/* forms.css */

/**
 * @file
 * Form Styling
 */


.form-item,
.form-checkboxes,
.form-radios /* Wrapper for a form element (or group of form elements) and its label */ {
  margin: 1em 0;
}

.form-item input.error,
.form-item textarea.error,
.form-item select.error /* Highlight the form elements that caused a form submission error */ {
  border: 2px solid #c00;
}

.form-item label /* The label for a form element */ {
  display: block;
  font-weight: bold;
}

.form-item label.option /* The label for a radio button or checkbox */ {
  display: inline;
  font-weight: normal;
}

.form-required /* The part of the label that indicates a required field */ {
  color: #c00;
}

.form-item .description /* The descriptive help text (separate from the label) */ {
  font-size: 0.85em;
}

.form-checkboxes .form-item,
.form-radios .form-item /* Pack groups of checkboxes and radio buttons closer together */ {
  margin: 0.4em 0;
}

.form-submit /* The submit button */ {
}

.container-inline div,
.container-inline label /* Inline labels and form divs */ {
  display: inline;
}

.tips /* Tips for Drupal's input formats */ {
}


/*
 * Search (search-theme-form.tpl.php)
 */
#search-box /* Wrapper for the search form */ {
}

#edit-search-theme-form-1-wrapper label /* Label that says "Search this site:" */ {
  display: none;
}


/*
 * Search (search-block-form.tpl.php)
 */
#search-block-form /* Wrapper for the search form */ {
}

#edit-search-block-form-1-wrapper label /* Label that says "Search this site:" */ {
  display: none;
}


/*
 * Drupal's default login form block
 */
#user-login-form {
  text-align: left; /* LTR */
}


/*
 * OpenID
 *
 * The default styling for the OpenID login link seems to assume Garland's
 * styling of list items.
 */

#user-login-form ul /* OpenID creates a new ul above the login form's links. */ {
  margin-bottom: 0; /* Position OpenID's ul next to the rest of the links. */
}

#user-login-form li.openid-link /* The "Log in using OpenID" link. */ {
  margin-top: 1em;
  margin-left: -20px; /* LTR */ /* Un-do some of the padding on the ul list. */
}

#user-login-form li.user-link /* The "Cancel OpenID login" link. */ {
  margin-top: 1em;
}

#user-login ul {
  margin: 1em 0;
}

#user-login li.openid-link,
#user-login li.user-link /* The OpenID links on the /user form. */ {
  margin-left: -2em; /* LTR */ /* Un-do all of the padding on the ul list. */
}


/*
 * Drupal admin tables
 *
 * We overrode these styles in html-elements.css, but restore them for the admin
 * section of the site.
 */

form tbody {
  border-top: 1px solid #ccc;
}

form th,
form thead th {
  text-align: left; /* LTR */
  padding-right: 1em; /* LTR */
  border-bottom: 3px solid #ccc;
}

form tbody th {
  border-bottom: 1px solid #ccc;
}

/* fields.css */

/**
 * @file
 * Field Styling
 */


/*
 * Field types
 */

.field /* Wrapper for any CCK field. */ {
}

.field-type-datetime /* Always use "datetime" when creating new CCK date fields. "date" and "datestamp" are legacy types. */ {
}

.field-type-filefield /* Field from filefield module */ {
}

.field-type-nodereference {
}

.field-type-number-decimal {
}

.field-type-number-float {
}

.field-type-number-integer {
}

.field-type-text {
}

.field-type-userreference {
}


/*
 * Named fields
 */

.field-field-FIELDNAME /* Underscores in field name are replaced with dashes. */ {
}


/**
 * English Site
 */
.lang-en #content .node {
	margin: 0 0 20px 0;
}

#block-views-views_labormarket-block_2 .views-row,
#block-views-views_foreign-block_2 .views-row,
#block-views-views_news_en-block_1 .views-row {
	margin: 0 0 10px 25px;
	display: list-item;
}
#block-views-views_labormarket-block_2 .views-row a,
#block-views-views_foreign-block_2 .views-row a,
#block-views-views_news_en-block_1 .views-row a,
.lang-en #content .block .content ul.menu li a,
#block-views-views_weekend_of_labor-block_2 td a,
#block-views-views_skill_development-block_2 td a {
	text-decoration: none;
	color: #8b008b;
}
#block-views-views_labormarket-block_2 .views-row a:hover,
#block-views-views_foreign-block_2 .views-row a:hover,
#block-views-views_news_en-block_1 .views-row a:hover,
.lang-en #content .block .content ul.menu li a:hover,
#block-views-views_weekend_of_labor-block_2 td a:hover,
#block-views-views_skill_development-block_2 td a:hover {
	text-decoration: underline;
}
#block-views-views_labormarket-block_2 .views-row .views-field-changed:before,
#block-views-views_foreign-block_2 .views-row .views-field-changed:before,
#block-views-views_news_en-block_1 .views-row .views-field-created:before {
	font-family: 'FontAwesome';
	content: "\f133";
	margin: 0 5px 0 0;
	/*font-size: 14px;*/
}
#block-views-views_labormarket-block_2 .views-row .views-field-changed,
#block-views-views_foreign-block_2 .views-row .views-field-changed,
#block-views-views_news_en-block_1 .views-row .views-field-created {
	color: #8a8a8a;
	font-size: 12px;
}

.lang-en #content .block .content ul.menu li {
	margin: 0 0 10px 0;
}
.lang-en #content .block .content ul.menu li li {
	margin: 0 0 5px 0;
}

#block-menu-menu-interesting-for-academician h2:before {
	content: "\f05a";
	font-size: 35px;
	vertical-align: sub;
	margin: 0 8px 0 0;
}

#block-menu-menu-report-situations-en h2:before {
	content: "\f0ea";
	font-size: 30px;
	vertical-align: sub;
	margin: 0 8px 0 0;
}

#block-views-views_skill_development-block_2 h2:before {
	content: "\f109";
	font-size: 42px;
	vertical-align: sub;
	margin: 0 8px 0 0;
}

#block-views-views_skill_development-block_2 h2:before {
	content: "\f109";
	font-size: 42px;
	vertical-align: sub;
	margin: 0 8px 0 0;
}

#block-views-views_weekend_of_labor-block_2 table,
#block-views-views_skill_development-block_2 table {
	background: none;
    border: 1px solid #eaeaea;
    border-collapse: separate;
}
#block-views-views_weekend_of_labor-block_2 th,
#block-views-views_skill_development-block_2 th {
	padding: 10px 5px;
	background: #e2d9ee;
}
#block-views-views_weekend_of_labor-block_2 td,
#block-views-views_skill_development-block_2 td {
	padding: 5px;
}
#block-views-views_weekend_of_labor-block_2 tr.odd,
#block-views-views_skill_development-block_2 tr.odd {
	background: #fafafa;
}
#block-views-views_weekend_of_labor-block_2 tr.even,
#block-views-views_skill_development-block_2 tr.even {
	background: #whitesmoke;
}

#footer #block-block-15 {
	float: left;
    margin: 10px 15px;
    padding: 0;
    width: 220px;
}


@media only screen and (max-width: 360px) {
	#site-name a {
		min-width: 290px;
		width: 100%;
	}
}

#block-blockclone-21 { 
	width: 100%;
	max-width: 480px;
	position: relative;
	margin: 10px 5px;
	padding: 0;
	float: left;
}

#footer a.oldweb, #footer a.poll {
	background-color: #ffffff;
	color: #000000;
	padding: 2px 10px;
	border-radius: 5px;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 60%;
}
.video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


body.logged-in.admin-menu #block-locale-0 {
	width: 80px;
}
body.logged-in.lang-en.admin-menu #block-locale-0 {
	width: 110px;
}
body.logged-in.admin-menu div.region-topbar {
	right: 0;
}
body.logged-in.admin-menu #search-box #search-theme-form .form-radios {
	margin-right: 80px;
}


.rss-slide-news {
	float:left; width:33%; padding-right:3px;
}


#block-views-views_government_policy-block_1 .view-header , 
#block-views-views_prime_ministers-block_1 .view-header ,
#block-views-views_word_of_labor-block_1  .view-header {
	
	
	font-weight:bold;
	font-family: 'THSarabunNew_Bold';
}


#block-views-views_government_policy-block_1 .view-content , 
#block-views-views_prime_ministers-block_1 .view-content ,
#block-views-views_word_of_labor-block_1  .view-content {
	height: 280px;
	overflow: hidden;
	text-align: center;
	vertical-align: middle;
}


#block-views-views_government_policy-block_1 .view-footer , 
#block-views-views_prime_ministers-block_1 .view-footer ,
#block-views-views_word_of_labor-block_1  .view-footer {
	
	
	font-weight:bold;
	text-align: right;
	font-family: 'THSarabunNew_Bold';
	font-size:20px;
	color: #8B008B;
}

img.imagefield-field_government_policy_picture,
img.imagefield-field_prime_ministers_picture,
img.imagefield-field_word_of_labor_picture {

	width: 327px;
	height: 280px;
	
}

@media (max-width: 400px) {
	#block-block-59 {
		width: 400px;
	}
	
	a.logo-mol {
		background-size: 220px 50px;
		width: 220px;
		height: 50px;
	}
}

@media (min-width: 376px) {
	.policy-container .col-block-img {
		width:33%; float:left;
	}
}
@media (max-width: 375px) {
	img.imagefield-field_government_policy_picture,
	img.imagefield-field_prime_ministers_picture,
	img.imagefield-field_word_of_labor_picture {

		width: 100%;
		height: auto;
		
	}
	
	#views_slideshow_cycle_main_text_slide-block_1 {
		height: auto !important;
	}
}

img.square-slide {
	width: 327px !important;
	height: 280px !important;
}

#black-ribbon {
    height: 85px;
    width: 85px !important;
    background: url(../images/ribbon.png) top left no-repeat;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9999;
    background-size: 85px 85px;
}


/* Admin */
body.page-admin-build-block #content-area form#block-admin-display-form tr.draggable td:nth-child(3) {
	display: table-cell !important;
}

.view-data-export .view-filters {
	display: none !important;
}

#views_slideshow_cycle_main_text_slide-block_1 {
	font-size: 1.4em;
	line-height: 1.4em;
	background: rgba(139,0,139,1);
	font-family: 'thaisans_neue_semibold';
	color: #ffffff;
	height: 130px;
}

#views_slideshow_cycle_main_text_slide-block_1 .views-field-body {
	padding-left:50px;
	padding-right: 10px;
	background: url(../images/horn2.png) top left no-repeat;
	background-size: 40px;
	background-position-y: -5px;
}

#views_slideshow_cycle_main_text_slide-block_1 .views-field-body a {
	color: #f9c200;
}

#block-views-banner_slide-block_1 {
  margin-top: 32px; position: relative;
}

/*
#block-views-banner_slide-block_1 .views-field-field-highlight-image-fid img {
  height: 50px !important; margin: 1px 2px;
}
#views_slideshow_cycle_teaser_section_banner_slide-block_1 {
  text-align: center;
  margin: 0 40px;
  width: 920 !important;
  height: 54px !important;
} 
#views_slideshow_cycle_teaser_section_banner_slide-block_1 .views_slideshow_cycle_slide {
  width: 900px !important;
  height: 52px !important;
  padding: 1px;
}
#views_slideshow_cycle_teaser_section_banner_slide-block_1 .views_slideshow_cycle_slide .views-row {
  display: inline-block;
}

#views_slideshow_controls_text_banner_slide-block_1 a {
  width: 40px; height: 40px;
  font-size: 0px !important;
}
#views_slideshow_controls_text_banner_slide-block_1 a:before {
    font-family: "flexslider-icon";
    font-size: 30px;
    line-height: 40px;
    display: inline-block; 
  position: absolute;
  top: 10px;
}
#views_slideshow_controls_text_previous_banner_slide-block_1 a:before {
    content: '\f001';
    left: 0;
}
#views_slideshow_controls_text_next_banner_slide-block_1 a:before { 
    content: '\f002';
    right: 0;
}
*/


.view-id-Promote_Video.view-display-id-page_1 .views-row {
  display: inline-block;
  width: 22%;
  padding: 0 0 20px 2%;
  vertical-align: top;
  text-align: center;
}
.view-id-Promote_Video.view-display-id-page_1 .views-row img {
  width: 220px !important;
}

.page-content-70372-1527508781 .views-admin-links,
.page-content-70372-1527508781 .edit,
.page-content-70372-1527508781 #admin-menu {
  display: none !important;
} 
.page-content-70372-1527508781 #content {
  margin-right: 0 !important;
  margin-left: 0 !important;
  max-width: 760px !important;
}

.issuuembed {
	width:200px; 
	height:283px;
}

.stat-counter {
	background: #000000;
	font-size: 0.8em;
	padding: 3px;
	border-radius: 3px;
}

