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

/* Setting STYLES (CSS) starts here Setting STYLES ============================================================================ */

.myDiv {background-color: beige; text-align: center;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 10px;
  padding-left: 0px;}
.myDiv2 {background-color: white; text-align: center;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 10px;
  padding-left: 0px;}
.myDiv3 {background-color: Peru; }  

h1 {font-family:arial; background-color: #1abc9c; color: white; text-align: center;}
h2 {font-family:arial; background-color: goldenrod; color: white; text-align: center;}
h4 {font-family:arial; background-color: beige; text-align: center; }
h5 {font-family:arial; text-align: center; }
h6 {font-family:arial; text-align: center; font-weight: normal}
h7 {font-family:arial; font-weight: bold; text-align: left; }
p  {font-family:arial; font-family:Georgia, "Times New Roman", Times, serif}
p  {font-size:13px;}   /*original 13px*/
a  {font-family:arial;}
td  {font-family:arial;}
td  {font-size:15px;}

hr.new1 {border-top: 1px solid black;}

body {margin:30px; text-align: center;} 

* {
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
}

/* Style the header */
.header {
  position:fixed; /* to fix header while scrolling*/
  /*top: 0;*/
  width: 100%; /* added to full screen width*/
  padding: 10px;
  text-align: center;
  background: Teal;
  color: white;
}

/* Increase the font size of the h1 element */
.header h1 {
  font-size: 40px;
}

/* Style the top navigation bar */
.navbar {
  position: fixed;
  width:100%; /* 100% to full screen width*/
  top: 170;
  overflow: hidden;
  background-color: #333;
}

/* Style the navigation bar links */
.navbar a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
}

/* Right-aligned link */
.navbar a.right {
  float: right;
}

/* Change color on hover */
.navbar a:hover {
  background-color: #ddd;
  color: black;
}

/* Column container */
.row {  
  display: flex;
  flex-wrap: wrap;
}

/* Create two unequal columns that sits next to each other */
/* Sidebar/left column */
.side {
  flex: 35%;
  margin-top: 220;
  /*position: fixed;*/
  /* width: 35%; */
  /* margin-top: 150; */
  background-color: #f1f1f1;
  padding: 20px;
}

/* Main column */
.main {   
  margin-top: 220;
  flex: 65%;
  background-color: white;
  padding: 20px;
}

/* Fake image, just for this example */
.fakeimg {
  background-color: #aaa;
  width: 100%;
  padding: 20px;
}

/* Footer */
.footer {
  padding: 10px;
  text-align: center;
  background: #ddd;
}

/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
/*@media screen and (max-width: 700px) {   original 700px*/
@media screen and (max-width: 400px) {
  .row {   
    flex-direction: column;
  }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .navbar a {
    float: none;
    width:100%;
  }
}
.style5 {
	font-size: x-large
}
.style6 {
	font-size: xx-large;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
}
.style7 {font-family: Verdana, Arial, Helvetica, sans-serif}
.style10 {font-weight: bold}

/* Setting STYLES for Tables */
/* Codes untuk create semua tables untuk web ini: */
#jwstable {
  font-family: Arial, Helvetica, sans-serif;
  font-size:large;
  border-collapse: collapse;
  width: 350px;
  margin:auto;
}

#jwstable td, #jwstable th {
  border: 1px solid #ddd;
  padding: 1px;
}

/* #jwstable tr:nth-child(even){background-color: #f2f2f2;} */
#jwstable tr:nth-child(odd){background-color: AliceBlue;}

#jwstable th {
  padding-top: 3px;
  padding-bottom: 3px;
  text-align: left;
  background-color: LightSeaGreen;
  color: white;
}

/*-- Setting STYLES (CSS) ends here Setting STYLES ============================================================================== */

