
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_802010a019ecc4f990e25ecb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e17c638b889b0df0b80d4c7e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_0a6ecd40cf249cc68c49e532.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_4f38e3f79f8654097739fd4c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_31a53f3208a0f21b31d0ffb5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_19250881b7a1c2d3dd6b4959.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_43358ab49acc197eae0554c9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a9df31406223b2f1de40793e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_3da78d1f5aeeaf6b8f623e09.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_090768b073f7b701c802dbf7.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_edcbd811dd6277d04c2c65f3.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_7d060328dd559b2c04094300.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_5d5c0b5697f56617998b2172.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_ee8eb0f5e6b9b0803ddc0f08.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_b1b18012f86c1d0c5198abe7.woff2')format("woff");}.fff{font-family:fff;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_64915c53a538ac987f54bf3c.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_22f1f5b4b5f91da8d1de03fa.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_75b9d819e10f6c2b0696aa89.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_91fddb07dad205c5f617504d.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_2761c5aadcfa60cdcee53e71.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_39870357ba251d46962c4264.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_0f8ce230dc1b527e822a09e0.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_637eb6e76d395acb24f84f89.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_25a705e6c88f30505c04e1c7.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_1183d3e2c7a020dd02dcd9ff.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m48{transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.072500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072500,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.077500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077500,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.082500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082500,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(2.037500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.037500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.037500,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-1.500000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:0.000000px;}
._2{margin-left:-12.046107px;}
._0{margin-left:-2.952710px;}
._1{margin-left:-1.455593px;}
.fc0{color:transparent;}
.fs6{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:78.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1ba{bottom:90.823500px;}
.y132{bottom:91.948500px;}
.y133{bottom:92.323500px;}
.y277{bottom:92.848500px;}
.y278{bottom:93.898500px;}
.y97{bottom:94.423500px;}
.y98{bottom:94.500000px;}
.y279{bottom:96.073500px;}
.ycc{bottom:96.750000px;}
.y16e{bottom:98.023500px;}
.y16d{bottom:98.398500px;}
.y2d{bottom:98.548500px;}
.y16c{bottom:98.773500px;}
.y205{bottom:101.023500px;}
.y1b9{bottom:111.000000px;}
.y1b7{bottom:111.298500px;}
.y1b8{bottom:111.375000px;}
.y131{bottom:112.125000px;}
.y130{bottom:112.500000px;}
.y273{bottom:113.400000px;}
.y96{bottom:114.598500px;}
.y274{bottom:114.823500px;}
.y95{bottom:114.973500px;}
.y275{bottom:115.875000px;}
.ycb{bottom:117.000000px;}
.y276{bottom:117.973500px;}
.y16b{bottom:118.573500px;}
.y2c{bottom:119.025000px;}
.y204{bottom:119.400000px;}
.y203{bottom:120.823500px;}
.y1b6{bottom:131.173500px;}
.y12f{bottom:132.298500px;}
.y12e{bottom:132.973500px;}
.y12d{bottom:133.048500px;}
.y26f{bottom:133.500000px;}
.y94{bottom:134.400000px;}
.y270{bottom:134.548500px;}
.y93{bottom:134.775000px;}
.y271{bottom:136.048500px;}
.yca{bottom:137.098500px;}
.y272{bottom:137.775000px;}
.y2b{bottom:138.823500px;}
.y16a{bottom:139.423500px;}
.y202{bottom:140.625000px;}
.y1b4{bottom:152.400000px;}
.y12b{bottom:152.473500px;}
.y12c{bottom:152.775000px;}
.y1b5{bottom:153.073500px;}
.y12a{bottom:153.150000px;}
.y92{bottom:154.573500px;}
.y91{bottom:154.875000px;}
.y90{bottom:155.250000px;}
.y26e{bottom:155.848500px;}
.y29{bottom:159.000000px;}
.y169{bottom:159.223500px;}
.y2a{bottom:159.375000px;}
.y201{bottom:160.048500px;}
.y200{bottom:160.423500px;}
.y1ff{bottom:160.798500px;}
.y1b2{bottom:172.198500px;}
.y129{bottom:172.275000px;}
.y128{bottom:172.650000px;}
.y127{bottom:172.948500px;}
.y1b3{bottom:173.250000px;}
.y8f{bottom:175.048500px;}
.y26d{bottom:176.400000px;}
.y28{bottom:178.798500px;}
.y168{bottom:179.098500px;}
.yc9{bottom:179.173500px;}
.y1fe{bottom:180.598500px;}
.y1b0{bottom:192.750000px;}
.y1b1{bottom:193.423500px;}
.y126{bottom:195.298500px;}
.y8e{bottom:196.650000px;}
.y8d{bottom:197.098500px;}
.y26c{bottom:197.173500px;}
.y27{bottom:198.973500px;}
.yc8{bottom:200.098500px;}
.y167{bottom:201.000000px;}
.yc7{bottom:201.150000px;}
.y1fd{bottom:202.198500px;}
.y1fc{bottom:202.875000px;}
.y8c{bottom:209.250000px;}
.y1af{bottom:215.098500px;}
.y125{bottom:215.473500px;}
.y8b{bottom:216.900000px;}
.y8a{bottom:217.198500px;}
.y26b{bottom:218.098500px;}
.y26{bottom:218.775000px;}
.yc6{bottom:219.223500px;}
.y166{bottom:221.173500px;}
.y1fb{bottom:222.673500px;}
.y124{bottom:235.275000px;}
.y1ae{bottom:235.500000px;}
.y123{bottom:235.573500px;}
.y89{bottom:237.000000px;}
.y88{bottom:237.375000px;}
.y87{bottom:237.673500px;}
.y26a{bottom:237.900000px;}
.y86{bottom:238.048500px;}
.y23{bottom:238.875000px;}
.y24{bottom:238.948500px;}
.y25{bottom:239.625000px;}
.y165{bottom:240.973500px;}
.y1fa{bottom:241.798500px;}
.y1f9{bottom:242.173500px;}
.yc5{bottom:242.250000px;}
.y1f8{bottom:242.923500px;}
.y1ad{bottom:255.298500px;}
.y122{bottom:255.448500px;}
.y267{bottom:256.650000px;}
.y85{bottom:257.098500px;}
.y84{bottom:257.548500px;}
.y268{bottom:258.750000px;}
.y22{bottom:259.048500px;}
.y269{bottom:259.875000px;}
.yc4{bottom:261.298500px;}
.y1f7{bottom:262.650000px;}
.y164{bottom:262.875000px;}
.y1ac{bottom:275.473500px;}
.y121{bottom:275.625000px;}
.y120{bottom:276.298500px;}
.y83{bottom:277.648500px;}
.y266{bottom:278.250000px;}
.y21{bottom:278.848500px;}
.y20{bottom:279.223500px;}
.yc3{bottom:281.098500px;}
.yc2{bottom:281.398500px;}
.yc1{bottom:281.473500px;}
.y163{bottom:282.375000px;}
.y1f6{bottom:282.448500px;}
.yc0{bottom:282.523500px;}
.y1f5{bottom:282.823500px;}
.y1f4{bottom:283.198500px;}
.y162{bottom:283.423500px;}
.y161{bottom:283.798500px;}
.y1a9{bottom:295.648500px;}
.y1ab{bottom:295.723500px;}
.y1aa{bottom:296.023500px;}
.y11f{bottom:296.848500px;}
.y11e{bottom:297.898500px;}
.y265{bottom:298.048500px;}
.y1f{bottom:299.398500px;}
.y82{bottom:299.625000px;}
.ybf{bottom:301.573500px;}
.y160{bottom:302.173500px;}
.y15f{bottom:303.223500px;}
.y1f3{bottom:304.798500px;}
.y1a7{bottom:315.448500px;}
.y1a8{bottom:315.823500px;}
.y11d{bottom:316.948500px;}
.y11c{bottom:317.323500px;}
.y11b{bottom:317.698500px;}
.y262{bottom:317.848500px;}
.y263{bottom:318.148500px;}
.y1e{bottom:319.198500px;}
.y81{bottom:319.423500px;}
.y80{bottom:319.798500px;}
.y7f{bottom:320.173500px;}
.y264{bottom:320.698500px;}
.y15e{bottom:322.723500px;}
.ybe{bottom:323.250000px;}
.y15d{bottom:323.773500px;}
.y15c{bottom:324.448500px;}
.y1f2{bottom:324.598500px;}
.y1a5{bottom:337.048500px;}
.y1a6{bottom:337.125000px;}
.y11a{bottom:337.798500px;}
.y1d{bottom:339.000000px;}
.y25e{bottom:339.375000px;}
.y7e{bottom:339.598500px;}
.y25f{bottom:340.875000px;}
.y260{bottom:341.625000px;}
.y261{bottom:342.673500px;}
.y15b{bottom:342.823500px;}
.ybd{bottom:342.973500px;}
.y15a{bottom:343.875000px;}
.y159{bottom:343.948500px;}
.ybc{bottom:344.098500px;}
.y158{bottom:344.250000px;}
.y1f1{bottom:344.773500px;}
.y1a2{bottom:357.223500px;}
.y1a3{bottom:357.598500px;}
.y119{bottom:357.673500px;}
.y1a4{bottom:357.898500px;}
.y1b{bottom:359.098500px;}
.y1c{bottom:359.173500px;}
.y7d{bottom:359.773500px;}
.y7c{bottom:360.523500px;}
.y25c{bottom:360.973500px;}
.y25d{bottom:361.798500px;}
.ybb{bottom:363.898500px;}
.y1f0{bottom:365.250000px;}
.y157{bottom:365.548500px;}
.y156{bottom:365.848500px;}
.y155{bottom:365.923500px;}
.y19f{bottom:377.398500px;}
.y1a0{bottom:377.698500px;}
.y118{bottom:377.773500px;}
.y1a1{bottom:378.073500px;}
.y1a{bottom:379.648500px;}
.y7b{bottom:379.875000px;}
.y7a{bottom:379.948500px;}
.y25b{bottom:381.148500px;}
.yba{bottom:383.698500px;}
.y1ef{bottom:384.000000px;}
.y154{bottom:384.973500px;}
.y1ee{bottom:385.125000px;}
.y19d{bottom:397.875000px;}
.y19e{bottom:398.250000px;}
.y19{bottom:399.448500px;}
.y117{bottom:399.750000px;}
.y116{bottom:400.500000px;}
.y79{bottom:401.548500px;}
.yb9{bottom:403.125000px;}
.yb8{bottom:403.500000px;}
.yb7{bottom:403.875000px;}
.y153{bottom:404.773500px;}
.y152{bottom:405.823500px;}
.y151{bottom:406.198500px;}
.y1ed{bottom:407.098500px;}
.y19b{bottom:418.048500px;}
.y19c{bottom:418.423500px;}
.y18{bottom:419.250000px;}
.y115{bottom:419.548500px;}
.y114{bottom:419.923500px;}
.y258{bottom:421.500000px;}
.y78{bottom:421.648500px;}
.y77{bottom:422.023500px;}
.y259{bottom:422.923500px;}
.y25a{bottom:423.973500px;}
.y150{bottom:425.250000px;}
.yb6{bottom:425.473500px;}
.y1ec{bottom:427.198500px;}
.y19a{bottom:438.223500px;}
.y17{bottom:439.048500px;}
.y111{bottom:439.348500px;}
.y112{bottom:439.423500px;}
.y113{bottom:439.723500px;}
.y110{bottom:440.473500px;}
.y76{bottom:441.448500px;}
.y75{bottom:442.198500px;}
.y257{bottom:443.098500px;}
.yb5{bottom:445.948500px;}
.y14f{bottom:447.223500px;}
.y1eb{bottom:447.375000px;}
.y16{bottom:459.223500px;}
.y198{bottom:459.448500px;}
.y10f{bottom:459.523500px;}
.y199{bottom:459.823500px;}
.y10e{bottom:460.948500px;}
.y253{bottom:461.098500px;}
.y74{bottom:461.625000px;}
.y254{bottom:461.848500px;}
.y255{bottom:463.273500px;}
.y73{bottom:463.423500px;}
.y256{bottom:464.698500px;}
.yb4{bottom:465.375000px;}
.y1ea{bottom:466.423500px;}
.y14e{bottom:467.023500px;}
.y1e9{bottom:467.173500px;}
.y1e8{bottom:467.923500px;}
.y14d{bottom:468.823500px;}
.y15{bottom:479.398500px;}
.y197{bottom:480.000000px;}
.y24d{bottom:480.898500px;}
.y24e{bottom:481.273500px;}
.y72{bottom:481.423500px;}
.y71{bottom:482.173500px;}
.y24f{bottom:482.323500px;}
.y250{bottom:483.375000px;}
.y251{bottom:484.125000px;}
.y252{bottom:484.875000px;}
.yb3{bottom:485.173500px;}
.yb2{bottom:485.923500px;}
.yb1{bottom:486.673500px;}
.y14c{bottom:487.198500px;}
.y1e7{bottom:487.273500px;}
.y1e6{bottom:488.773500px;}
.y14{bottom:499.198500px;}
.y10d{bottom:499.500000px;}
.y196{bottom:500.098500px;}
.y10c{bottom:500.173500px;}
.y10b{bottom:500.923500px;}
.y24a{bottom:502.500000px;}
.y24b{bottom:503.173500px;}
.y70{bottom:503.398500px;}
.y6f{bottom:503.773500px;}
.y6e{bottom:504.823500px;}
.y6d{bottom:505.198500px;}
.y24c{bottom:505.348500px;}
.yb0{bottom:505.723500px;}
.y14b{bottom:507.000000px;}
.y1e5{bottom:508.198500px;}
.y1e4{bottom:508.573500px;}
.y1e3{bottom:508.875000px;}
.y1e2{bottom:509.250000px;}
.y1e1{bottom:510.000000px;}
.y13{bottom:519.298500px;}
.y195{bottom:520.273500px;}
.y194{bottom:520.348500px;}
.y10a{bottom:521.098500px;}
.y109{bottom:522.148500px;}
.y247{bottom:523.048500px;}
.y6c{bottom:523.198500px;}
.y248{bottom:523.723500px;}
.y6b{bottom:524.250000px;}
.y249{bottom:525.523500px;}
.yaf{bottom:528.375000px;}
.y14a{bottom:528.898500px;}
.y1e0{bottom:529.423500px;}
.y149{bottom:529.723500px;}
.y148{bottom:530.023500px;}
.y147{bottom:530.398500px;}
.y12{bottom:539.473500px;}
.y192{bottom:540.073500px;}
.y193{bottom:540.148500px;}
.y108{bottom:541.198500px;}
.y107{bottom:541.573500px;}
.y106{bottom:542.323500px;}
.y245{bottom:543.148500px;}
.y6a{bottom:544.500000px;}
.y246{bottom:545.023500px;}
.yae{bottom:547.198500px;}
.y1df{bottom:548.173500px;}
.y146{bottom:548.773500px;}
.y1de{bottom:549.598500px;}
.y11{bottom:559.348500px;}
.y105{bottom:560.698500px;}
.y104{bottom:561.075000px;}
.y191{bottom:561.750000px;}
.y190{bottom:562.048500px;}
.y103{bottom:562.125000px;}
.y18f{bottom:562.423500px;}
.y69{bottom:564.598500px;}
.y244{bottom:565.125000px;}
.yad{bottom:567.298500px;}
.y145{bottom:568.875000px;}
.y1dd{bottom:569.098500px;}
.y10{bottom:579.450000px;}
.y102{bottom:581.548500px;}
.y18e{bottom:581.848500px;}
.y18d{bottom:582.223500px;}
.y240{bottom:583.125000px;}
.y241{bottom:584.173500px;}
.y68{bottom:584.398500px;}
.y242{bottom:585.298500px;}
.y243{bottom:586.348500px;}
.yac{bottom:587.473500px;}
.y144{bottom:588.673500px;}
.y1dc{bottom:589.500000px;}
.y29f{bottom:596.250000px;}
.y29e{bottom:597.298500px;}
.y29d{bottom:597.750000px;}
.y29c{bottom:598.048500px;}
.yf{bottom:600.000000px;}
.y101{bottom:601.723500px;}
.y18c{bottom:602.023500px;}
.y23d{bottom:604.723500px;}
.y23e{bottom:606.148500px;}
.y67{bottom:606.375000px;}
.yab{bottom:607.273500px;}
.yaa{bottom:607.575000px;}
.y143{bottom:608.848500px;}
.y23f{bottom:609.075000px;}
.y1db{bottom:611.098500px;}
.ye{bottom:619.500000px;}
.y18a{bottom:621.825000px;}
.y189{bottom:622.200000px;}
.y18b{bottom:622.575000px;}
.y100{bottom:622.950000px;}
.yff{bottom:624.075000px;}
.yfe{bottom:624.750000px;}
.y29b{bottom:626.173500px;}
.y66{bottom:626.473500px;}
.y23b{bottom:626.700000px;}
.y23c{bottom:628.798500px;}
.ya9{bottom:629.548500px;}
.y1da{bottom:631.273500px;}
.y142{bottom:631.950000px;}
.yc{bottom:639.223500px;}
.yd{bottom:639.298500px;}
.yb{bottom:639.900000px;}
.y188{bottom:642.000000px;}
.yfd{bottom:642.750000px;}
.y29a{bottom:643.048500px;}
.yfc{bottom:643.500000px;}
.y299{bottom:643.798500px;}
.yfb{bottom:644.173500px;}
.yfa{bottom:644.923500px;}
.y298{bottom:645.223500px;}
.yf9{bottom:645.298500px;}
.y238{bottom:645.375000px;}
.y297{bottom:645.973500px;}
.y239{bottom:646.125000px;}
.y296{bottom:646.650000px;}
.y23a{bottom:647.548500px;}
.ya8{bottom:649.348500px;}
.y65{bottom:649.875000px;}
.y141{bottom:650.625000px;}
.y1d9{bottom:651.448500px;}
.ya{bottom:659.400000px;}
.yf8{bottom:662.923500px;}
.y187{bottom:663.223500px;}
.yf7{bottom:663.298500px;}
.y186{bottom:663.598500px;}
.yf6{bottom:663.673500px;}
.y185{bottom:663.900000px;}
.y295{bottom:664.275000px;}
.yf5{bottom:664.423500px;}
.y294{bottom:666.150000px;}
.y235{bottom:666.673500px;}
.y293{bottom:666.823500px;}
.y236{bottom:668.473500px;}
.y64{bottom:668.625000px;}
.y237{bottom:668.775000px;}
.ya7{bottom:669.223500px;}
.y140{bottom:670.500000px;}
.y1d8{bottom:671.323500px;}
.y9{bottom:679.500000px;}
.yf4{bottom:682.348500px;}
.y292{bottom:683.025000px;}
.y184{bottom:683.400000px;}
.yf3{bottom:683.775000px;}
.y183{bottom:684.073500px;}
.y291{bottom:685.198500px;}
.y63{bottom:687.375000px;}
.y233{bottom:687.900000px;}
.y62{bottom:688.423500px;}
.y234{bottom:688.948500px;}
.y61{bottom:689.098500px;}
.ya6{bottom:689.698500px;}
.y60{bottom:690.223500px;}
.y13f{bottom:690.598500px;}
.y1d7{bottom:691.798500px;}
.y8{bottom:699.673500px;}
.yf2{bottom:703.573500px;}
.y182{bottom:703.875000px;}
.y181{bottom:703.948500px;}
.y290{bottom:705.298500px;}
.y22e{bottom:706.948500px;}
.y22f{bottom:707.400000px;}
.y5f{bottom:707.848500px;}
.y230{bottom:708.448500px;}
.y5e{bottom:708.598500px;}
.y231{bottom:709.500000px;}
.y5d{bottom:709.723500px;}
.ya5{bottom:709.798500px;}
.y232{bottom:710.250000px;}
.y13e{bottom:710.775000px;}
.y1d6{bottom:710.848500px;}
.y1d5{bottom:713.025000px;}
.y28f{bottom:722.625000px;}
.yf1{bottom:722.698500px;}
.y180{bottom:723.673500px;}
.yf0{bottom:723.750000px;}
.y17f{bottom:724.048500px;}
.y28e{bottom:724.125000px;}
.yef{bottom:724.500000px;}
.y28d{bottom:725.473500px;}
.yee{bottom:725.923500px;}
.y7{bottom:726.375000px;}
.y28c{bottom:726.598500px;}
.y28b{bottom:727.275000px;}
.y229{bottom:727.500000px;}
.y28a{bottom:727.650000px;}
.y22a{bottom:727.875000px;}
.y5c{bottom:728.400000px;}
.y22b{bottom:728.923500px;}
.y22c{bottom:729.673500px;}
.y5b{bottom:729.900000px;}
.y22d{bottom:729.973500px;}
.y5a{bottom:730.573500px;}
.y1d4{bottom:731.025000px;}
.ya4{bottom:731.400000px;}
.y1d3{bottom:732.448500px;}
.y13d{bottom:732.673500px;}
.y1d2{bottom:733.500000px;}
.yed{bottom:742.198500px;}
.yec{bottom:743.625000px;}
.y17e{bottom:743.848500px;}
.y289{bottom:745.650000px;}
.y225{bottom:747.298500px;}
.y59{bottom:747.448500px;}
.y226{bottom:747.973500px;}
.y227{bottom:748.723500px;}
.y58{bottom:748.875000px;}
.y228{bottom:749.775000px;}
.ya3{bottom:751.275000px;}
.y13c{bottom:752.173500px;}
.y1d1{bottom:753.673500px;}
.y17d{bottom:765.073500px;}
.yeb{bottom:765.150000px;}
.y17c{bottom:765.448500px;}
.y17b{bottom:765.823500px;}
.yea{bottom:765.900000px;}
.ye9{bottom:766.275000px;}
.ye8{bottom:766.573500px;}
.ye7{bottom:767.698500px;}
.y223{bottom:768.900000px;}
.y224{bottom:770.698500px;}
.ya2{bottom:771.750000px;}
.y57{bottom:771.900000px;}
.y13b{bottom:772.348500px;}
.y56{bottom:772.650000px;}
.y6{bottom:772.800000px;}
.y5{bottom:773.175000px;}
.y1d0{bottom:773.473500px;}
.y288{bottom:783.448500px;}
.ye6{bottom:784.948500px;}
.y17a{bottom:785.250000px;}
.y179{bottom:785.625000px;}
.y178{bottom:786.000000px;}
.ye5{bottom:786.073500px;}
.y287{bottom:787.425000px;}
.ye4{bottom:787.500000px;}
.y55{bottom:789.223500px;}
.y21f{bottom:789.750000px;}
.y54{bottom:789.900000px;}
.y53{bottom:790.275000px;}
.y52{bottom:790.650000px;}
.y220{bottom:790.800000px;}
.y51{bottom:791.400000px;}
.y221{bottom:791.550000px;}
.ya1{bottom:791.625000px;}
.y222{bottom:792.300000px;}
.y13a{bottom:792.448500px;}
.y50{bottom:792.525000px;}
.y1cf{bottom:792.973500px;}
.y1ce{bottom:795.073500px;}
.y1cd{bottom:795.823500px;}
.y286{bottom:803.323500px;}
.y2{bottom:803.400000px;}
.y3{bottom:803.775000px;}
.y4{bottom:804.150000px;}
.ye3{bottom:804.448500px;}
.y285{bottom:805.500000px;}
.y177{bottom:805.800000px;}
.ye2{bottom:806.550000px;}
.ye1{bottom:806.925000px;}
.ye0{bottom:808.050000px;}
.ydf{bottom:808.800000px;}
.y4f{bottom:809.025000px;}
.y21b{bottom:809.250000px;}
.y21c{bottom:809.550000px;}
.y4e{bottom:809.698500px;}
.y21d{bottom:809.925000px;}
.y4d{bottom:810.073500px;}
.y4c{bottom:810.448500px;}
.y4b{bottom:810.823500px;}
.y21e{bottom:811.348500px;}
.y4a{bottom:811.573500px;}
.ya0{bottom:811.723500px;}
.y49{bottom:811.875000px;}
.y48{bottom:811.948500px;}
.y1cc{bottom:812.025000px;}
.y1cb{bottom:812.400000px;}
.y47{bottom:812.625000px;}
.y1ca{bottom:814.500000px;}
.yde{bottom:824.175000px;}
.ydd{bottom:824.550000px;}
.ydc{bottom:825.300000px;}
.y176{bottom:825.598500px;}
.y284{bottom:827.025000px;}
.ydb{bottom:827.098500px;}
.y46{bottom:829.198500px;}
.y214{bottom:829.348500px;}
.y215{bottom:829.723500px;}
.y45{bottom:830.250000px;}
.y216{bottom:830.400000px;}
.y44{bottom:830.625000px;}
.y217{bottom:830.775000px;}
.y43{bottom:831.000000px;}
.y218{bottom:831.150000px;}
.y42{bottom:831.675000px;}
.y219{bottom:831.900000px;}
.y21a{bottom:832.198500px;}
.y41{bottom:832.800000px;}
.y1c9{bottom:833.323500px;}
.y9f{bottom:833.698500px;}
.y1{bottom:834.000000px;}
.y139{bottom:836.775000px;}
.yda{bottom:844.723500px;}
.y175{bottom:845.400000px;}
.yd9{bottom:846.150000px;}
.y174{bottom:846.823500px;}
.yd8{bottom:847.573500px;}
.y40{bottom:849.375000px;}
.yd7{bottom:849.750000px;}
.yd6{bottom:850.125000px;}
.y211{bottom:850.198500px;}
.y3f{bottom:850.425000px;}
.y212{bottom:850.948500px;}
.y3e{bottom:851.473500px;}
.y213{bottom:851.698500px;}
.y3d{bottom:851.848500px;}
.y3c{bottom:852.223500px;}
.y3b{bottom:852.973500px;}
.y9e{bottom:853.500000px;}
.y138{bottom:854.400000px;}
.y1c8{bottom:855.223500px;}
.y283{bottom:863.025000px;}
.y282{bottom:864.448500px;}
.y281{bottom:866.323500px;}
.yd5{bottom:866.698500px;}
.y173{bottom:867.375000px;}
.y172{bottom:868.050000px;}
.y3a{bottom:869.175000px;}
.y39{bottom:869.550000px;}
.y20c{bottom:869.698500px;}
.yd4{bottom:869.925000px;}
.y20d{bottom:870.073500px;}
.yd3{bottom:870.300000px;}
.y20e{bottom:870.375000px;}
.y38{bottom:870.598500px;}
.y20f{bottom:870.750000px;}
.y210{bottom:871.500000px;}
.y37{bottom:871.650000px;}
.y1c7{bottom:871.800000px;}
.y1c6{bottom:872.473500px;}
.y36{bottom:872.775000px;}
.y9d{bottom:873.300000px;}
.y137{bottom:874.198500px;}
.y1c5{bottom:875.025000px;}
.y1c4{bottom:877.198500px;}
.y1c3{bottom:877.500000px;}
.y1c2{bottom:878.250000px;}
.y280{bottom:883.198500px;}
.y27f{bottom:883.500000px;}
.y27e{bottom:886.050000px;}
.yd2{bottom:887.550000px;}
.y171{bottom:887.848500px;}
.y35{bottom:888.973500px;}
.y34{bottom:889.275000px;}
.y33{bottom:889.723500px;}
.y32{bottom:890.400000px;}
.y20a{bottom:890.550000px;}
.y31{bottom:891.448500px;}
.y1c1{bottom:891.598500px;}
.y20b{bottom:891.973500px;}
.y1c0{bottom:892.275000px;}
.y30{bottom:892.875000px;}
.y1bf{bottom:893.400000px;}
.y9c{bottom:893.775000px;}
.y136{bottom:894.375000px;}
.y1be{bottom:895.875000px;}
.y27d{bottom:905.098500px;}
.yd1{bottom:905.175000px;}
.yd0{bottom:905.925000px;}
.y170{bottom:907.723500px;}
.ycf{bottom:907.800000px;}
.y27c{bottom:908.025000px;}
.y16f{bottom:908.400000px;}
.y2f{bottom:910.573500px;}
.y207{bottom:910.723500px;}
.yce{bottom:910.948500px;}
.y208{bottom:911.775000px;}
.y209{bottom:911.848500px;}
.y9b{bottom:913.198500px;}
.y1bd{bottom:913.500000px;}
.y135{bottom:914.473500px;}
.y9a{bottom:915.000000px;}
.y1bc{bottom:916.800000px;}
.y27b{bottom:925.650000px;}
.ycd{bottom:945.150000px;}
.y206{bottom:947.848500px;}
.y2e{bottom:949.050000px;}
.y99{bottom:950.698500px;}
.y134{bottom:951.598500px;}
.y1bb{bottom:952.500000px;}
.y27a{bottom:963.150000px;}
.h8{height:41.220703px;}
.h18{height:49.336436px;}
.hc{height:52.998047px;}
.h3{height:56.320312px;}
.h12{height:58.857422px;}
.h5{height:58.886719px;}
.h16{height:62.578125px;}
.h9{height:64.743164px;}
.h6{height:64.775391px;}
.h13{height:69.164062px;}
.hf{height:70.628906px;}
.h7{height:70.664062px;}
.he{height:72.562500px;}
.h4{height:75.093750px;}
.ha{height:76.514648px;}
.h19{height:76.552734px;}
.h15{height:76.824000px;}
.h2{height:78.609375px;}
.h10{height:82.400391px;}
.h1{height:87.609375px;}
.hb{height:1020.000000px;}
.h11{height:1021.500000px;}
.h0{height:1023.000000px;}
.hd{height:1024.500000px;}
.h17{height:1029.000000px;}
.h1a{height:1032.000000px;}
.h1b{height:1033.500000px;}
.h14{height:1038.000000px;}
.w1{width:646.500000px;}
.w0{width:675.000000px;}
.w2{width:676.500000px;}
.w5{width:678.000000px;}
.w3{width:681.000000px;}
.w7{width:684.000000px;}
.w6{width:685.500000px;}
.w8{width:687.000000px;}
.w4{width:693.000000px;}
.x0{left:0.000000px;}
.x106{left:64.425000px;}
.x6b{left:65.550000px;}
.x6c{left:66.600000px;}
.x68{left:67.650000px;}
.x6a{left:68.775000px;}
.xe9{left:69.825000px;}
.x4d{left:70.950000px;}
.xe5{left:72.375000px;}
.x46{left:73.425000px;}
.x25{left:74.850000px;}
.x80{left:76.650000px;}
.x79{left:77.775000px;}
.xaa{left:84.975000px;}
.xd{left:86.400000px;}
.x1{left:87.825000px;}
.x100{left:88.950000px;}
.x103{left:90.375000px;}
.xae{left:94.350000px;}
.xaf{left:97.198500px;}
.x2f{left:99.000000px;}
.x6f{left:100.050000px;}
.x7d{left:104.400000px;}
.x24{left:106.198500px;}
.x89{left:109.050000px;}
.x7a{left:110.550000px;}
.xb1{left:112.350000px;}
.xb0{left:114.150000px;}
.xc6{left:115.575000px;}
.xab{left:116.625000px;}
.x12{left:118.425000px;}
.xc{left:119.550000px;}
.x37{left:120.975000px;}
.x104{left:122.400000px;}
.x16{left:124.575000px;}
.x69{left:125.625000px;}
.x4f{left:127.425000px;}
.x52{left:129.225000px;}
.x84{left:131.400000px;}
.xf5{left:132.450000px;}
.x17{left:135.000000px;}
.x77{left:138.600000px;}
.x43{left:140.400000px;}
.x3f{left:141.825000px;}
.x64{left:145.425000px;}
.x109{left:146.850000px;}
.x56{left:147.975000px;}
.xdb{left:149.400000px;}
.xa7{left:150.450000px;}
.xd0{left:152.250000px;}
.xda{left:153.375000px;}
.xb2{left:154.425000px;}
.x5a{left:156.225000px;}
.x7c{left:157.650000px;}
.xea{left:163.800000px;}
.xbf{left:165.600000px;}
.x99{left:168.150000px;}
.x30{left:169.575000px;}
.x33{left:174.600000px;}
.xac{left:176.025000px;}
.xb3{left:177.450000px;}
.xad{left:178.575000px;}
.x1e{left:180.000000px;}
.x10a{left:181.050000px;}
.x65{left:182.550000px;}
.x26{left:186.825000px;}
.x85{left:187.950000px;}
.x98{left:189.000000px;}
.x4a{left:190.050000px;}
.x47{left:193.350000px;}
.x61{left:194.773500px;}
.x90{left:196.950000px;}
.x57{left:198.375000px;}
.x78{left:199.800000px;}
.x38{left:204.450000px;}
.x2b{left:206.625000px;}
.x8b{left:208.050000px;}
.xf7{left:209.175000px;}
.x50{left:210.975000px;}
.xc1{left:212.773500px;}
.xa0{left:215.250000px;}
.xde{left:218.175000px;}
.xb6{left:219.975000px;}
.xce{left:223.200000px;}
.xeb{left:224.625000px;}
.x91{left:226.800000px;}
.xfc{left:229.350000px;}
.xa8{left:231.825000px;}
.xd1{left:234.750000px;}
.xc3{left:235.800000px;}
.x39{left:237.225000px;}
.x8{left:241.200000px;}
.xff{left:243.000000px;}
.x1f{left:245.175000px;}
.xd4{left:246.975000px;}
.xe2{left:250.575000px;}
.x31{left:251.625000px;}
.x2c{left:252.750000px;}
.x62{left:255.225000px;}
.x34{left:257.400000px;}
.x60{left:261.375000px;}
.xc0{left:262.425000px;}
.x58{left:265.650000px;}
.x70{left:266.775000px;}
.xe1{left:268.200000px;}
.x27{left:269.250000px;}
.x6{left:273.225000px;}
.xb4{left:274.350000px;}
.x51{left:275.400000px;}
.x86{left:276.825000px;}
.x18{left:279.750000px;}
.xe{left:281.175000px;}
.xa4{left:284.025000px;}
.xf{left:287.625000px;}
.x8c{left:289.050000px;}
.x10b{left:290.175000px;}
.x67{left:291.225000px;}
.x94{left:292.650000px;}
.xe7{left:297.750000px;}
.x23{left:299.550000px;}
.x3a{left:300.600000px;}
.xe4{left:303.150000px;}
.x74{left:304.575000px;}
.x35{left:306.000000px;}
.xb7{left:307.050000px;}
.x9{left:309.600000px;}
.x87{left:311.775000px;}
.xa9{left:313.200000px;}
.x20{left:316.425000px;}
.xdc{left:317.550000px;}
.xcb{left:320.025000px;}
.xa5{left:321.450000px;}
.x40{left:322.950000px;}
.xf6{left:324.750000px;}
.x48{left:327.225000px;}
.x75{left:329.025000px;}
.x88{left:333.000000px;}
.x102{left:334.050000px;}
.x2{left:336.975000px;}
.xa1{left:339.450000px;}
.x8e{left:341.250000px;}
.xf0{left:342.750000px;}
.x4b{left:344.175000px;}
.xe3{left:345.975000px;}
.x96{left:347.775000px;}
.x3b{left:349.575000px;}
.x7{left:351.375000px;}
.x19{left:352.800000px;}
.xa{left:355.650000px;}
.x8f{left:357.825000px;}
.xfa{left:360.375000px;}
.x81{left:361.800000px;}
.x10c{left:363.225000px;}
.xb8{left:364.350000px;}
.x71{left:366.450000px;}
.x73{left:368.625000px;}
.xef{left:373.650000px;}
.xf9{left:375.150000px;}
.x107{left:376.950000px;}
.x95{left:378.750000px;}
.xc9{left:382.350000px;}
.x1b{left:383.400000px;}
.xec{left:385.200000px;}
.x76{left:387.750000px;}
.x72{left:389.173500px;}
.x63{left:390.600000px;}
.x49{left:391.650000px;}
.x4c{left:393.450000px;}
.x3c{left:395.250000px;}
.x9d{left:397.423500px;}
.x13{left:399.600000px;}
.xd5{left:401.400000px;}
.x3{left:403.200000px;}
.xc2{left:404.250000px;}
.xf1{left:407.173500px;}
.x41{left:409.650000px;}
.xfb{left:410.775000px;}
.x1a{left:412.200000px;}
.xcf{left:413.625000px;}
.xcc{left:415.423500px;}
.x9a{left:416.850000px;}
.x14{left:419.775000px;}
.xe8{left:421.200000px;}
.x4{left:422.250000px;}
.xb9{left:424.048500px;}
.xd8{left:426.225000px;}
.x2d{left:428.400000px;}
.xa2{left:432.750000px;}
.xcd{left:434.173500px;}
.x21{left:435.600000px;}
.x42{left:437.025000px;}
.x28{left:441.000000px;}
.x92{left:442.423500px;}
.xd6{left:443.548500px;}
.xa6{left:445.650000px;}
.xc4{left:448.575000px;}
.xee{left:449.625000px;}
.x5d{left:451.798500px;}
.xfd{left:453.600000px;}
.xbe{left:455.025000px;}
.x1c{left:456.825000px;}
.xe0{left:458.625000px;}
.x82{left:460.800000px;}
.x22{left:462.600000px;}
.x3d{left:465.450000px;}
.xf2{left:467.250000px;}
.xf8{left:471.225000px;}
.xa3{left:473.775000px;}
.x97{left:476.250000px;}
.xca{left:478.050000px;}
.xb{left:479.175000px;}
.x9e{left:482.775000px;}
.x93{left:486.375000px;}
.xc7{left:489.600000px;}
.x7b{left:491.025000px;}
.xbc{left:492.825000px;}
.x5{left:494.625000px;}
.x2e{left:499.350000px;}
.x10{left:502.950000px;}
.xc5{left:504.375000px;}
.x9b{left:505.800000px;}
.x29{left:507.600000px;}
.x5e{left:511.950000px;}
.x105{left:513.000000px;}
.x83{left:514.425000px;}
.x7e{left:517.350000px;}
.x1d{left:519.150000px;}
.x32{left:520.200000px;}
.xc8{left:521.250000px;}
.xd9{left:522.750000px;}
.x36{left:525.225000px;}
.x44{left:527.400000px;}
.xf3{left:528.450000px;}
.xdf{left:529.950000px;}
.xe6{left:531.000000px;}
.xd2{left:533.850000px;}
.xd7{left:536.025000px;}
.x9f{left:538.575000px;}
.x6d{left:541.050000px;}
.x15{left:543.225000px;}
.x8a{left:544.650000px;}
.x101{left:546.825000px;}
.x9c{left:549.000000px;}
.x53{left:550.050000px;}
.xba{left:552.225000px;}
.x4e{left:554.025000px;}
.x5b{left:556.575000px;}
.x54{left:558.375000px;}
.x3e{left:561.600000px;}
.xed{left:562.650000px;}
.x6e{left:563.775000px;}
.x55{left:566.250000px;}
.x7f{left:567.375000px;}
.xdd{left:568.800000px;}
.x108{left:570.600000px;}
.x2a{left:573.825000px;}
.x66{left:574.950000px;}
.x5c{left:576.375000px;}
.xb5{left:578.550000px;}
.xfe{left:579.600000px;}
.x59{left:581.025000px;}
.xd3{left:582.150000px;}
.x11{left:585.750000px;}
.x45{left:587.850000px;}
.x8d{left:589.650000px;}
.xbb{left:592.950000px;}
.xf4{left:594.750000px;}
.xbd{left:601.200000px;}
.x5f{left:602.625000px;}
@media print{
.v1{vertical-align:-1.333333pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
._2{margin-left:-10.707651pt;}
._0{margin-left:-2.624632pt;}
._1{margin-left:-1.293860pt;}
.fs6{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.333333pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1ba{bottom:80.732000pt;}
.y132{bottom:81.732000pt;}
.y133{bottom:82.065333pt;}
.y277{bottom:82.532000pt;}
.y278{bottom:83.465333pt;}
.y97{bottom:83.932000pt;}
.y98{bottom:84.000000pt;}
.y279{bottom:85.398667pt;}
.ycc{bottom:86.000000pt;}
.y16e{bottom:87.132000pt;}
.y16d{bottom:87.465333pt;}
.y2d{bottom:87.598667pt;}
.y16c{bottom:87.798667pt;}
.y205{bottom:89.798667pt;}
.y1b9{bottom:98.666667pt;}
.y1b7{bottom:98.932000pt;}
.y1b8{bottom:99.000000pt;}
.y131{bottom:99.666667pt;}
.y130{bottom:100.000000pt;}
.y273{bottom:100.800000pt;}
.y96{bottom:101.865333pt;}
.y274{bottom:102.065333pt;}
.y95{bottom:102.198667pt;}
.y275{bottom:103.000000pt;}
.ycb{bottom:104.000000pt;}
.y276{bottom:104.865333pt;}
.y16b{bottom:105.398667pt;}
.y2c{bottom:105.800000pt;}
.y204{bottom:106.133333pt;}
.y203{bottom:107.398667pt;}
.y1b6{bottom:116.598667pt;}
.y12f{bottom:117.598667pt;}
.y12e{bottom:118.198667pt;}
.y12d{bottom:118.265333pt;}
.y26f{bottom:118.666667pt;}
.y94{bottom:119.466667pt;}
.y270{bottom:119.598667pt;}
.y93{bottom:119.800000pt;}
.y271{bottom:120.932000pt;}
.yca{bottom:121.865333pt;}
.y272{bottom:122.466667pt;}
.y2b{bottom:123.398667pt;}
.y16a{bottom:123.932000pt;}
.y202{bottom:125.000000pt;}
.y1b4{bottom:135.466667pt;}
.y12b{bottom:135.532000pt;}
.y12c{bottom:135.800000pt;}
.y1b5{bottom:136.065333pt;}
.y12a{bottom:136.133333pt;}
.y92{bottom:137.398667pt;}
.y91{bottom:137.666667pt;}
.y90{bottom:138.000000pt;}
.y26e{bottom:138.532000pt;}
.y29{bottom:141.333333pt;}
.y169{bottom:141.532000pt;}
.y2a{bottom:141.666667pt;}
.y201{bottom:142.265333pt;}
.y200{bottom:142.598667pt;}
.y1ff{bottom:142.932000pt;}
.y1b2{bottom:153.065333pt;}
.y129{bottom:153.133333pt;}
.y128{bottom:153.466667pt;}
.y127{bottom:153.732000pt;}
.y1b3{bottom:154.000000pt;}
.y8f{bottom:155.598667pt;}
.y26d{bottom:156.800000pt;}
.y28{bottom:158.932000pt;}
.y168{bottom:159.198667pt;}
.yc9{bottom:159.265333pt;}
.y1fe{bottom:160.532000pt;}
.y1b0{bottom:171.333333pt;}
.y1b1{bottom:171.932000pt;}
.y126{bottom:173.598667pt;}
.y8e{bottom:174.800000pt;}
.y8d{bottom:175.198667pt;}
.y26c{bottom:175.265333pt;}
.y27{bottom:176.865333pt;}
.yc8{bottom:177.865333pt;}
.y167{bottom:178.666667pt;}
.yc7{bottom:178.800000pt;}
.y1fd{bottom:179.732000pt;}
.y1fc{bottom:180.333333pt;}
.y8c{bottom:186.000000pt;}
.y1af{bottom:191.198667pt;}
.y125{bottom:191.532000pt;}
.y8b{bottom:192.800000pt;}
.y8a{bottom:193.065333pt;}
.y26b{bottom:193.865333pt;}
.y26{bottom:194.466667pt;}
.yc6{bottom:194.865333pt;}
.y166{bottom:196.598667pt;}
.y1fb{bottom:197.932000pt;}
.y124{bottom:209.133333pt;}
.y1ae{bottom:209.333333pt;}
.y123{bottom:209.398667pt;}
.y89{bottom:210.666667pt;}
.y88{bottom:211.000000pt;}
.y87{bottom:211.265333pt;}
.y26a{bottom:211.466667pt;}
.y86{bottom:211.598667pt;}
.y23{bottom:212.333333pt;}
.y24{bottom:212.398667pt;}
.y25{bottom:213.000000pt;}
.y165{bottom:214.198667pt;}
.y1fa{bottom:214.932000pt;}
.y1f9{bottom:215.265333pt;}
.yc5{bottom:215.333333pt;}
.y1f8{bottom:215.932000pt;}
.y1ad{bottom:226.932000pt;}
.y122{bottom:227.065333pt;}
.y267{bottom:228.133333pt;}
.y85{bottom:228.532000pt;}
.y84{bottom:228.932000pt;}
.y268{bottom:230.000000pt;}
.y22{bottom:230.265333pt;}
.y269{bottom:231.000000pt;}
.yc4{bottom:232.265333pt;}
.y1f7{bottom:233.466667pt;}
.y164{bottom:233.666667pt;}
.y1ac{bottom:244.865333pt;}
.y121{bottom:245.000000pt;}
.y120{bottom:245.598667pt;}
.y83{bottom:246.798667pt;}
.y266{bottom:247.333333pt;}
.y21{bottom:247.865333pt;}
.y20{bottom:248.198667pt;}
.yc3{bottom:249.865333pt;}
.yc2{bottom:250.132000pt;}
.yc1{bottom:250.198667pt;}
.y163{bottom:251.000000pt;}
.y1f6{bottom:251.065333pt;}
.yc0{bottom:251.132000pt;}
.y1f5{bottom:251.398667pt;}
.y1f4{bottom:251.732000pt;}
.y162{bottom:251.932000pt;}
.y161{bottom:252.265333pt;}
.y1a9{bottom:262.798667pt;}
.y1ab{bottom:262.865333pt;}
.y1aa{bottom:263.132000pt;}
.y11f{bottom:263.865333pt;}
.y11e{bottom:264.798667pt;}
.y265{bottom:264.932000pt;}
.y1f{bottom:266.132000pt;}
.y82{bottom:266.333333pt;}
.ybf{bottom:268.065333pt;}
.y160{bottom:268.598667pt;}
.y15f{bottom:269.532000pt;}
.y1f3{bottom:270.932000pt;}
.y1a7{bottom:280.398667pt;}
.y1a8{bottom:280.732000pt;}
.y11d{bottom:281.732000pt;}
.y11c{bottom:282.065333pt;}
.y11b{bottom:282.398667pt;}
.y262{bottom:282.532000pt;}
.y263{bottom:282.798667pt;}
.y1e{bottom:283.732000pt;}
.y81{bottom:283.932000pt;}
.y80{bottom:284.265333pt;}
.y7f{bottom:284.598667pt;}
.y264{bottom:285.065333pt;}
.y15e{bottom:286.865333pt;}
.ybe{bottom:287.333333pt;}
.y15d{bottom:287.798667pt;}
.y15c{bottom:288.398667pt;}
.y1f2{bottom:288.532000pt;}
.y1a5{bottom:299.598667pt;}
.y1a6{bottom:299.666667pt;}
.y11a{bottom:300.265333pt;}
.y1d{bottom:301.333333pt;}
.y25e{bottom:301.666667pt;}
.y7e{bottom:301.865333pt;}
.y25f{bottom:303.000000pt;}
.y260{bottom:303.666667pt;}
.y261{bottom:304.598667pt;}
.y15b{bottom:304.732000pt;}
.ybd{bottom:304.865333pt;}
.y15a{bottom:305.666667pt;}
.y159{bottom:305.732000pt;}
.ybc{bottom:305.865333pt;}
.y158{bottom:306.000000pt;}
.y1f1{bottom:306.465333pt;}
.y1a2{bottom:317.532000pt;}
.y1a3{bottom:317.865333pt;}
.y119{bottom:317.932000pt;}
.y1a4{bottom:318.132000pt;}
.y1b{bottom:319.198667pt;}
.y1c{bottom:319.265333pt;}
.y7d{bottom:319.798667pt;}
.y7c{bottom:320.465333pt;}
.y25c{bottom:320.865333pt;}
.y25d{bottom:321.598667pt;}
.ybb{bottom:323.465333pt;}
.y1f0{bottom:324.666667pt;}
.y157{bottom:324.932000pt;}
.y156{bottom:325.198667pt;}
.y155{bottom:325.265333pt;}
.y19f{bottom:335.465333pt;}
.y1a0{bottom:335.732000pt;}
.y118{bottom:335.798667pt;}
.y1a1{bottom:336.065333pt;}
.y1a{bottom:337.465333pt;}
.y7b{bottom:337.666667pt;}
.y7a{bottom:337.732000pt;}
.y25b{bottom:338.798667pt;}
.yba{bottom:341.065333pt;}
.y1ef{bottom:341.333333pt;}
.y154{bottom:342.198667pt;}
.y1ee{bottom:342.333333pt;}
.y19d{bottom:353.666667pt;}
.y19e{bottom:354.000000pt;}
.y19{bottom:355.065333pt;}
.y117{bottom:355.333333pt;}
.y116{bottom:356.000000pt;}
.y79{bottom:356.932000pt;}
.yb9{bottom:358.333333pt;}
.yb8{bottom:358.666667pt;}
.yb7{bottom:359.000000pt;}
.y153{bottom:359.798667pt;}
.y152{bottom:360.732000pt;}
.y151{bottom:361.065333pt;}
.y1ed{bottom:361.865333pt;}
.y19b{bottom:371.598667pt;}
.y19c{bottom:371.932000pt;}
.y18{bottom:372.666667pt;}
.y115{bottom:372.932000pt;}
.y114{bottom:373.265333pt;}
.y258{bottom:374.666667pt;}
.y78{bottom:374.798667pt;}
.y77{bottom:375.132000pt;}
.y259{bottom:375.932000pt;}
.y25a{bottom:376.865333pt;}
.y150{bottom:378.000000pt;}
.yb6{bottom:378.198667pt;}
.y1ec{bottom:379.732000pt;}
.y19a{bottom:389.532000pt;}
.y17{bottom:390.265333pt;}
.y111{bottom:390.532000pt;}
.y112{bottom:390.598667pt;}
.y113{bottom:390.865333pt;}
.y110{bottom:391.532000pt;}
.y76{bottom:392.398667pt;}
.y75{bottom:393.065333pt;}
.y257{bottom:393.865333pt;}
.yb5{bottom:396.398667pt;}
.y14f{bottom:397.532000pt;}
.y1eb{bottom:397.666667pt;}
.y16{bottom:408.198667pt;}
.y198{bottom:408.398667pt;}
.y10f{bottom:408.465333pt;}
.y199{bottom:408.732000pt;}
.y10e{bottom:409.732000pt;}
.y253{bottom:409.865333pt;}
.y74{bottom:410.333333pt;}
.y254{bottom:410.532000pt;}
.y255{bottom:411.798667pt;}
.y73{bottom:411.932000pt;}
.y256{bottom:413.065333pt;}
.yb4{bottom:413.666667pt;}
.y1ea{bottom:414.598667pt;}
.y14e{bottom:415.132000pt;}
.y1e9{bottom:415.265333pt;}
.y1e8{bottom:415.932000pt;}
.y14d{bottom:416.732000pt;}
.y15{bottom:426.132000pt;}
.y197{bottom:426.666667pt;}
.y24d{bottom:427.465333pt;}
.y24e{bottom:427.798667pt;}
.y72{bottom:427.932000pt;}
.y71{bottom:428.598667pt;}
.y24f{bottom:428.732000pt;}
.y250{bottom:429.666667pt;}
.y251{bottom:430.333333pt;}
.y252{bottom:431.000000pt;}
.yb3{bottom:431.265333pt;}
.yb2{bottom:431.932000pt;}
.yb1{bottom:432.598667pt;}
.y14c{bottom:433.065333pt;}
.y1e7{bottom:433.132000pt;}
.y1e6{bottom:434.465333pt;}
.y14{bottom:443.732000pt;}
.y10d{bottom:444.000000pt;}
.y196{bottom:444.532000pt;}
.y10c{bottom:444.598667pt;}
.y10b{bottom:445.265333pt;}
.y24a{bottom:446.666667pt;}
.y24b{bottom:447.265333pt;}
.y70{bottom:447.465333pt;}
.y6f{bottom:447.798667pt;}
.y6e{bottom:448.732000pt;}
.y6d{bottom:449.065333pt;}
.y24c{bottom:449.198667pt;}
.yb0{bottom:449.532000pt;}
.y14b{bottom:450.666667pt;}
.y1e5{bottom:451.732000pt;}
.y1e4{bottom:452.065333pt;}
.y1e3{bottom:452.333333pt;}
.y1e2{bottom:452.666667pt;}
.y1e1{bottom:453.333333pt;}
.y13{bottom:461.598667pt;}
.y195{bottom:462.465333pt;}
.y194{bottom:462.532000pt;}
.y10a{bottom:463.198667pt;}
.y109{bottom:464.132000pt;}
.y247{bottom:464.932000pt;}
.y6c{bottom:465.065333pt;}
.y248{bottom:465.532000pt;}
.y6b{bottom:466.000000pt;}
.y249{bottom:467.132000pt;}
.yaf{bottom:469.666667pt;}
.y14a{bottom:470.132000pt;}
.y1e0{bottom:470.598667pt;}
.y149{bottom:470.865333pt;}
.y148{bottom:471.132000pt;}
.y147{bottom:471.465333pt;}
.y12{bottom:479.532000pt;}
.y192{bottom:480.065333pt;}
.y193{bottom:480.132000pt;}
.y108{bottom:481.065333pt;}
.y107{bottom:481.398667pt;}
.y106{bottom:482.065333pt;}
.y245{bottom:482.798667pt;}
.y6a{bottom:484.000000pt;}
.y246{bottom:484.465333pt;}
.yae{bottom:486.398667pt;}
.y1df{bottom:487.265333pt;}
.y146{bottom:487.798667pt;}
.y1de{bottom:488.532000pt;}
.y11{bottom:497.198667pt;}
.y105{bottom:498.398667pt;}
.y104{bottom:498.733333pt;}
.y191{bottom:499.333333pt;}
.y190{bottom:499.598667pt;}
.y103{bottom:499.666667pt;}
.y18f{bottom:499.932000pt;}
.y69{bottom:501.865333pt;}
.y244{bottom:502.333333pt;}
.yad{bottom:504.265333pt;}
.y145{bottom:505.666667pt;}
.y1dd{bottom:505.865333pt;}
.y10{bottom:515.066667pt;}
.y102{bottom:516.932000pt;}
.y18e{bottom:517.198667pt;}
.y18d{bottom:517.532000pt;}
.y240{bottom:518.333333pt;}
.y241{bottom:519.265333pt;}
.y68{bottom:519.465333pt;}
.y242{bottom:520.265333pt;}
.y243{bottom:521.198667pt;}
.yac{bottom:522.198667pt;}
.y144{bottom:523.265333pt;}
.y1dc{bottom:524.000000pt;}
.y29f{bottom:530.000000pt;}
.y29e{bottom:530.932000pt;}
.y29d{bottom:531.333333pt;}
.y29c{bottom:531.598667pt;}
.yf{bottom:533.333333pt;}
.y101{bottom:534.865333pt;}
.y18c{bottom:535.132000pt;}
.y23d{bottom:537.532000pt;}
.y23e{bottom:538.798667pt;}
.y67{bottom:539.000000pt;}
.yab{bottom:539.798667pt;}
.yaa{bottom:540.066667pt;}
.y143{bottom:541.198667pt;}
.y23f{bottom:541.400000pt;}
.y1db{bottom:543.198667pt;}
.ye{bottom:550.666667pt;}
.y18a{bottom:552.733333pt;}
.y189{bottom:553.066667pt;}
.y18b{bottom:553.400000pt;}
.y100{bottom:553.733333pt;}
.yff{bottom:554.733333pt;}
.yfe{bottom:555.333333pt;}
.y29b{bottom:556.598667pt;}
.y66{bottom:556.865333pt;}
.y23b{bottom:557.066667pt;}
.y23c{bottom:558.932000pt;}
.ya9{bottom:559.598667pt;}
.y1da{bottom:561.132000pt;}
.y142{bottom:561.733333pt;}
.yc{bottom:568.198667pt;}
.yd{bottom:568.265333pt;}
.yb{bottom:568.800000pt;}
.y188{bottom:570.666667pt;}
.yfd{bottom:571.333333pt;}
.y29a{bottom:571.598667pt;}
.yfc{bottom:572.000000pt;}
.y299{bottom:572.265333pt;}
.yfb{bottom:572.598667pt;}
.yfa{bottom:573.265333pt;}
.y298{bottom:573.532000pt;}
.yf9{bottom:573.598667pt;}
.y238{bottom:573.666667pt;}
.y297{bottom:574.198667pt;}
.y239{bottom:574.333333pt;}
.y296{bottom:574.800000pt;}
.y23a{bottom:575.598667pt;}
.ya8{bottom:577.198667pt;}
.y65{bottom:577.666667pt;}
.y141{bottom:578.333333pt;}
.y1d9{bottom:579.065333pt;}
.ya{bottom:586.133333pt;}
.yf8{bottom:589.265333pt;}
.y187{bottom:589.532000pt;}
.yf7{bottom:589.598667pt;}
.y186{bottom:589.865333pt;}
.yf6{bottom:589.932000pt;}
.y185{bottom:590.133333pt;}
.y295{bottom:590.466667pt;}
.yf5{bottom:590.598667pt;}
.y294{bottom:592.133333pt;}
.y235{bottom:592.598667pt;}
.y293{bottom:592.732000pt;}
.y236{bottom:594.198667pt;}
.y64{bottom:594.333333pt;}
.y237{bottom:594.466667pt;}
.ya7{bottom:594.865333pt;}
.y140{bottom:596.000000pt;}
.y1d8{bottom:596.732000pt;}
.y9{bottom:604.000000pt;}
.yf4{bottom:606.532000pt;}
.y292{bottom:607.133333pt;}
.y184{bottom:607.466667pt;}
.yf3{bottom:607.800000pt;}
.y183{bottom:608.065333pt;}
.y291{bottom:609.065333pt;}
.y63{bottom:611.000000pt;}
.y233{bottom:611.466667pt;}
.y62{bottom:611.932000pt;}
.y234{bottom:612.398667pt;}
.y61{bottom:612.532000pt;}
.ya6{bottom:613.065333pt;}
.y60{bottom:613.532000pt;}
.y13f{bottom:613.865333pt;}
.y1d7{bottom:614.932000pt;}
.y8{bottom:621.932000pt;}
.yf2{bottom:625.398667pt;}
.y182{bottom:625.666667pt;}
.y181{bottom:625.732000pt;}
.y290{bottom:626.932000pt;}
.y22e{bottom:628.398667pt;}
.y22f{bottom:628.800000pt;}
.y5f{bottom:629.198667pt;}
.y230{bottom:629.732000pt;}
.y5e{bottom:629.865333pt;}
.y231{bottom:630.666667pt;}
.y5d{bottom:630.865333pt;}
.ya5{bottom:630.932000pt;}
.y232{bottom:631.333333pt;}
.y13e{bottom:631.800000pt;}
.y1d6{bottom:631.865333pt;}
.y1d5{bottom:633.800000pt;}
.y28f{bottom:642.333333pt;}
.yf1{bottom:642.398667pt;}
.y180{bottom:643.265333pt;}
.yf0{bottom:643.333333pt;}
.y17f{bottom:643.598667pt;}
.y28e{bottom:643.666667pt;}
.yef{bottom:644.000000pt;}
.y28d{bottom:644.865333pt;}
.yee{bottom:645.265333pt;}
.y7{bottom:645.666667pt;}
.y28c{bottom:645.865333pt;}
.y28b{bottom:646.466667pt;}
.y229{bottom:646.666667pt;}
.y28a{bottom:646.800000pt;}
.y22a{bottom:647.000000pt;}
.y5c{bottom:647.466667pt;}
.y22b{bottom:647.932000pt;}
.y22c{bottom:648.598667pt;}
.y5b{bottom:648.800000pt;}
.y22d{bottom:648.865333pt;}
.y5a{bottom:649.398667pt;}
.y1d4{bottom:649.800000pt;}
.ya4{bottom:650.133333pt;}
.y1d3{bottom:651.065333pt;}
.y13d{bottom:651.265333pt;}
.y1d2{bottom:652.000000pt;}
.yed{bottom:659.732000pt;}
.yec{bottom:661.000000pt;}
.y17e{bottom:661.198667pt;}
.y289{bottom:662.800000pt;}
.y225{bottom:664.265333pt;}
.y59{bottom:664.398667pt;}
.y226{bottom:664.865333pt;}
.y227{bottom:665.532000pt;}
.y58{bottom:665.666667pt;}
.y228{bottom:666.466667pt;}
.ya3{bottom:667.800000pt;}
.y13c{bottom:668.598667pt;}
.y1d1{bottom:669.932000pt;}
.y17d{bottom:680.065333pt;}
.yeb{bottom:680.133333pt;}
.y17c{bottom:680.398667pt;}
.y17b{bottom:680.732000pt;}
.yea{bottom:680.800000pt;}
.ye9{bottom:681.133333pt;}
.ye8{bottom:681.398667pt;}
.ye7{bottom:682.398667pt;}
.y223{bottom:683.466667pt;}
.y224{bottom:685.065333pt;}
.ya2{bottom:686.000000pt;}
.y57{bottom:686.133333pt;}
.y13b{bottom:686.532000pt;}
.y56{bottom:686.800000pt;}
.y6{bottom:686.933333pt;}
.y5{bottom:687.266667pt;}
.y1d0{bottom:687.532000pt;}
.y288{bottom:696.398667pt;}
.ye6{bottom:697.732000pt;}
.y17a{bottom:698.000000pt;}
.y179{bottom:698.333333pt;}
.y178{bottom:698.666667pt;}
.ye5{bottom:698.732000pt;}
.y287{bottom:699.933333pt;}
.ye4{bottom:700.000000pt;}
.y55{bottom:701.532000pt;}
.y21f{bottom:702.000000pt;}
.y54{bottom:702.133333pt;}
.y53{bottom:702.466667pt;}
.y52{bottom:702.800000pt;}
.y220{bottom:702.933333pt;}
.y51{bottom:703.466667pt;}
.y221{bottom:703.600000pt;}
.ya1{bottom:703.666667pt;}
.y222{bottom:704.266667pt;}
.y13a{bottom:704.398667pt;}
.y50{bottom:704.466667pt;}
.y1cf{bottom:704.865333pt;}
.y1ce{bottom:706.732000pt;}
.y1cd{bottom:707.398667pt;}
.y286{bottom:714.065333pt;}
.y2{bottom:714.133333pt;}
.y3{bottom:714.466667pt;}
.y4{bottom:714.800000pt;}
.ye3{bottom:715.065333pt;}
.y285{bottom:716.000000pt;}
.y177{bottom:716.266667pt;}
.ye2{bottom:716.933333pt;}
.ye1{bottom:717.266667pt;}
.ye0{bottom:718.266667pt;}
.ydf{bottom:718.933333pt;}
.y4f{bottom:719.133333pt;}
.y21b{bottom:719.333333pt;}
.y21c{bottom:719.600000pt;}
.y4e{bottom:719.732000pt;}
.y21d{bottom:719.933333pt;}
.y4d{bottom:720.065333pt;}
.y4c{bottom:720.398667pt;}
.y4b{bottom:720.732000pt;}
.y21e{bottom:721.198667pt;}
.y4a{bottom:721.398667pt;}
.ya0{bottom:721.532000pt;}
.y49{bottom:721.666667pt;}
.y48{bottom:721.732000pt;}
.y1cc{bottom:721.800000pt;}
.y1cb{bottom:722.133333pt;}
.y47{bottom:722.333333pt;}
.y1ca{bottom:724.000000pt;}
.yde{bottom:732.600000pt;}
.ydd{bottom:732.933333pt;}
.ydc{bottom:733.600000pt;}
.y176{bottom:733.865333pt;}
.y284{bottom:735.133333pt;}
.ydb{bottom:735.198667pt;}
.y46{bottom:737.065333pt;}
.y214{bottom:737.198667pt;}
.y215{bottom:737.532000pt;}
.y45{bottom:738.000000pt;}
.y216{bottom:738.133333pt;}
.y44{bottom:738.333333pt;}
.y217{bottom:738.466667pt;}
.y43{bottom:738.666667pt;}
.y218{bottom:738.800000pt;}
.y42{bottom:739.266667pt;}
.y219{bottom:739.466667pt;}
.y21a{bottom:739.732000pt;}
.y41{bottom:740.266667pt;}
.y1c9{bottom:740.732000pt;}
.y9f{bottom:741.065333pt;}
.y1{bottom:741.333333pt;}
.y139{bottom:743.800000pt;}
.yda{bottom:750.865333pt;}
.y175{bottom:751.466667pt;}
.yd9{bottom:752.133333pt;}
.y174{bottom:752.732000pt;}
.yd8{bottom:753.398667pt;}
.y40{bottom:755.000000pt;}
.yd7{bottom:755.333333pt;}
.yd6{bottom:755.666667pt;}
.y211{bottom:755.732000pt;}
.y3f{bottom:755.933333pt;}
.y212{bottom:756.398667pt;}
.y3e{bottom:756.865333pt;}
.y213{bottom:757.065333pt;}
.y3d{bottom:757.198667pt;}
.y3c{bottom:757.532000pt;}
.y3b{bottom:758.198667pt;}
.y9e{bottom:758.666667pt;}
.y138{bottom:759.466667pt;}
.y1c8{bottom:760.198667pt;}
.y283{bottom:767.133333pt;}
.y282{bottom:768.398667pt;}
.y281{bottom:770.065333pt;}
.yd5{bottom:770.398667pt;}
.y173{bottom:771.000000pt;}
.y172{bottom:771.600000pt;}
.y3a{bottom:772.600000pt;}
.y39{bottom:772.933333pt;}
.y20c{bottom:773.065333pt;}
.yd4{bottom:773.266667pt;}
.y20d{bottom:773.398667pt;}
.yd3{bottom:773.600000pt;}
.y20e{bottom:773.666667pt;}
.y38{bottom:773.865333pt;}
.y20f{bottom:774.000000pt;}
.y210{bottom:774.666667pt;}
.y37{bottom:774.800000pt;}
.y1c7{bottom:774.933333pt;}
.y1c6{bottom:775.532000pt;}
.y36{bottom:775.800000pt;}
.y9d{bottom:776.266667pt;}
.y137{bottom:777.065333pt;}
.y1c5{bottom:777.800000pt;}
.y1c4{bottom:779.732000pt;}
.y1c3{bottom:780.000000pt;}
.y1c2{bottom:780.666667pt;}
.y280{bottom:785.065333pt;}
.y27f{bottom:785.333333pt;}
.y27e{bottom:787.600000pt;}
.yd2{bottom:788.933333pt;}
.y171{bottom:789.198667pt;}
.y35{bottom:790.198667pt;}
.y34{bottom:790.466667pt;}
.y33{bottom:790.865333pt;}
.y32{bottom:791.466667pt;}
.y20a{bottom:791.600000pt;}
.y31{bottom:792.398667pt;}
.y1c1{bottom:792.532000pt;}
.y20b{bottom:792.865333pt;}
.y1c0{bottom:793.133333pt;}
.y30{bottom:793.666667pt;}
.y1bf{bottom:794.133333pt;}
.y9c{bottom:794.466667pt;}
.y136{bottom:795.000000pt;}
.y1be{bottom:796.333333pt;}
.y27d{bottom:804.532000pt;}
.yd1{bottom:804.600000pt;}
.yd0{bottom:805.266667pt;}
.y170{bottom:806.865333pt;}
.ycf{bottom:806.933333pt;}
.y27c{bottom:807.133333pt;}
.y16f{bottom:807.466667pt;}
.y2f{bottom:809.398667pt;}
.y207{bottom:809.532000pt;}
.yce{bottom:809.732000pt;}
.y208{bottom:810.466667pt;}
.y209{bottom:810.532000pt;}
.y9b{bottom:811.732000pt;}
.y1bd{bottom:812.000000pt;}
.y135{bottom:812.865333pt;}
.y9a{bottom:813.333333pt;}
.y1bc{bottom:814.933333pt;}
.y27b{bottom:822.800000pt;}
.ycd{bottom:840.133333pt;}
.y206{bottom:842.532000pt;}
.y2e{bottom:843.600000pt;}
.y99{bottom:845.065333pt;}
.y134{bottom:845.865333pt;}
.y1bb{bottom:846.666667pt;}
.y27a{bottom:856.133333pt;}
.h8{height:36.640625pt;}
.h18{height:43.854610pt;}
.hc{height:47.109375pt;}
.h3{height:50.062500pt;}
.h12{height:52.317708pt;}
.h5{height:52.343750pt;}
.h16{height:55.625000pt;}
.h9{height:57.549479pt;}
.h6{height:57.578125pt;}
.h13{height:61.479167pt;}
.hf{height:62.781250pt;}
.h7{height:62.812500pt;}
.he{height:64.500000pt;}
.h4{height:66.750000pt;}
.ha{height:68.013021pt;}
.h19{height:68.046875pt;}
.h15{height:68.288000pt;}
.h2{height:69.875000pt;}
.h10{height:73.244792pt;}
.h1{height:77.875000pt;}
.hb{height:906.666667pt;}
.h11{height:908.000000pt;}
.h0{height:909.333333pt;}
.hd{height:910.666667pt;}
.h17{height:914.666667pt;}
.h1a{height:917.333333pt;}
.h1b{height:918.666667pt;}
.h14{height:922.666667pt;}
.w1{width:574.666667pt;}
.w0{width:600.000000pt;}
.w2{width:601.333333pt;}
.w5{width:602.666667pt;}
.w3{width:605.333333pt;}
.w7{width:608.000000pt;}
.w6{width:609.333333pt;}
.w8{width:610.666667pt;}
.w4{width:616.000000pt;}
.x0{left:0.000000pt;}
.x106{left:57.266667pt;}
.x6b{left:58.266667pt;}
.x6c{left:59.200000pt;}
.x68{left:60.133333pt;}
.x6a{left:61.133333pt;}
.xe9{left:62.066667pt;}
.x4d{left:63.066667pt;}
.xe5{left:64.333333pt;}
.x46{left:65.266667pt;}
.x25{left:66.533333pt;}
.x80{left:68.133333pt;}
.x79{left:69.133333pt;}
.xaa{left:75.533333pt;}
.xd{left:76.800000pt;}
.x1{left:78.066667pt;}
.x100{left:79.066667pt;}
.x103{left:80.333333pt;}
.xae{left:83.866667pt;}
.xaf{left:86.398667pt;}
.x2f{left:88.000000pt;}
.x6f{left:88.933333pt;}
.x7d{left:92.800000pt;}
.x24{left:94.398667pt;}
.x89{left:96.933333pt;}
.x7a{left:98.266667pt;}
.xb1{left:99.866667pt;}
.xb0{left:101.466667pt;}
.xc6{left:102.733333pt;}
.xab{left:103.666667pt;}
.x12{left:105.266667pt;}
.xc{left:106.266667pt;}
.x37{left:107.533333pt;}
.x104{left:108.800000pt;}
.x16{left:110.733333pt;}
.x69{left:111.666667pt;}
.x4f{left:113.266667pt;}
.x52{left:114.866667pt;}
.x84{left:116.800000pt;}
.xf5{left:117.733333pt;}
.x17{left:120.000000pt;}
.x77{left:123.200000pt;}
.x43{left:124.800000pt;}
.x3f{left:126.066667pt;}
.x64{left:129.266667pt;}
.x109{left:130.533333pt;}
.x56{left:131.533333pt;}
.xdb{left:132.800000pt;}
.xa7{left:133.733333pt;}
.xd0{left:135.333333pt;}
.xda{left:136.333333pt;}
.xb2{left:137.266667pt;}
.x5a{left:138.866667pt;}
.x7c{left:140.133333pt;}
.xea{left:145.600000pt;}
.xbf{left:147.200000pt;}
.x99{left:149.466667pt;}
.x30{left:150.733333pt;}
.x33{left:155.200000pt;}
.xac{left:156.466667pt;}
.xb3{left:157.733333pt;}
.xad{left:158.733333pt;}
.x1e{left:160.000000pt;}
.x10a{left:160.933333pt;}
.x65{left:162.266667pt;}
.x26{left:166.066667pt;}
.x85{left:167.066667pt;}
.x98{left:168.000000pt;}
.x4a{left:168.933333pt;}
.x47{left:171.866667pt;}
.x61{left:173.132000pt;}
.x90{left:175.066667pt;}
.x57{left:176.333333pt;}
.x78{left:177.600000pt;}
.x38{left:181.733333pt;}
.x2b{left:183.666667pt;}
.x8b{left:184.933333pt;}
.xf7{left:185.933333pt;}
.x50{left:187.533333pt;}
.xc1{left:189.132000pt;}
.xa0{left:191.333333pt;}
.xde{left:193.933333pt;}
.xb6{left:195.533333pt;}
.xce{left:198.400000pt;}
.xeb{left:199.666667pt;}
.x91{left:201.600000pt;}
.xfc{left:203.866667pt;}
.xa8{left:206.066667pt;}
.xd1{left:208.666667pt;}
.xc3{left:209.600000pt;}
.x39{left:210.866667pt;}
.x8{left:214.400000pt;}
.xff{left:216.000000pt;}
.x1f{left:217.933333pt;}
.xd4{left:219.533333pt;}
.xe2{left:222.733333pt;}
.x31{left:223.666667pt;}
.x2c{left:224.666667pt;}
.x62{left:226.866667pt;}
.x34{left:228.800000pt;}
.x60{left:232.333333pt;}
.xc0{left:233.266667pt;}
.x58{left:236.133333pt;}
.x70{left:237.133333pt;}
.xe1{left:238.400000pt;}
.x27{left:239.333333pt;}
.x6{left:242.866667pt;}
.xb4{left:243.866667pt;}
.x51{left:244.800000pt;}
.x86{left:246.066667pt;}
.x18{left:248.666667pt;}
.xe{left:249.933333pt;}
.xa4{left:252.466667pt;}
.xf{left:255.666667pt;}
.x8c{left:256.933333pt;}
.x10b{left:257.933333pt;}
.x67{left:258.866667pt;}
.x94{left:260.133333pt;}
.xe7{left:264.666667pt;}
.x23{left:266.266667pt;}
.x3a{left:267.200000pt;}
.xe4{left:269.466667pt;}
.x74{left:270.733333pt;}
.x35{left:272.000000pt;}
.xb7{left:272.933333pt;}
.x9{left:275.200000pt;}
.x87{left:277.133333pt;}
.xa9{left:278.400000pt;}
.x20{left:281.266667pt;}
.xdc{left:282.266667pt;}
.xcb{left:284.466667pt;}
.xa5{left:285.733333pt;}
.x40{left:287.066667pt;}
.xf6{left:288.666667pt;}
.x48{left:290.866667pt;}
.x75{left:292.466667pt;}
.x88{left:296.000000pt;}
.x102{left:296.933333pt;}
.x2{left:299.533333pt;}
.xa1{left:301.733333pt;}
.x8e{left:303.333333pt;}
.xf0{left:304.666667pt;}
.x4b{left:305.933333pt;}
.xe3{left:307.533333pt;}
.x96{left:309.133333pt;}
.x3b{left:310.733333pt;}
.x7{left:312.333333pt;}
.x19{left:313.600000pt;}
.xa{left:316.133333pt;}
.x8f{left:318.066667pt;}
.xfa{left:320.333333pt;}
.x81{left:321.600000pt;}
.x10c{left:322.866667pt;}
.xb8{left:323.866667pt;}
.x71{left:325.733333pt;}
.x73{left:327.666667pt;}
.xef{left:332.133333pt;}
.xf9{left:333.466667pt;}
.x107{left:335.066667pt;}
.x95{left:336.666667pt;}
.xc9{left:339.866667pt;}
.x1b{left:340.800000pt;}
.xec{left:342.400000pt;}
.x76{left:344.666667pt;}
.x72{left:345.932000pt;}
.x63{left:347.200000pt;}
.x49{left:348.133333pt;}
.x4c{left:349.733333pt;}
.x3c{left:351.333333pt;}
.x9d{left:353.265333pt;}
.x13{left:355.200000pt;}
.xd5{left:356.800000pt;}
.x3{left:358.400000pt;}
.xc2{left:359.333333pt;}
.xf1{left:361.932000pt;}
.x41{left:364.133333pt;}
.xfb{left:365.133333pt;}
.x1a{left:366.400000pt;}
.xcf{left:367.666667pt;}
.xcc{left:369.265333pt;}
.x9a{left:370.533333pt;}
.x14{left:373.133333pt;}
.xe8{left:374.400000pt;}
.x4{left:375.333333pt;}
.xb9{left:376.932000pt;}
.xd8{left:378.866667pt;}
.x2d{left:380.800000pt;}
.xa2{left:384.666667pt;}
.xcd{left:385.932000pt;}
.x21{left:387.200000pt;}
.x42{left:388.466667pt;}
.x28{left:392.000000pt;}
.x92{left:393.265333pt;}
.xd6{left:394.265333pt;}
.xa6{left:396.133333pt;}
.xc4{left:398.733333pt;}
.xee{left:399.666667pt;}
.x5d{left:401.598667pt;}
.xfd{left:403.200000pt;}
.xbe{left:404.466667pt;}
.x1c{left:406.066667pt;}
.xe0{left:407.666667pt;}
.x82{left:409.600000pt;}
.x22{left:411.200000pt;}
.x3d{left:413.733333pt;}
.xf2{left:415.333333pt;}
.xf8{left:418.866667pt;}
.xa3{left:421.133333pt;}
.x97{left:423.333333pt;}
.xca{left:424.933333pt;}
.xb{left:425.933333pt;}
.x9e{left:429.133333pt;}
.x93{left:432.333333pt;}
.xc7{left:435.200000pt;}
.x7b{left:436.466667pt;}
.xbc{left:438.066667pt;}
.x5{left:439.666667pt;}
.x2e{left:443.866667pt;}
.x10{left:447.066667pt;}
.xc5{left:448.333333pt;}
.x9b{left:449.600000pt;}
.x29{left:451.200000pt;}
.x5e{left:455.066667pt;}
.x105{left:456.000000pt;}
.x83{left:457.266667pt;}
.x7e{left:459.866667pt;}
.x1d{left:461.466667pt;}
.x32{left:462.400000pt;}
.xc8{left:463.333333pt;}
.xd9{left:464.666667pt;}
.x36{left:466.866667pt;}
.x44{left:468.800000pt;}
.xf3{left:469.733333pt;}
.xdf{left:471.066667pt;}
.xe6{left:472.000000pt;}
.xd2{left:474.533333pt;}
.xd7{left:476.466667pt;}
.x9f{left:478.733333pt;}
.x6d{left:480.933333pt;}
.x15{left:482.866667pt;}
.x8a{left:484.133333pt;}
.x101{left:486.066667pt;}
.x9c{left:488.000000pt;}
.x53{left:488.933333pt;}
.xba{left:490.866667pt;}
.x4e{left:492.466667pt;}
.x5b{left:494.733333pt;}
.x54{left:496.333333pt;}
.x3e{left:499.200000pt;}
.xed{left:500.133333pt;}
.x6e{left:501.133333pt;}
.x55{left:503.333333pt;}
.x7f{left:504.333333pt;}
.xdd{left:505.600000pt;}
.x108{left:507.200000pt;}
.x2a{left:510.066667pt;}
.x66{left:511.066667pt;}
.x5c{left:512.333333pt;}
.xb5{left:514.266667pt;}
.xfe{left:515.200000pt;}
.x59{left:516.466667pt;}
.xd3{left:517.466667pt;}
.x11{left:520.666667pt;}
.x45{left:522.533333pt;}
.x8d{left:524.133333pt;}
.xbb{left:527.066667pt;}
.xf4{left:528.666667pt;}
.xbd{left:534.400000pt;}
.x5f{left:535.666667pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  