/*
 *  psd2css.css
 *
 *  This is your external CSS style sheet. It defines all of the CSS styles that you
 *  are using in your page.  If you are going to create multiple pages from the same
 *  PSD file (like a template), you will share this CSS style sheet between the various
 *  pages.
 *
 */

body{
  /* This is the background image to the entire page that you
   * get because of the layer 'pink_bodybg' that you created.
   * If you would like this layer to stay static relative to the
   * browser window (you don't want it to scroll with your content)
   * just add the word 'fixed' to the line below (before the ;). */
  background: url(Layer-1.png);
}

/* You named this layer main_bkgnd_center */
#Layer-2 {
  position: absolute;
  margin-left: -428.5px;
  left: 50%;
  top: +3px;
  width: 857px;
  height: 1150px;
  z-index: 2;
  background-image: url(Layer-2.png);
}

/* You named this layer main_text */
#Layer-3 {
  position: absolute;
  left: 140px;
  top: 143px;
  width: 575px;
  height: 834px;
  z-index: 3;

  /* Here are some suggestions for this area's text settings */
  text-align: left;
  /* If you don't want scroll bars when your content gets bigger than the space
   * you designed for it, remove the following line.      */
  overflow: auto;
  font-family: Georgia, Times New Roman, Times, serif;
  font-size: small;
  color: #000000;
}

/* You named this layer signup_link */
#Layer-4 {
  position: absolute;
  left: 30px;
  top: 147px;
  width: 86px;
  height: 61px;
  z-index: 4;
}

/* You named this layer signup_linkover */
#Layer-5 {
  position: absolute;
  left: 28px;
  top: 145px;
  width: 88px;
  height: 63px;
  z-index: 5;
}

/* You named this layer dawn pic_link */
#Layer-6 {
  position: absolute;
  left: 751px;
  top: 274px;
  width: 95px;
  height: 141px;
  z-index: 6;
}

/* You named this layer dawn pic_linkover */
#Layer-7 {
  position: absolute;
  left: 751px;
  top: 274px;
  width: 95px;
  height: 141px;
  z-index: 7;
}

/* Here are some examples of how you might want to change the
 * look and behavior of the links on your page.  Some examples for
 * further customization are included in comments.  */
a { cursor: pointer; }
a:link { color: #cc0066;
  font-weight: bold; }
a:visited { color: #cc0066; }
a:hover {
  color: #000000;
  /* text-decoration: underline; */
font-weight: bold;
}