@charset "UTF-8";

a:link,a:active,a:hover {
  color:#0000ff;
}

a:visited {
  color:#;
}

body {
  background-color:#ffffff;
  background-color:#ffffff;
  color:#000000;
  font-family:'Palatino Linotype';
  font-weight:normal;
  font-style:normal;
  font-size:16px;
}

.profile_section_content {
  color:#000000;
  border:0 none #;
  padding:5px;
  margin:5px;
  -webkit-border-radius:5px;
  -moz-border-radius:5px;
  border-radius:5px;
  -webkit-box-shadow:0 0 0 #777777;
  -moz-box-shadow:0 0 0 #777777;
  box-shadow:0 0 0 #777777;
}

.profile_section_background {
  background-color:transparent;
  background-color:#FFFFFF;
  filter:alpha(opacity=100);
  opacity:1;
}

.img_radius_shadow {
  -webkit-border-radius:0;
  -moz-border-radius:0;
  border-radius:0;
  -webkit-box-shadow:0 0 0 #777777;
  -moz-box-shadow:0 0 0 #777777;
  box-shadow:0 0 0 #777777;
}

.profile_section_content .heading {
  padding:5px;
  background-color:#000000;
  color:#FFFFFF;
  font-family:'Verdana';
  font-weight:normal;
  font-style:normal;
  font-size:14px;
  -webkit-border-radius:0;
  -moz-border-radius:0;
  border-radius:0;
  -webkit-box-shadow:0 0 0 #777777;
  -moz-box-shadow:0 0 0 #777777;
  box-shadow:0 0 0 #777777;
  -webkit-text-shadow:0 0 0 #777777;
  -moz-text-shadow:0 0 0 #777777;
  text-shadow:0 0 0 #777777;
}

.content {
  padding:5px;
}

.my_mfc_news_feed {
  width:100%;
  height:330px;
}

.grid {
  display:grid;
  grid-template-columns:150px auto 150px;
  grid-template-rows:repeat(3,100px);
  grid-gap:1em;
  grid-template-areas:"header header header" "sidebar-1 article sidebar-2" "footer footer footer";
}

header {
  grid-area:header;
}

footer {
  grid-area:footer;
}

.sidebar-left {
  grid-area:sidebar-1;
}

article {
  grid-area:article;
}

.sidebar-right {
  grid-area:sidebar-2;
}