*{
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

a {
	color:#000;
}

header{
    background-color: #FF99FF;
    display: flex;
    flex: 0 auto;
    align-items: center;
    padding: 15px 0;
}

header img{
    width: 100px;
    flex: 0;
}

header nav{
    flex: 1;
    display: flex;
    justify-content: space-evenly;
}

header nav a{
    text-transform: uppercase;
    text-decoration: none;
    color: black;
    transition: 0.5s;
} 

header nav a:hover{
    transform: scale(1.1);
    color: blue;
    font-weight: bold;
}

h1{
    font-size:24px;
    margin-top: 20px;
}

.artic_one{
    overflow: hidden;
    width: 33%;
    margin: 0 auto;
    text-align: center;
}

.indexpage{
    line-height: 40px;
    text-align: center;
}

table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
    margin-right: 25px;
    margin-left: 25px
  }
  
td, th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
  }

.overflow_hidden {
	overflow:hidden;
}

.float_left {
	float:left;
}

.margin_center {
	margin:0 auto;
}

.width_33_percent {
	width:33%;
}

.width_50_percent {
	width:50%;
}

.width_80_percent {
	width:80%;
}

.chut_add{
    list-style-type: none;
      
}

.width_100_percent {
	width:100%;
}

.margin_top_20px {
	margin-top:20px;
}

.margin_top_10px {
	margin-top:10px;
}

.margin_bottom_10px{
    margin-bottom: 10px;}

.margin_bottom_20px{
    margin-bottom: 20px;}

.margin_right_25px{
    margin-right: 50px;
}

.margin_left_25px {
    margin-left: 25px;
}

.line_height_40px {
	line-height:40px;
}

.line_height_20px{
    line-height: 20px;
}

.text_align_center {
	text-align:center;
}

.text_align_right {
	text-align:right;
}

.height_200px {
	height:200px;
}

.font_size_24px {
	font-size:24px;
}

.font_size_16px{
    font-size: 16px;
    font-weight: bold;
}

.pinkBorder{
    border: #FF99FF solid 3px;
    margin: 10px;
}

.column {
    float: left;
    width: 33.33%;
  }

  .row:after {
    content: "";
    display: table;
    clear: both;
  }

footer{
    background-color: #FF99FF;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
	height:30px;
	line-height:30px;
}


