
    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_7228d9a4f280a05e81c851aa.woff')format("woff");}.ff1{font-family:ff1;line-height:1.127000;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_05d89855e15a375a4583f3ab.woff')format("woff");}.ff2{font-family:ff2;line-height:0.892578;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_882db3c4be164145e58d6dab.woff')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_c58fdf69c631845f599a8fb7.woff')format("woff");}.ff4{font-family:ff4;line-height:1.124118;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_1041b7b5484383c2f6066896.woff')format("woff");}.ff5{font-family:ff5;line-height:1.105000;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_609f04988d1fb240ae255a54.woff')format("woff");}.ff6{font-family:ff6;line-height:1.143000;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_7a1ad0a68827f6805387d413.woff')format("woff");}.ff7{font-family:ff7;line-height:1.050000;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_d81ca92e8140d79033b5fef6.woff')format("woff");}.ff8{font-family:ff8;line-height:0.892578;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_c830cc0221eee847ea68d144.woff')format("woff");}.ff9{font-family:ff9;line-height:1.052000;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_6ebd49767e47789ad01d1fe1.woff')format("woff");}.ffa{font-family:ffa;line-height:1.105000;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_882db3c4be164145e58d6dab.woff')format("woff");}.ffb{font-family:ffb;line-height:1.000000;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_f3a111d4655dea50be986f2a.woff')format("woff");}.ffc{font-family:ffc;line-height:1.089000;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_73f6d3d23a75db33400a42f5.woff')format("woff");}.ffd{font-family:ffd;line-height:1.000000;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_309b3b1d698651d684196fc2.woff')format("woff");}.ffe{font-family:ffe;line-height:1.196000;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_fe93dbc85ae70a6436b9ac52.woff')format("woff");}.fff{font-family:fff;line-height:1.053000;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_1ad731740083815be83e0e05.woff')format("woff");}.ff10{font-family:ff10;line-height:1.052000;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_d81ca92e8140d79033b5fef6.woff')format("woff");}.ff11{font-family:ff11;line-height:0.892578;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_3817be2de43ba07b6455b4c6.woff')format("woff");}.ff12{font-family:ff12;line-height:1.052000;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_6ebd49767e47789ad01d1fe1.woff')format("woff");}.ff13{font-family:ff13;line-height:1.105000;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_882db3c4be164145e58d6dab.woff')format("woff");}.ff14{font-family:ff14;line-height:1.000000;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;}
.m0{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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-2.157600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.154600px;}
.v3{vertical-align:18.006000px;}
.ls9{letter-spacing:-3.135000px;}
.lsf{letter-spacing:-1.083000px;}
.ls6{letter-spacing:-0.960000px;}
.lsc{letter-spacing:-0.855000px;}
.lsb{letter-spacing:-0.285000px;}
.lsa{letter-spacing:-0.060000px;}
.ls7{letter-spacing:-0.057000px;}
.ls4{letter-spacing:-0.054000px;}
.ls3{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.054000px;}
.ls8{letter-spacing:0.057000px;}
.ls10{letter-spacing:0.162000px;}
.ls12{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.228000px;}
.lse{letter-spacing:0.798000px;}
.ls2{letter-spacing:0.840000px;}
.ls0{letter-spacing:1.092000px;}
.ls13{letter-spacing:1.404000px;}
.ls5{letter-spacing:1.440000px;}
.ls1{letter-spacing:48.816000px;}
.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;}
}
.wsf1{word-spacing:-15.840000px;}
.ws3{word-spacing:-15.240000px;}
.ws0{word-spacing:-15.000000px;}
.ws12a{word-spacing:-13.284000px;}
.ws17{word-spacing:-12.150000px;}
.ws2{word-spacing:-11.880000px;}
.ws9c{word-spacing:-11.457000px;}
.ws74{word-spacing:-11.400000px;}
.ws1{word-spacing:-11.280000px;}
.ws16{word-spacing:-11.250000px;}
.ws10f{word-spacing:-10.854000px;}
.ws10e{word-spacing:-10.800000px;}
.ws129{word-spacing:-6.926040px;}
.ws86{word-spacing:-5.301000px;}
.wsce{word-spacing:-5.016000px;}
.ws54{word-spacing:-4.731000px;}
.wsc4{word-spacing:-4.332000px;}
.wsb7{word-spacing:-4.275000px;}
.wsca{word-spacing:-4.218000px;}
.ws8{word-spacing:-4.161000px;}
.ws67{word-spacing:-4.047000px;}
.ws110{word-spacing:-3.819000px;}
.wsa0{word-spacing:-3.762000px;}
.wsaf{word-spacing:-3.648000px;}
.ws119{word-spacing:-3.618000px;}
.ws6{word-spacing:-3.591000px;}
.ws60{word-spacing:-3.477000px;}
.ws66{word-spacing:-3.420000px;}
.wsae{word-spacing:-3.306000px;}
.wsac{word-spacing:-3.192000px;}
.ws137{word-spacing:-3.186000px;}
.wse0{word-spacing:-3.135000px;}
.ws43{word-spacing:-3.021000px;}
.ws138{word-spacing:-2.916000px;}
.wsad{word-spacing:-2.907000px;}
.ws148{word-spacing:-2.754000px;}
.ws1e{word-spacing:-2.736000px;}
.ws126{word-spacing:-2.592000px;}
.ws149{word-spacing:-2.538000px;}
.wsd0{word-spacing:-2.508000px;}
.wsd4{word-spacing:-2.451000px;}
.ws52{word-spacing:-2.394000px;}
.ws127{word-spacing:-2.376000px;}
.ws56{word-spacing:-2.337000px;}
.wsa7{word-spacing:-2.280000px;}
.ws32{word-spacing:-2.223000px;}
.ws8c{word-spacing:-2.166000px;}
.wsa6{word-spacing:-2.109000px;}
.ws135{word-spacing:-2.106000px;}
.ws5f{word-spacing:-2.052000px;}
.ws130{word-spacing:-1.998000px;}
.ws136{word-spacing:-1.944000px;}
.ws61{word-spacing:-1.938000px;}
.ws14c{word-spacing:-1.890000px;}
.wsc{word-spacing:-1.881000px;}
.ws131{word-spacing:-1.836000px;}
.ws4a{word-spacing:-1.767000px;}
.ws4f{word-spacing:-1.653000px;}
.wsb0{word-spacing:-1.596000px;}
.ws45{word-spacing:-1.539000px;}
.ws11a{word-spacing:-1.512000px;}
.ws106{word-spacing:-1.482000px;}
.ws117{word-spacing:-1.458000px;}
.ws113{word-spacing:-1.440000px;}
.ws7a{word-spacing:-1.425000px;}
.ws8e{word-spacing:-1.368000px;}
.ws118{word-spacing:-1.350000px;}
.wsa8{word-spacing:-1.311000px;}
.wsdf{word-spacing:-1.254000px;}
.wsa2{word-spacing:-1.197000px;}
.ws68{word-spacing:-1.140000px;}
.wsb1{word-spacing:-1.083000px;}
.wsc6{word-spacing:-1.026000px;}
.ws3b{word-spacing:-0.969000px;}
.ws12f{word-spacing:-0.918000px;}
.ws5a{word-spacing:-0.912000px;}
.ws19{word-spacing:-0.840000px;}
.ws4e{word-spacing:-0.798000px;}
.wsc7{word-spacing:-0.741000px;}
.wscc{word-spacing:-0.600000px;}
.ws12{word-spacing:-0.570000px;}
.ws5{word-spacing:-0.546000px;}
.ws51{word-spacing:-0.513000px;}
.ws12c{word-spacing:-0.486000px;}
.wsda{word-spacing:-0.456000px;}
.ws18{word-spacing:-0.450000px;}
.ws64{word-spacing:-0.420000px;}
.ws1a{word-spacing:-0.399000px;}
.wsab{word-spacing:-0.342000px;}
.ws145{word-spacing:-0.324000px;}
.wsdc{word-spacing:-0.285000px;}
.ws55{word-spacing:-0.228000px;}
.ws89{word-spacing:-0.171000px;}
.wsb5{word-spacing:-0.057000px;}
.ws121{word-spacing:-0.054000px;}
.ws4{word-spacing:0.000000px;}
.ws3d{word-spacing:0.054000px;}
.ws99{word-spacing:0.057000px;}
.ws42{word-spacing:0.114000px;}
.ws63{word-spacing:0.171000px;}
.ws4b{word-spacing:0.228000px;}
.ws9{word-spacing:0.285000px;}
.wse4{word-spacing:0.342000px;}
.ws6d{word-spacing:0.399000px;}
.ws50{word-spacing:0.456000px;}
.wscf{word-spacing:0.513000px;}
.wsd8{word-spacing:0.570000px;}
.ws2b{word-spacing:0.627000px;}
.ws2c{word-spacing:0.684000px;}
.ws125{word-spacing:0.702000px;}
.wsd{word-spacing:0.741000px;}
.ws124{word-spacing:0.810000px;}
.ws90{word-spacing:0.855000px;}
.ws97{word-spacing:0.912000px;}
.ws1d{word-spacing:0.969000px;}
.ws3c{word-spacing:1.026000px;}
.wsa1{word-spacing:1.083000px;}
.ws30{word-spacing:1.140000px;}
.ws82{word-spacing:1.197000px;}
.wse{word-spacing:1.254000px;}
.wsd2{word-spacing:1.311000px;}
.wsf5{word-spacing:1.368000px;}
.ws142{word-spacing:1.404000px;}
.ws13b{word-spacing:1.458000px;}
.wsb3{word-spacing:1.482000px;}
.wsb9{word-spacing:1.539000px;}
.ws141{word-spacing:1.566000px;}
.wsc8{word-spacing:1.596000px;}
.ws114{word-spacing:1.620000px;}
.ws4d{word-spacing:1.653000px;}
.ws83{word-spacing:1.710000px;}
.ws58{word-spacing:1.767000px;}
.wsf{word-spacing:1.824000px;}
.ws88{word-spacing:1.881000px;}
.ws72{word-spacing:1.938000px;}
.ws7e{word-spacing:1.995000px;}
.ws9d{word-spacing:2.052000px;}
.wsb8{word-spacing:2.109000px;}
.ws44{word-spacing:2.223000px;}
.wse3{word-spacing:2.280000px;}
.ws70{word-spacing:2.337000px;}
.ws13{word-spacing:2.394000px;}
.ws11b{word-spacing:2.430000px;}
.ws57{word-spacing:2.451000px;}
.wsf3{word-spacing:2.508000px;}
.ws7d{word-spacing:2.565000px;}
.wsd5{word-spacing:2.622000px;}
.ws2a{word-spacing:2.754000px;}
.ws5c{word-spacing:2.793000px;}
.ws29{word-spacing:2.808000px;}
.wsfe{word-spacing:2.850000px;}
.ws6c{word-spacing:2.907000px;}
.wsde{word-spacing:2.964000px;}
.wsc3{word-spacing:3.021000px;}
.ws24{word-spacing:3.078000px;}
.ws14a{word-spacing:3.132000px;}
.ws5b{word-spacing:3.135000px;}
.ws13d{word-spacing:3.186000px;}
.ws6e{word-spacing:3.192000px;}
.ws14f{word-spacing:3.249000px;}
.ws12b{word-spacing:3.294000px;}
.ws46{word-spacing:3.306000px;}
.ws12e{word-spacing:3.402000px;}
.wsa9{word-spacing:3.420000px;}
.ws14b{word-spacing:3.456000px;}
.ws80{word-spacing:3.477000px;}
.ws13c{word-spacing:3.510000px;}
.wsc5{word-spacing:3.534000px;}
.ws102{word-spacing:3.591000px;}
.ws108{word-spacing:3.648000px;}
.ws2e{word-spacing:3.705000px;}
.ws3a{word-spacing:3.762000px;}
.ws123{word-spacing:3.780000px;}
.ws1c{word-spacing:3.819000px;}
.ws84{word-spacing:3.876000px;}
.ws103{word-spacing:3.933000px;}
.ws9a{word-spacing:3.990000px;}
.ws8a{word-spacing:4.047000px;}
.ws122{word-spacing:4.158000px;}
.ws71{word-spacing:4.161000px;}
.ws150{word-spacing:4.218000px;}
.ws62{word-spacing:4.275000px;}
.ws41{word-spacing:4.332000px;}
.wsbd{word-spacing:4.389000px;}
.ws9f{word-spacing:4.446000px;}
.ws105{word-spacing:4.503000px;}
.ws13a{word-spacing:4.536000px;}
.wscb{word-spacing:4.560000px;}
.ws116{word-spacing:4.590000px;}
.ws23{word-spacing:4.617000px;}
.ws5e{word-spacing:4.788000px;}
.wsc2{word-spacing:4.845000px;}
.ws139{word-spacing:4.860000px;}
.ws101{word-spacing:4.902000px;}
.wsb6{word-spacing:4.959000px;}
.wsbc{word-spacing:5.016000px;}
.wsd6{word-spacing:5.073000px;}
.ws94{word-spacing:5.130000px;}
.ws6f{word-spacing:5.187000px;}
.ws9b{word-spacing:5.244000px;}
.ws81{word-spacing:5.301000px;}
.wsd9{word-spacing:5.358000px;}
.ws134{word-spacing:5.400000px;}
.ws39{word-spacing:5.415000px;}
.ws21{word-spacing:5.472000px;}
.wse1{word-spacing:5.529000px;}
.ws11c{word-spacing:5.562000px;}
.ws4c{word-spacing:5.586000px;}
.ws93{word-spacing:5.643000px;}
.ws6a{word-spacing:5.757000px;}
.ws14e{word-spacing:5.832000px;}
.ws79{word-spacing:5.871000px;}
.ws104{word-spacing:5.928000px;}
.ws85{word-spacing:5.985000px;}
.ws91{word-spacing:6.042000px;}
.ws11d{word-spacing:6.048000px;}
.ws69{word-spacing:6.156000px;}
.ws8d{word-spacing:6.213000px;}
.ws22{word-spacing:6.270000px;}
.wsd7{word-spacing:6.327000px;}
.ws27{word-spacing:6.384000px;}
.ws14d{word-spacing:6.426000px;}
.wsf8{word-spacing:6.441000px;}
.wsf9{word-spacing:6.498000px;}
.ws109{word-spacing:6.555000px;}
.wsfb{word-spacing:6.612000px;}
.ws14{word-spacing:6.642000px;}
.wsb4{word-spacing:6.669000px;}
.ws11e{word-spacing:6.696000px;}
.ws7{word-spacing:6.726000px;}
.ws5d{word-spacing:6.783000px;}
.ws7b{word-spacing:7.011000px;}
.ws65{word-spacing:7.068000px;}
.ws95{word-spacing:7.125000px;}
.wsd1{word-spacing:7.239000px;}
.ws28{word-spacing:7.410000px;}
.wsa{word-spacing:7.467000px;}
.ws120{word-spacing:7.506000px;}
.wsb2{word-spacing:7.524000px;}
.ws7c{word-spacing:7.638000px;}
.wsba{word-spacing:7.695000px;}
.wsbb{word-spacing:7.752000px;}
.wsc1{word-spacing:7.809000px;}
.ws10c{word-spacing:7.866000px;}
.ws76{word-spacing:7.980000px;}
.ws25{word-spacing:8.037000px;}
.wsfa{word-spacing:8.094000px;}
.ws8b{word-spacing:8.151000px;}
.ws7f{word-spacing:8.208000px;}
.wsc0{word-spacing:8.265000px;}
.ws8f{word-spacing:8.379000px;}
.ws53{word-spacing:8.436000px;}
.ws107{word-spacing:8.550000px;}
.ws49{word-spacing:8.607000px;}
.ws100{word-spacing:8.664000px;}
.ws75{word-spacing:8.778000px;}
.ws33{word-spacing:8.892000px;}
.ws9e{word-spacing:8.949000px;}
.wsa3{word-spacing:9.006000px;}
.ws13e{word-spacing:9.018000px;}
.ws31{word-spacing:9.063000px;}
.ws2f{word-spacing:9.120000px;}
.wsfc{word-spacing:9.234000px;}
.ws35{word-spacing:9.291000px;}
.ws115{word-spacing:9.342000px;}
.ws38{word-spacing:9.462000px;}
.ws12d{word-spacing:9.504000px;}
.ws47{word-spacing:9.576000px;}
.ws87{word-spacing:9.633000px;}
.wsb{word-spacing:9.690000px;}
.wsef{word-spacing:10.032000px;}
.ws96{word-spacing:10.089000px;}
.wsec{word-spacing:10.203000px;}
.ws78{word-spacing:10.374000px;}
.wsfd{word-spacing:10.488000px;}
.wsc9{word-spacing:10.659000px;}
.ws20{word-spacing:10.716000px;}
.ws111{word-spacing:10.773000px;}
.ws48{word-spacing:10.944000px;}
.ws13f{word-spacing:10.962000px;}
.ws59{word-spacing:11.001000px;}
.ws132{word-spacing:11.016000px;}
.ws10{word-spacing:11.058000px;}
.ws10a{word-spacing:11.115000px;}
.wsf4{word-spacing:11.172000px;}
.wse2{word-spacing:11.229000px;}
.ws98{word-spacing:11.514000px;}
.ws112{word-spacing:11.628000px;}
.wsd3{word-spacing:11.685000px;}
.wsf6{word-spacing:11.742000px;}
.wsaa{word-spacing:11.856000px;}
.ws144{word-spacing:11.880000px;}
.wsff{word-spacing:11.970000px;}
.wsdb{word-spacing:12.027000px;}
.wsf0{word-spacing:12.198000px;}
.ws140{word-spacing:12.258000px;}
.ws146{word-spacing:12.420000px;}
.ws73{word-spacing:12.426000px;}
.ws11f{word-spacing:12.528000px;}
.ws6b{word-spacing:12.597000px;}
.ws92{word-spacing:12.825000px;}
.wsf7{word-spacing:12.996000px;}
.wse5{word-spacing:13.167000px;}
.wsdd{word-spacing:13.680000px;}
.wsbe{word-spacing:13.908000px;}
.ws10d{word-spacing:14.136000px;}
.ws40{word-spacing:14.250000px;}
.wscd{word-spacing:14.307000px;}
.ws2d{word-spacing:14.478000px;}
.ws143{word-spacing:15.012000px;}
.wse9{word-spacing:15.048000px;}
.wse6{word-spacing:15.105000px;}
.ws3f{word-spacing:15.180000px;}
.ws77{word-spacing:15.732000px;}
.wsa5{word-spacing:15.903000px;}
.wsf2{word-spacing:15.960000px;}
.ws1f{word-spacing:16.302000px;}
.ws37{word-spacing:16.416000px;}
.ws26{word-spacing:16.815000px;}
.ws36{word-spacing:17.214000px;}
.wsa4{word-spacing:17.499000px;}
.wseb{word-spacing:17.727000px;}
.wse8{word-spacing:18.012000px;}
.ws1b{word-spacing:18.639000px;}
.ws10b{word-spacing:18.696000px;}
.wsbf{word-spacing:19.266000px;}
.wsed{word-spacing:20.691000px;}
.ws133{word-spacing:21.708000px;}
.ws34{word-spacing:22.002000px;}
.ws128{word-spacing:24.462000px;}
.ws11{word-spacing:26.049000px;}
.wse7{word-spacing:27.873000px;}
.wsea{word-spacing:29.241000px;}
.ws147{word-spacing:29.322000px;}
.wsee{word-spacing:33.630000px;}
.ws15{word-spacing:98.010000px;}
.ws3e{word-spacing:593.288400px;}
._b{margin-left:-15.190800px;}
._3{margin-left:-7.307400px;}
._5{margin-left:-6.006000px;}
._8{margin-left:-4.983600px;}
._4{margin-left:-3.907800px;}
._0{margin-left:-2.149200px;}
._1{margin-left:-1.124400px;}
._2{width:1.396200px;}
._6{width:2.918700px;}
._9{width:4.286700px;}
._7{width:6.271800px;}
._c{width:13.122000px;}
._a{width:15.829200px;}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:31.482000px;}
.fs6{font-size:45.000000px;}
.fs2{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs3{font-size:78.000000px;}
.fs4{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:55.815000px;}
.y52{bottom:56.126700px;}
.y28{bottom:56.665350px;}
.y26{bottom:91.956450px;}
.y25{bottom:106.954950px;}
.y133{bottom:114.567600px;}
.ya5{bottom:114.873600px;}
.y1e6{bottom:115.047450px;}
.y158{bottom:115.580700px;}
.y1b5{bottom:116.255250px;}
.y19b{bottom:116.659050px;}
.y23e{bottom:118.016850px;}
.y21a{bottom:118.063350px;}
.y104{bottom:121.898250px;}
.y1cd{bottom:122.006550px;}
.y1c9{bottom:122.787750px;}
.yf3{bottom:124.942500px;}
.y24{bottom:126.238350px;}
.y189{bottom:127.258200px;}
.ye9{bottom:129.366450px;}
.y1fc{bottom:130.264500px;}
.y7c{bottom:130.757850px;}
.ya4{bottom:131.370600px;}
.y132{bottom:131.824350px;}
.y1e5{bottom:132.304200px;}
.y269{bottom:132.570600px;}
.y157{bottom:132.837450px;}
.y1b4{bottom:133.512000px;}
.y19a{bottom:133.915800px;}
.y23d{bottom:135.269850px;}
.y219{bottom:135.320100px;}
.y14a{bottom:135.850350px;}
.y1cc{bottom:136.406550px;}
.y50{bottom:138.224250px;}
.y103{bottom:139.155000px;}
.y1c8{bottom:140.044500px;}
.yf2{bottom:142.199250px;}
.y23{bottom:144.236100px;}
.y188{bottom:144.514950px;}
.ye8{bottom:146.623200px;}
.y1fb{bottom:147.521250px;}
.ya3{bottom:147.867600px;}
.y7b{bottom:148.014600px;}
.y131{bottom:149.081100px;}
.y1e4{bottom:149.560950px;}
.y268{bottom:149.823600px;}
.y156{bottom:150.094200px;}
.y1b3{bottom:150.768750px;}
.y1cb{bottom:150.806550px;}
.y199{bottom:151.172550px;}
.y23c{bottom:152.522850px;}
.y218{bottom:152.576850px;}
.y149{bottom:153.107100px;}
.y4f{bottom:153.222750px;}
.y102{bottom:156.411750px;}
.y1c7{bottom:157.301250px;}
.yf1{bottom:159.456000px;}
.y187{bottom:161.771700px;}
.y22{bottom:162.233850px;}
.ye7{bottom:163.879950px;}
.ya2{bottom:164.364600px;}
.y1fa{bottom:164.778000px;}
.y7a{bottom:165.271350px;}
.y130{bottom:166.337850px;}
.y1e3{bottom:166.817700px;}
.y267{bottom:167.076600px;}
.y155{bottom:167.350950px;}
.y1b2{bottom:168.025500px;}
.y198{bottom:168.429300px;}
.y23b{bottom:169.775850px;}
.y217{bottom:169.833600px;}
.y148{bottom:170.363850px;}
.y4e{bottom:172.510800px;}
.y101{bottom:173.668500px;}
.y1c6{bottom:174.558000px;}
.yf0{bottom:176.712750px;}
.y186{bottom:179.028450px;}
.y21{bottom:180.231600px;}
.ye6{bottom:181.136700px;}
.y1f9{bottom:182.034750px;}
.y79{bottom:182.528100px;}
.y12f{bottom:183.594600px;}
.y1e2{bottom:184.074450px;}
.y266{bottom:184.329600px;}
.y154{bottom:184.607700px;}
.y1b1{bottom:185.282250px;}
.y197{bottom:185.686050px;}
.y23a{bottom:187.028850px;}
.y216{bottom:187.090350px;}
.y147{bottom:187.620600px;}
.y4d{bottom:190.508550px;}
.y100{bottom:190.925250px;}
.y1c5{bottom:191.814750px;}
.yef{bottom:193.969500px;}
.y185{bottom:196.285200px;}
.ya1{bottom:197.905350px;}
.y20{bottom:198.229350px;}
.ye5{bottom:198.393450px;}
.y1f8{bottom:199.291500px;}
.y78{bottom:199.784850px;}
.y12e{bottom:200.851350px;}
.y1e1{bottom:201.331200px;}
.y265{bottom:201.582600px;}
.y153{bottom:201.864450px;}
.y1b0{bottom:202.539000px;}
.y196{bottom:202.942800px;}
.y239{bottom:204.281850px;}
.y215{bottom:204.347100px;}
.y146{bottom:204.877350px;}
.yff{bottom:208.182000px;}
.y4c{bottom:208.506300px;}
.y1c4{bottom:209.071500px;}
.ybb{bottom:209.953500px;}
.yee{bottom:211.226250px;}
.y184{bottom:213.541950px;}
.ya0{bottom:215.162100px;}
.ye4{bottom:215.650200px;}
.y1f{bottom:216.227100px;}
.y1f7{bottom:216.548250px;}
.y77{bottom:217.041600px;}
.y12d{bottom:218.108100px;}
.y1e0{bottom:218.587950px;}
.y264{bottom:218.835600px;}
.y152{bottom:219.121200px;}
.y1af{bottom:219.795750px;}
.y195{bottom:220.199550px;}
.y238{bottom:221.534850px;}
.y214{bottom:221.603850px;}
.y145{bottom:222.134100px;}
.yfe{bottom:225.438750px;}
.y1c3{bottom:226.328250px;}
.y4b{bottom:226.504050px;}
.yba{bottom:227.210250px;}
.yed{bottom:228.483000px;}
.y183{bottom:230.798700px;}
.y9f{bottom:232.418850px;}
.ye3{bottom:232.906950px;}
.y1f6{bottom:233.805000px;}
.y1e{bottom:234.224850px;}
.y76{bottom:234.298350px;}
.y12c{bottom:235.364850px;}
.y1df{bottom:235.844700px;}
.y263{bottom:236.088600px;}
.y151{bottom:236.377950px;}
.y1ae{bottom:237.052500px;}
.y194{bottom:237.456300px;}
.y237{bottom:238.787850px;}
.y213{bottom:238.860600px;}
.y144{bottom:239.390850px;}
.yfd{bottom:242.695500px;}
.y1c2{bottom:243.585000px;}
.yb9{bottom:244.467000px;}
.y4a{bottom:244.501800px;}
.yec{bottom:245.739750px;}
.y182{bottom:248.055450px;}
.y9e{bottom:249.675600px;}
.ye2{bottom:250.163700px;}
.y1f5{bottom:251.061750px;}
.y75{bottom:251.555100px;}
.y1d{bottom:252.222600px;}
.y12b{bottom:252.621600px;}
.y262{bottom:253.341600px;}
.y150{bottom:253.634700px;}
.y1ad{bottom:254.309250px;}
.y193{bottom:254.713050px;}
.y236{bottom:256.040850px;}
.y212{bottom:256.117350px;}
.y143{bottom:256.647600px;}
.yfc{bottom:259.952250px;}
.y1c1{bottom:260.841750px;}
.yb8{bottom:261.723750px;}
.y49{bottom:262.499550px;}
.yeb{bottom:262.996500px;}
.y181{bottom:265.312200px;}
.y9d{bottom:266.932350px;}
.ye1{bottom:267.420450px;}
.y1f4{bottom:268.318500px;}
.y74{bottom:268.811850px;}
.y12a{bottom:269.878350px;}
.y1c{bottom:270.220350px;}
.y1de{bottom:270.383850px;}
.y261{bottom:270.594600px;}
.y14f{bottom:270.891450px;}
.y1ac{bottom:271.566000px;}
.y192{bottom:271.969800px;}
.y235{bottom:273.293850px;}
.y211{bottom:273.374100px;}
.y142{bottom:273.904350px;}
.yfb{bottom:277.209000px;}
.y1c0{bottom:278.098500px;}
.yb7{bottom:278.980500px;}
.yea{bottom:280.253250px;}
.y48{bottom:280.497300px;}
.y180{bottom:282.568950px;}
.y9c{bottom:284.189100px;}
.ye0{bottom:284.677200px;}
.y1f3{bottom:285.575250px;}
.y73{bottom:286.068600px;}
.y1dd{bottom:286.880850px;}
.y129{bottom:287.135100px;}
.y260{bottom:287.847600px;}
.y14e{bottom:288.148200px;}
.y1b{bottom:288.218100px;}
.y1ab{bottom:288.822750px;}
.y191{bottom:289.226550px;}
.y234{bottom:290.546850px;}
.y210{bottom:290.630850px;}
.y141{bottom:291.161100px;}
.y1bf{bottom:295.355250px;}
.yb6{bottom:296.237250px;}
.y47{bottom:298.495050px;}
.y17f{bottom:299.825700px;}
.y9b{bottom:301.445850px;}
.ydf{bottom:301.933950px;}
.y1f2{bottom:302.832000px;}
.y72{bottom:303.325350px;}
.y128{bottom:304.391850px;}
.y25f{bottom:305.100600px;}
.y14d{bottom:305.404950px;}
.y1aa{bottom:306.079500px;}
.y1a{bottom:306.215850px;}
.y190{bottom:306.483300px;}
.y233{bottom:307.799850px;}
.y20f{bottom:307.887600px;}
.y140{bottom:308.417850px;}
.y1dc{bottom:311.882850px;}
.y1be{bottom:312.612000px;}
.yb5{bottom:313.494000px;}
.y46{bottom:316.492800px;}
.y17e{bottom:317.082450px;}
.y9a{bottom:318.702600px;}
.yde{bottom:319.190700px;}
.y1f1{bottom:320.088750px;}
.y71{bottom:320.582100px;}
.y127{bottom:321.648600px;}
.y10a{bottom:322.254300px;}
.y25e{bottom:322.353600px;}
.y1a9{bottom:323.336250px;}
.y18f{bottom:323.740050px;}
.y19{bottom:324.213600px;}
.y232{bottom:325.052850px;}
.y20e{bottom:325.144350px;}
.yfa{bottom:325.298700px;}
.y13f{bottom:325.674600px;}
.y1db{bottom:328.379850px;}
.y1bd{bottom:329.868750px;}
.yb4{bottom:330.750750px;}
.y17d{bottom:334.339200px;}
.y45{bottom:334.490550px;}
.y99{bottom:335.959350px;}
.ydd{bottom:336.447450px;}
.y109{bottom:336.654300px;}
.y1f0{bottom:337.345500px;}
.y70{bottom:337.838850px;}
.y126{bottom:338.905350px;}
.y25d{bottom:339.606600px;}
.yf9{bottom:339.698700px;}
.y1a8{bottom:340.593000px;}
.y18e{bottom:340.996800px;}
.y18{bottom:342.211350px;}
.y231{bottom:342.305850px;}
.y20d{bottom:342.401100px;}
.y13e{bottom:342.931350px;}
.y1da{bottom:344.876850px;}
.y1bc{bottom:347.125500px;}
.yb3{bottom:348.007500px;}
.y161{bottom:350.450250px;}
.y108{bottom:351.054300px;}
.y17c{bottom:351.595950px;}
.y44{bottom:352.488300px;}
.y98{bottom:353.216100px;}
.ydc{bottom:353.704200px;}
.yf8{bottom:354.098700px;}
.y1ef{bottom:354.602250px;}
.y6f{bottom:355.095600px;}
.y125{bottom:356.162100px;}
.y25c{bottom:356.859600px;}
.y1a7{bottom:357.849750px;}
.y18d{bottom:358.253550px;}
.y230{bottom:359.558850px;}
.y20c{bottom:359.657850px;}
.y13d{bottom:360.188100px;}
.y17{bottom:360.209100px;}
.y1d9{bottom:361.373850px;}
.y1bb{bottom:364.382250px;}
.y160{bottom:364.850250px;}
.yb2{bottom:365.264250px;}
.y107{bottom:365.454300px;}
.yf7{bottom:368.498700px;}
.y17b{bottom:368.852700px;}
.y97{bottom:370.472850px;}
.y43{bottom:370.486050px;}
.ydb{bottom:370.960950px;}
.y1ee{bottom:371.859000px;}
.y6e{bottom:372.352350px;}
.y124{bottom:373.418850px;}
.y25b{bottom:374.112600px;}
.y1a6{bottom:375.106500px;}
.y18c{bottom:375.510300px;}
.y22f{bottom:376.811850px;}
.y20b{bottom:376.914600px;}
.y13c{bottom:377.444850px;}
.y16{bottom:378.206850px;}
.y15f{bottom:379.250250px;}
.y1ba{bottom:381.639000px;}
.yb1{bottom:382.521000px;}
.yf6{bottom:382.898700px;}
.y17a{bottom:386.109450px;}
.y1d8{bottom:386.375850px;}
.y96{bottom:387.729600px;}
.yda{bottom:388.217700px;}
.y42{bottom:388.483800px;}
.y1ed{bottom:389.115750px;}
.y6d{bottom:389.609100px;}
.y123{bottom:390.675600px;}
.y25a{bottom:391.365600px;}
.y1a5{bottom:392.363250px;}
.y18b{bottom:392.767050px;}
.y15e{bottom:393.650250px;}
.y22e{bottom:394.064850px;}
.y20a{bottom:394.171350px;}
.y13b{bottom:394.701600px;}
.yf5{bottom:397.298700px;}
.y1b9{bottom:398.895750px;}
.yb0{bottom:399.777750px;}
.y1d7{bottom:402.872850px;}
.y179{bottom:403.366200px;}
.y15{bottom:404.710800px;}
.y95{bottom:404.986350px;}
.yd9{bottom:405.474450px;}
.y1ec{bottom:406.372500px;}
.y41{bottom:406.481550px;}
.y6c{bottom:406.865850px;}
.y122{bottom:407.932350px;}
.y259{bottom:408.618600px;}
.y1a4{bottom:409.620000px;}
.y18a{bottom:410.023800px;}
.y22d{bottom:411.317850px;}
.y209{bottom:411.428100px;}
.yf4{bottom:411.698700px;}
.y13a{bottom:411.958350px;}
.y1b8{bottom:416.152500px;}
.yaf{bottom:417.034500px;}
.y1d6{bottom:419.369850px;}
.y178{bottom:420.622950px;}
.y94{bottom:422.243100px;}
.yd8{bottom:422.731200px;}
.y1eb{bottom:423.629250px;}
.y6b{bottom:424.122600px;}
.y40{bottom:424.479300px;}
.y121{bottom:425.189100px;}
.y258{bottom:425.871600px;}
.y1a3{bottom:426.876750px;}
.y22c{bottom:428.570850px;}
.y208{bottom:428.684850px;}
.y139{bottom:429.215100px;}
.y1b7{bottom:433.409250px;}
.yae{bottom:434.291250px;}
.y1d5{bottom:435.866850px;}
.y177{bottom:437.879700px;}
.y93{bottom:439.499850px;}
.yd7{bottom:439.987950px;}
.y1ea{bottom:440.886000px;}
.y6a{bottom:441.379350px;}
.y120{bottom:442.445850px;}
.y3f{bottom:442.477050px;}
.y257{bottom:443.124600px;}
.y1a2{bottom:444.133500px;}
.y22b{bottom:445.823850px;}
.y207{bottom:445.941600px;}
.y138{bottom:446.471850px;}
.y19c{bottom:450.332400px;}
.yad{bottom:451.548000px;}
.y176{bottom:455.136450px;}
.y92{bottom:456.756600px;}
.yd6{bottom:457.244700px;}
.y1e9{bottom:458.142750px;}
.y69{bottom:458.636100px;}
.y11f{bottom:459.702600px;}
.y256{bottom:460.377600px;}
.y3e{bottom:460.474800px;}
.y1d4{bottom:460.868850px;}
.y1a1{bottom:461.390250px;}
.y22a{bottom:463.076850px;}
.y206{bottom:463.198350px;}
.y137{bottom:463.728600px;}
.yac{bottom:468.804750px;}
.y175{bottom:472.393200px;}
.y91{bottom:474.013350px;}
.yd5{bottom:474.501450px;}
.y1e8{bottom:475.399500px;}
.y68{bottom:475.892850px;}
.y14{bottom:476.531100px;}
.y11e{bottom:476.959350px;}
.y1d3{bottom:477.365850px;}
.y255{bottom:477.630600px;}
.y1ca{bottom:478.454550px;}
.y1a0{bottom:478.647000px;}
.y229{bottom:480.329850px;}
.y205{bottom:480.455100px;}
.y136{bottom:480.985350px;}
.yab{bottom:486.061500px;}
.y3d{bottom:486.978750px;}
.y174{bottom:489.649950px;}
.y90{bottom:491.270100px;}
.y13{bottom:491.529600px;}
.yd4{bottom:491.758200px;}
.y1e7{bottom:492.656250px;}
.y67{bottom:493.149600px;}
.y1d2{bottom:493.862850px;}
.y11d{bottom:494.216100px;}
.y254{bottom:494.883600px;}
.y19f{bottom:495.903750px;}
.y228{bottom:497.582850px;}
.y204{bottom:497.711850px;}
.y135{bottom:498.242100px;}
.yaa{bottom:503.318250px;}
.y12{bottom:506.528100px;}
.y173{bottom:506.906700px;}
.y8f{bottom:508.526850px;}
.yd3{bottom:509.014950px;}
.y1d1{bottom:510.359850px;}
.y66{bottom:510.406350px;}
.y11c{bottom:511.472850px;}
.y253{bottom:512.136600px;}
.y19e{bottom:513.160500px;}
.y227{bottom:514.835850px;}
.y203{bottom:514.968600px;}
.y134{bottom:515.498850px;}
.y172{bottom:524.163450px;}
.y3c{bottom:524.780250px;}
.y11{bottom:525.780000px;}
.y8e{bottom:525.783600px;}
.yd2{bottom:526.271700px;}
.y1d0{bottom:526.856850px;}
.y65{bottom:527.663100px;}
.y11b{bottom:528.729600px;}
.y252{bottom:529.389600px;}
.y19d{bottom:530.417250px;}
.y226{bottom:532.088850px;}
.y202{bottom:537.701550px;}
.ya9{bottom:537.827550px;}
.y3b{bottom:539.778750px;}
.y8d{bottom:543.040350px;}
.yd1{bottom:543.528450px;}
.y277{bottom:543.615600px;}
.y64{bottom:544.919850px;}
.y11a{bottom:545.986350px;}
.y251{bottom:546.642600px;}
.y225{bottom:549.341850px;}
.y201{bottom:552.101550px;}
.y10{bottom:553.783950px;}
.ya8{bottom:554.324550px;}
.y3a{bottom:559.066650px;}
.y171{bottom:559.413450px;}
.y220{bottom:560.013900px;}
.y8c{bottom:560.297100px;}
.y14c{bottom:560.544150px;}
.y276{bottom:560.872350px;}
.y63{bottom:562.176600px;}
.y119{bottom:563.243100px;}
.y250{bottom:563.895600px;}
.y200{bottom:566.501550px;}
.y224{bottom:566.594850px;}
.ya7{bottom:570.821550px;}
.y21f{bottom:574.413900px;}
.y14b{bottom:574.944150px;}
.y39{bottom:577.064400px;}
.yf{bottom:577.183950px;}
.y8b{bottom:577.553850px;}
.y1cf{bottom:577.614600px;}
.yd0{bottom:578.069100px;}
.y275{bottom:578.129100px;}
.y62{bottom:579.433350px;}
.y118{bottom:580.499850px;}
.y1ff{bottom:580.901550px;}
.y24f{bottom:581.148600px;}
.y223{bottom:583.847850px;}
.ya6{bottom:587.318550px;}
.y1b6{bottom:587.733600px;}
.y21e{bottom:588.813900px;}
.ycf{bottom:594.566100px;}
.y8a{bottom:594.810600px;}
.y38{bottom:595.062150px;}
.y1fe{bottom:595.301550px;}
.y274{bottom:595.385850px;}
.y1ce{bottom:595.614600px;}
.y15d{bottom:596.476200px;}
.y61{bottom:596.690100px;}
.y117{bottom:597.756600px;}
.y24e{bottom:598.401600px;}
.ye{bottom:600.583950px;}
.y222{bottom:601.100850px;}
.y21d{bottom:603.213900px;}
.y1fd{bottom:609.701550px;}
.y15c{bottom:610.876200px;}
.y89{bottom:612.067350px;}
.y273{bottom:612.642600px;}
.y37{bottom:613.059900px;}
.y60{bottom:613.946850px;}
.y116{bottom:615.013350px;}
.yce{bottom:615.315600px;}
.y24d{bottom:615.654600px;}
.y21c{bottom:617.613900px;}
.yd{bottom:623.983950px;}
.y15b{bottom:625.276200px;}
.y88{bottom:629.324100px;}
.y272{bottom:629.899350px;}
.y170{bottom:630.704100px;}
.y36{bottom:631.057650px;}
.y5f{bottom:631.203600px;}
.yc1{bottom:631.808850px;}
.ycd{bottom:631.812600px;}
.y21b{bottom:632.013900px;}
.y115{bottom:632.270100px;}
.y24c{bottom:632.907600px;}
.y221{bottom:636.350850px;}
.y15a{bottom:639.676200px;}
.yc0{bottom:646.208850px;}
.y87{bottom:646.580850px;}
.y106{bottom:646.665600px;}
.y271{bottom:647.156100px;}
.y16f{bottom:647.201100px;}
.yc{bottom:647.383950px;}
.ycc{bottom:648.309600px;}
.y5e{bottom:648.460350px;}
.y35{bottom:649.055400px;}
.y114{bottom:649.526850px;}
.y24b{bottom:650.160600px;}
.y159{bottom:654.076200px;}
.ybf{bottom:660.608850px;}
.y105{bottom:661.065600px;}
.y86{bottom:663.837600px;}
.y270{bottom:664.412850px;}
.ycb{bottom:664.806600px;}
.y5d{bottom:665.717100px;}
.y113{bottom:666.783600px;}
.y34{bottom:667.053150px;}
.y24a{bottom:667.413600px;}
.y16e{bottom:667.950600px;}
.yb{bottom:670.783950px;}
.ybe{bottom:675.008850px;}
.y85{bottom:681.094350px;}
.y26f{bottom:681.669600px;}
.y5c{bottom:682.973850px;}
.y112{bottom:684.040350px;}
.y16d{bottom:684.447600px;}
.y249{bottom:684.666600px;}
.y33{bottom:685.050900px;}
.yca{bottom:685.556100px;}
.ybd{bottom:689.408850px;}
.ya{bottom:694.183950px;}
.y84{bottom:698.351100px;}
.y5b{bottom:700.230600px;}
.y16c{bottom:700.944600px;}
.y111{bottom:701.297100px;}
.y248{bottom:701.895600px;}
.yc9{bottom:702.053100px;}
.y32{bottom:703.048650px;}
.ybc{bottom:703.808850px;}
.y83{bottom:715.607850px;}
.y26e{bottom:716.919600px;}
.y16b{bottom:717.441600px;}
.y5a{bottom:717.487350px;}
.y9{bottom:717.583950px;}
.yc8{bottom:718.550100px;}
.y110{bottom:718.553850px;}
.y247{bottom:719.148600px;}
.y31{bottom:721.046400px;}
.y82{bottom:732.864600px;}
.y59{bottom:734.744100px;}
.yc7{bottom:735.047100px;}
.y10f{bottom:735.810600px;}
.y246{bottom:736.401600px;}
.y16a{bottom:738.191100px;}
.y30{bottom:739.044150px;}
.y8{bottom:740.983950px;}
.y58{bottom:752.000850px;}
.y10e{bottom:753.067350px;}
.y245{bottom:753.654600px;}
.y169{bottom:754.688100px;}
.yc6{bottom:755.796600px;}
.y2f{bottom:757.041900px;}
.y7{bottom:764.383950px;}
.y81{bottom:768.114600px;}
.y57{bottom:769.257600px;}
.y10d{bottom:770.324100px;}
.y26d{bottom:770.901600px;}
.y244{bottom:770.907600px;}
.y168{bottom:771.185100px;}
.yc5{bottom:772.293600px;}
.y2e{bottom:775.039650px;}
.y56{bottom:786.514350px;}
.y10c{bottom:787.580850px;}
.y167{bottom:787.682100px;}
.y6{bottom:787.783950px;}
.y26c{bottom:788.154600px;}
.y243{bottom:788.160600px;}
.yc4{bottom:788.790600px;}
.y2d{bottom:793.037400px;}
.y55{bottom:803.771100px;}
.y10b{bottom:804.837600px;}
.yc3{bottom:805.287600px;}
.y26b{bottom:805.407600px;}
.y242{bottom:805.413600px;}
.y166{bottom:808.431600px;}
.y2c{bottom:811.035150px;}
.y54{bottom:821.027850px;}
.yc2{bottom:821.784600px;}
.y80{bottom:822.094350px;}
.y26a{bottom:822.660600px;}
.y241{bottom:822.666600px;}
.y165{bottom:824.928600px;}
.y2b{bottom:829.032900px;}
.y53{bottom:838.284600px;}
.y7f{bottom:839.351100px;}
.y240{bottom:839.913600px;}
.y164{bottom:841.425600px;}
.y2a{bottom:847.030650px;}
.y5{bottom:849.772950px;}
.y7e{bottom:856.607850px;}
.y23f{bottom:857.166600px;}
.y163{bottom:857.922600px;}
.y4{bottom:867.772950px;}
.y29{bottom:873.534600px;}
.y7d{bottom:873.864600px;}
.y162{bottom:874.419600px;}
.y3{bottom:885.772950px;}
.y2{bottom:903.772950px;}
.y51{bottom:916.970700px;}
.y27{bottom:917.533200px;}
.h4{height:36.000000px;}
.hb{height:37.305000px;}
.hc{height:39.792000px;}
.he{height:43.536000px;}
.h7{height:46.170000px;}
.hf{height:46.194000px;}
.h10{height:46.266000px;}
.h2{height:46.332000px;}
.h8{height:47.790000px;}
.hd{height:48.486600px;}
.ha{height:48.735000px;}
.h11{height:50.445000px;}
.h9{height:52.387059px;}
.h3{height:52.646484px;}
.h5{height:68.103176px;}
.h6{height:72.072000px;}
.h0{height:977.953500px;}
.h1{height:978.000000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x17{left:63.779550px;}
.x1b{left:66.523200px;}
.x1c{left:67.759200px;}
.x1d{left:68.875200px;}
.x1f{left:70.044750px;}
.x13{left:72.388350px;}
.x1e{left:74.695200px;}
.x27{left:75.954900px;}
.x28{left:77.766900px;}
.x9{left:82.726650px;}
.x14{left:85.198800px;}
.xe{left:88.635150px;}
.x2e{left:90.342600px;}
.x21{left:92.199000px;}
.xb{left:94.017150px;}
.xc{left:95.128650px;}
.x23{left:96.428550px;}
.x2c{left:98.202600px;}
.x7{left:102.051150px;}
.xd{left:104.800650px;}
.x2f{left:106.818600px;}
.x2d{left:108.426600px;}
.x18{left:119.055150px;}
.x6{left:120.361650px;}
.x32{left:123.311400px;}
.xa{left:127.576650px;}
.x11{left:132.705000px;}
.x8{left:134.089650px;}
.x1a{left:153.070800px;}
.x2b{left:157.223850px;}
.x31{left:159.690900px;}
.x2a{left:162.131850px;}
.x19{left:178.582650px;}
.x20{left:187.824750px;}
.x2{left:200.302050px;}
.x29{left:205.962900px;}
.x24{left:213.860550px;}
.x12{left:225.868500px;}
.x22{left:232.719000px;}
.x16{left:235.608450px;}
.xf{left:238.141650px;}
.x10{left:272.563200px;}
.x26{left:277.386150px;}
.x25{left:302.886750px;}
.x30{left:310.182600px;}
.x1{left:338.727750px;}
.x4{left:391.174950px;}
.x5{left:407.314950px;}
.x3{left:409.462950px;}
.x15{left:552.588450px;}
@media print{
.v2{vertical-align:-1.917867pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.915200pt;}
.v3{vertical-align:16.005333pt;}
.ls9{letter-spacing:-2.786667pt;}
.lsf{letter-spacing:-0.962667pt;}
.ls6{letter-spacing:-0.853333pt;}
.lsc{letter-spacing:-0.760000pt;}
.lsb{letter-spacing:-0.253333pt;}
.lsa{letter-spacing:-0.053333pt;}
.ls7{letter-spacing:-0.050667pt;}
.ls4{letter-spacing:-0.048000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.048000pt;}
.ls8{letter-spacing:0.050667pt;}
.ls10{letter-spacing:0.144000pt;}
.ls12{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.202667pt;}
.lse{letter-spacing:0.709333pt;}
.ls2{letter-spacing:0.746667pt;}
.ls0{letter-spacing:0.970667pt;}
.ls13{letter-spacing:1.248000pt;}
.ls5{letter-spacing:1.280000pt;}
.ls1{letter-spacing:43.392000pt;}
.wsf1{word-spacing:-14.080000pt;}
.ws3{word-spacing:-13.546667pt;}
.ws0{word-spacing:-13.333333pt;}
.ws12a{word-spacing:-11.808000pt;}
.ws17{word-spacing:-10.800000pt;}
.ws2{word-spacing:-10.560000pt;}
.ws9c{word-spacing:-10.184000pt;}
.ws74{word-spacing:-10.133333pt;}
.ws1{word-spacing:-10.026667pt;}
.ws16{word-spacing:-10.000000pt;}
.ws10f{word-spacing:-9.648000pt;}
.ws10e{word-spacing:-9.600000pt;}
.ws129{word-spacing:-6.156480pt;}
.ws86{word-spacing:-4.712000pt;}
.wsce{word-spacing:-4.458667pt;}
.ws54{word-spacing:-4.205333pt;}
.wsc4{word-spacing:-3.850667pt;}
.wsb7{word-spacing:-3.800000pt;}
.wsca{word-spacing:-3.749333pt;}
.ws8{word-spacing:-3.698667pt;}
.ws67{word-spacing:-3.597333pt;}
.ws110{word-spacing:-3.394667pt;}
.wsa0{word-spacing:-3.344000pt;}
.wsaf{word-spacing:-3.242667pt;}
.ws119{word-spacing:-3.216000pt;}
.ws6{word-spacing:-3.192000pt;}
.ws60{word-spacing:-3.090667pt;}
.ws66{word-spacing:-3.040000pt;}
.wsae{word-spacing:-2.938667pt;}
.wsac{word-spacing:-2.837333pt;}
.ws137{word-spacing:-2.832000pt;}
.wse0{word-spacing:-2.786667pt;}
.ws43{word-spacing:-2.685333pt;}
.ws138{word-spacing:-2.592000pt;}
.wsad{word-spacing:-2.584000pt;}
.ws148{word-spacing:-2.448000pt;}
.ws1e{word-spacing:-2.432000pt;}
.ws126{word-spacing:-2.304000pt;}
.ws149{word-spacing:-2.256000pt;}
.wsd0{word-spacing:-2.229333pt;}
.wsd4{word-spacing:-2.178667pt;}
.ws52{word-spacing:-2.128000pt;}
.ws127{word-spacing:-2.112000pt;}
.ws56{word-spacing:-2.077333pt;}
.wsa7{word-spacing:-2.026667pt;}
.ws32{word-spacing:-1.976000pt;}
.ws8c{word-spacing:-1.925333pt;}
.wsa6{word-spacing:-1.874667pt;}
.ws135{word-spacing:-1.872000pt;}
.ws5f{word-spacing:-1.824000pt;}
.ws130{word-spacing:-1.776000pt;}
.ws136{word-spacing:-1.728000pt;}
.ws61{word-spacing:-1.722667pt;}
.ws14c{word-spacing:-1.680000pt;}
.wsc{word-spacing:-1.672000pt;}
.ws131{word-spacing:-1.632000pt;}
.ws4a{word-spacing:-1.570667pt;}
.ws4f{word-spacing:-1.469333pt;}
.wsb0{word-spacing:-1.418667pt;}
.ws45{word-spacing:-1.368000pt;}
.ws11a{word-spacing:-1.344000pt;}
.ws106{word-spacing:-1.317333pt;}
.ws117{word-spacing:-1.296000pt;}
.ws113{word-spacing:-1.280000pt;}
.ws7a{word-spacing:-1.266667pt;}
.ws8e{word-spacing:-1.216000pt;}
.ws118{word-spacing:-1.200000pt;}
.wsa8{word-spacing:-1.165333pt;}
.wsdf{word-spacing:-1.114667pt;}
.wsa2{word-spacing:-1.064000pt;}
.ws68{word-spacing:-1.013333pt;}
.wsb1{word-spacing:-0.962667pt;}
.wsc6{word-spacing:-0.912000pt;}
.ws3b{word-spacing:-0.861333pt;}
.ws12f{word-spacing:-0.816000pt;}
.ws5a{word-spacing:-0.810667pt;}
.ws19{word-spacing:-0.746667pt;}
.ws4e{word-spacing:-0.709333pt;}
.wsc7{word-spacing:-0.658667pt;}
.wscc{word-spacing:-0.533333pt;}
.ws12{word-spacing:-0.506667pt;}
.ws5{word-spacing:-0.485333pt;}
.ws51{word-spacing:-0.456000pt;}
.ws12c{word-spacing:-0.432000pt;}
.wsda{word-spacing:-0.405333pt;}
.ws18{word-spacing:-0.400000pt;}
.ws64{word-spacing:-0.373333pt;}
.ws1a{word-spacing:-0.354667pt;}
.wsab{word-spacing:-0.304000pt;}
.ws145{word-spacing:-0.288000pt;}
.wsdc{word-spacing:-0.253333pt;}
.ws55{word-spacing:-0.202667pt;}
.ws89{word-spacing:-0.152000pt;}
.wsb5{word-spacing:-0.050667pt;}
.ws121{word-spacing:-0.048000pt;}
.ws4{word-spacing:0.000000pt;}
.ws3d{word-spacing:0.048000pt;}
.ws99{word-spacing:0.050667pt;}
.ws42{word-spacing:0.101333pt;}
.ws63{word-spacing:0.152000pt;}
.ws4b{word-spacing:0.202667pt;}
.ws9{word-spacing:0.253333pt;}
.wse4{word-spacing:0.304000pt;}
.ws6d{word-spacing:0.354667pt;}
.ws50{word-spacing:0.405333pt;}
.wscf{word-spacing:0.456000pt;}
.wsd8{word-spacing:0.506667pt;}
.ws2b{word-spacing:0.557333pt;}
.ws2c{word-spacing:0.608000pt;}
.ws125{word-spacing:0.624000pt;}
.wsd{word-spacing:0.658667pt;}
.ws124{word-spacing:0.720000pt;}
.ws90{word-spacing:0.760000pt;}
.ws97{word-spacing:0.810667pt;}
.ws1d{word-spacing:0.861333pt;}
.ws3c{word-spacing:0.912000pt;}
.wsa1{word-spacing:0.962667pt;}
.ws30{word-spacing:1.013333pt;}
.ws82{word-spacing:1.064000pt;}
.wse{word-spacing:1.114667pt;}
.wsd2{word-spacing:1.165333pt;}
.wsf5{word-spacing:1.216000pt;}
.ws142{word-spacing:1.248000pt;}
.ws13b{word-spacing:1.296000pt;}
.wsb3{word-spacing:1.317333pt;}
.wsb9{word-spacing:1.368000pt;}
.ws141{word-spacing:1.392000pt;}
.wsc8{word-spacing:1.418667pt;}
.ws114{word-spacing:1.440000pt;}
.ws4d{word-spacing:1.469333pt;}
.ws83{word-spacing:1.520000pt;}
.ws58{word-spacing:1.570667pt;}
.wsf{word-spacing:1.621333pt;}
.ws88{word-spacing:1.672000pt;}
.ws72{word-spacing:1.722667pt;}
.ws7e{word-spacing:1.773333pt;}
.ws9d{word-spacing:1.824000pt;}
.wsb8{word-spacing:1.874667pt;}
.ws44{word-spacing:1.976000pt;}
.wse3{word-spacing:2.026667pt;}
.ws70{word-spacing:2.077333pt;}
.ws13{word-spacing:2.128000pt;}
.ws11b{word-spacing:2.160000pt;}
.ws57{word-spacing:2.178667pt;}
.wsf3{word-spacing:2.229333pt;}
.ws7d{word-spacing:2.280000pt;}
.wsd5{word-spacing:2.330667pt;}
.ws2a{word-spacing:2.448000pt;}
.ws5c{word-spacing:2.482667pt;}
.ws29{word-spacing:2.496000pt;}
.wsfe{word-spacing:2.533333pt;}
.ws6c{word-spacing:2.584000pt;}
.wsde{word-spacing:2.634667pt;}
.wsc3{word-spacing:2.685333pt;}
.ws24{word-spacing:2.736000pt;}
.ws14a{word-spacing:2.784000pt;}
.ws5b{word-spacing:2.786667pt;}
.ws13d{word-spacing:2.832000pt;}
.ws6e{word-spacing:2.837333pt;}
.ws14f{word-spacing:2.888000pt;}
.ws12b{word-spacing:2.928000pt;}
.ws46{word-spacing:2.938667pt;}
.ws12e{word-spacing:3.024000pt;}
.wsa9{word-spacing:3.040000pt;}
.ws14b{word-spacing:3.072000pt;}
.ws80{word-spacing:3.090667pt;}
.ws13c{word-spacing:3.120000pt;}
.wsc5{word-spacing:3.141333pt;}
.ws102{word-spacing:3.192000pt;}
.ws108{word-spacing:3.242667pt;}
.ws2e{word-spacing:3.293333pt;}
.ws3a{word-spacing:3.344000pt;}
.ws123{word-spacing:3.360000pt;}
.ws1c{word-spacing:3.394667pt;}
.ws84{word-spacing:3.445333pt;}
.ws103{word-spacing:3.496000pt;}
.ws9a{word-spacing:3.546667pt;}
.ws8a{word-spacing:3.597333pt;}
.ws122{word-spacing:3.696000pt;}
.ws71{word-spacing:3.698667pt;}
.ws150{word-spacing:3.749333pt;}
.ws62{word-spacing:3.800000pt;}
.ws41{word-spacing:3.850667pt;}
.wsbd{word-spacing:3.901333pt;}
.ws9f{word-spacing:3.952000pt;}
.ws105{word-spacing:4.002667pt;}
.ws13a{word-spacing:4.032000pt;}
.wscb{word-spacing:4.053333pt;}
.ws116{word-spacing:4.080000pt;}
.ws23{word-spacing:4.104000pt;}
.ws5e{word-spacing:4.256000pt;}
.wsc2{word-spacing:4.306667pt;}
.ws139{word-spacing:4.320000pt;}
.ws101{word-spacing:4.357333pt;}
.wsb6{word-spacing:4.408000pt;}
.wsbc{word-spacing:4.458667pt;}
.wsd6{word-spacing:4.509333pt;}
.ws94{word-spacing:4.560000pt;}
.ws6f{word-spacing:4.610667pt;}
.ws9b{word-spacing:4.661333pt;}
.ws81{word-spacing:4.712000pt;}
.wsd9{word-spacing:4.762667pt;}
.ws134{word-spacing:4.800000pt;}
.ws39{word-spacing:4.813333pt;}
.ws21{word-spacing:4.864000pt;}
.wse1{word-spacing:4.914667pt;}
.ws11c{word-spacing:4.944000pt;}
.ws4c{word-spacing:4.965333pt;}
.ws93{word-spacing:5.016000pt;}
.ws6a{word-spacing:5.117333pt;}
.ws14e{word-spacing:5.184000pt;}
.ws79{word-spacing:5.218667pt;}
.ws104{word-spacing:5.269333pt;}
.ws85{word-spacing:5.320000pt;}
.ws91{word-spacing:5.370667pt;}
.ws11d{word-spacing:5.376000pt;}
.ws69{word-spacing:5.472000pt;}
.ws8d{word-spacing:5.522667pt;}
.ws22{word-spacing:5.573333pt;}
.wsd7{word-spacing:5.624000pt;}
.ws27{word-spacing:5.674667pt;}
.ws14d{word-spacing:5.712000pt;}
.wsf8{word-spacing:5.725333pt;}
.wsf9{word-spacing:5.776000pt;}
.ws109{word-spacing:5.826667pt;}
.wsfb{word-spacing:5.877333pt;}
.ws14{word-spacing:5.904000pt;}
.wsb4{word-spacing:5.928000pt;}
.ws11e{word-spacing:5.952000pt;}
.ws7{word-spacing:5.978667pt;}
.ws5d{word-spacing:6.029333pt;}
.ws7b{word-spacing:6.232000pt;}
.ws65{word-spacing:6.282667pt;}
.ws95{word-spacing:6.333333pt;}
.wsd1{word-spacing:6.434667pt;}
.ws28{word-spacing:6.586667pt;}
.wsa{word-spacing:6.637333pt;}
.ws120{word-spacing:6.672000pt;}
.wsb2{word-spacing:6.688000pt;}
.ws7c{word-spacing:6.789333pt;}
.wsba{word-spacing:6.840000pt;}
.wsbb{word-spacing:6.890667pt;}
.wsc1{word-spacing:6.941333pt;}
.ws10c{word-spacing:6.992000pt;}
.ws76{word-spacing:7.093333pt;}
.ws25{word-spacing:7.144000pt;}
.wsfa{word-spacing:7.194667pt;}
.ws8b{word-spacing:7.245333pt;}
.ws7f{word-spacing:7.296000pt;}
.wsc0{word-spacing:7.346667pt;}
.ws8f{word-spacing:7.448000pt;}
.ws53{word-spacing:7.498667pt;}
.ws107{word-spacing:7.600000pt;}
.ws49{word-spacing:7.650667pt;}
.ws100{word-spacing:7.701333pt;}
.ws75{word-spacing:7.802667pt;}
.ws33{word-spacing:7.904000pt;}
.ws9e{word-spacing:7.954667pt;}
.wsa3{word-spacing:8.005333pt;}
.ws13e{word-spacing:8.016000pt;}
.ws31{word-spacing:8.056000pt;}
.ws2f{word-spacing:8.106667pt;}
.wsfc{word-spacing:8.208000pt;}
.ws35{word-spacing:8.258667pt;}
.ws115{word-spacing:8.304000pt;}
.ws38{word-spacing:8.410667pt;}
.ws12d{word-spacing:8.448000pt;}
.ws47{word-spacing:8.512000pt;}
.ws87{word-spacing:8.562667pt;}
.wsb{word-spacing:8.613333pt;}
.wsef{word-spacing:8.917333pt;}
.ws96{word-spacing:8.968000pt;}
.wsec{word-spacing:9.069333pt;}
.ws78{word-spacing:9.221333pt;}
.wsfd{word-spacing:9.322667pt;}
.wsc9{word-spacing:9.474667pt;}
.ws20{word-spacing:9.525333pt;}
.ws111{word-spacing:9.576000pt;}
.ws48{word-spacing:9.728000pt;}
.ws13f{word-spacing:9.744000pt;}
.ws59{word-spacing:9.778667pt;}
.ws132{word-spacing:9.792000pt;}
.ws10{word-spacing:9.829333pt;}
.ws10a{word-spacing:9.880000pt;}
.wsf4{word-spacing:9.930667pt;}
.wse2{word-spacing:9.981333pt;}
.ws98{word-spacing:10.234667pt;}
.ws112{word-spacing:10.336000pt;}
.wsd3{word-spacing:10.386667pt;}
.wsf6{word-spacing:10.437333pt;}
.wsaa{word-spacing:10.538667pt;}
.ws144{word-spacing:10.560000pt;}
.wsff{word-spacing:10.640000pt;}
.wsdb{word-spacing:10.690667pt;}
.wsf0{word-spacing:10.842667pt;}
.ws140{word-spacing:10.896000pt;}
.ws146{word-spacing:11.040000pt;}
.ws73{word-spacing:11.045333pt;}
.ws11f{word-spacing:11.136000pt;}
.ws6b{word-spacing:11.197333pt;}
.ws92{word-spacing:11.400000pt;}
.wsf7{word-spacing:11.552000pt;}
.wse5{word-spacing:11.704000pt;}
.wsdd{word-spacing:12.160000pt;}
.wsbe{word-spacing:12.362667pt;}
.ws10d{word-spacing:12.565333pt;}
.ws40{word-spacing:12.666667pt;}
.wscd{word-spacing:12.717333pt;}
.ws2d{word-spacing:12.869333pt;}
.ws143{word-spacing:13.344000pt;}
.wse9{word-spacing:13.376000pt;}
.wse6{word-spacing:13.426667pt;}
.ws3f{word-spacing:13.493333pt;}
.ws77{word-spacing:13.984000pt;}
.wsa5{word-spacing:14.136000pt;}
.wsf2{word-spacing:14.186667pt;}
.ws1f{word-spacing:14.490667pt;}
.ws37{word-spacing:14.592000pt;}
.ws26{word-spacing:14.946667pt;}
.ws36{word-spacing:15.301333pt;}
.wsa4{word-spacing:15.554667pt;}
.wseb{word-spacing:15.757333pt;}
.wse8{word-spacing:16.010667pt;}
.ws1b{word-spacing:16.568000pt;}
.ws10b{word-spacing:16.618667pt;}
.wsbf{word-spacing:17.125333pt;}
.wsed{word-spacing:18.392000pt;}
.ws133{word-spacing:19.296000pt;}
.ws34{word-spacing:19.557333pt;}
.ws128{word-spacing:21.744000pt;}
.ws11{word-spacing:23.154667pt;}
.wse7{word-spacing:24.776000pt;}
.wsea{word-spacing:25.992000pt;}
.ws147{word-spacing:26.064000pt;}
.wsee{word-spacing:29.893333pt;}
.ws15{word-spacing:87.120000pt;}
.ws3e{word-spacing:527.367467pt;}
._b{margin-left:-13.502933pt;}
._3{margin-left:-6.495467pt;}
._5{margin-left:-5.338667pt;}
._8{margin-left:-4.429867pt;}
._4{margin-left:-3.473600pt;}
._0{margin-left:-1.910400pt;}
._1{margin-left:-0.999467pt;}
._2{width:1.241067pt;}
._6{width:2.594400pt;}
._9{width:3.810400pt;}
._7{width:5.574933pt;}
._c{width:11.664000pt;}
._a{width:14.070400pt;}
.fs7{font-size:27.984000pt;}
.fs6{font-size:40.000000pt;}
.fs2{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs3{font-size:69.333333pt;}
.fs4{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:49.613333pt;}
.y52{bottom:49.890400pt;}
.y28{bottom:50.369200pt;}
.y26{bottom:81.739067pt;}
.y25{bottom:95.071067pt;}
.y133{bottom:101.837867pt;}
.ya5{bottom:102.109867pt;}
.y1e6{bottom:102.264400pt;}
.y158{bottom:102.738400pt;}
.y1b5{bottom:103.338000pt;}
.y19b{bottom:103.696933pt;}
.y23e{bottom:104.903867pt;}
.y21a{bottom:104.945200pt;}
.y104{bottom:108.354000pt;}
.y1cd{bottom:108.450267pt;}
.y1c9{bottom:109.144667pt;}
.yf3{bottom:111.060000pt;}
.y24{bottom:112.211867pt;}
.y189{bottom:113.118400pt;}
.ye9{bottom:114.992400pt;}
.y1fc{bottom:115.790667pt;}
.y7c{bottom:116.229200pt;}
.ya4{bottom:116.773867pt;}
.y132{bottom:117.177200pt;}
.y1e5{bottom:117.603733pt;}
.y269{bottom:117.840533pt;}
.y157{bottom:118.077733pt;}
.y1b4{bottom:118.677333pt;}
.y19a{bottom:119.036267pt;}
.y23d{bottom:120.239867pt;}
.y219{bottom:120.284533pt;}
.y14a{bottom:120.755867pt;}
.y1cc{bottom:121.250267pt;}
.y50{bottom:122.866000pt;}
.y103{bottom:123.693333pt;}
.y1c8{bottom:124.484000pt;}
.yf2{bottom:126.399333pt;}
.y23{bottom:128.209867pt;}
.y188{bottom:128.457733pt;}
.ye8{bottom:130.331733pt;}
.y1fb{bottom:131.130000pt;}
.ya3{bottom:131.437867pt;}
.y7b{bottom:131.568533pt;}
.y131{bottom:132.516533pt;}
.y1e4{bottom:132.943067pt;}
.y268{bottom:133.176533pt;}
.y156{bottom:133.417067pt;}
.y1b3{bottom:134.016667pt;}
.y1cb{bottom:134.050267pt;}
.y199{bottom:134.375600pt;}
.y23c{bottom:135.575867pt;}
.y218{bottom:135.623867pt;}
.y149{bottom:136.095200pt;}
.y4f{bottom:136.198000pt;}
.y102{bottom:139.032667pt;}
.y1c7{bottom:139.823333pt;}
.yf1{bottom:141.738667pt;}
.y187{bottom:143.797067pt;}
.y22{bottom:144.207867pt;}
.ye7{bottom:145.671067pt;}
.ya2{bottom:146.101867pt;}
.y1fa{bottom:146.469333pt;}
.y7a{bottom:146.907867pt;}
.y130{bottom:147.855867pt;}
.y1e3{bottom:148.282400pt;}
.y267{bottom:148.512533pt;}
.y155{bottom:148.756400pt;}
.y1b2{bottom:149.356000pt;}
.y198{bottom:149.714933pt;}
.y23b{bottom:150.911867pt;}
.y217{bottom:150.963200pt;}
.y148{bottom:151.434533pt;}
.y4e{bottom:153.342933pt;}
.y101{bottom:154.372000pt;}
.y1c6{bottom:155.162667pt;}
.yf0{bottom:157.078000pt;}
.y186{bottom:159.136400pt;}
.y21{bottom:160.205867pt;}
.ye6{bottom:161.010400pt;}
.y1f9{bottom:161.808667pt;}
.y79{bottom:162.247200pt;}
.y12f{bottom:163.195200pt;}
.y1e2{bottom:163.621733pt;}
.y266{bottom:163.848533pt;}
.y154{bottom:164.095733pt;}
.y1b1{bottom:164.695333pt;}
.y197{bottom:165.054267pt;}
.y23a{bottom:166.247867pt;}
.y216{bottom:166.302533pt;}
.y147{bottom:166.773867pt;}
.y4d{bottom:169.340933pt;}
.y100{bottom:169.711333pt;}
.y1c5{bottom:170.502000pt;}
.yef{bottom:172.417333pt;}
.y185{bottom:174.475733pt;}
.ya1{bottom:175.915867pt;}
.y20{bottom:176.203867pt;}
.ye5{bottom:176.349733pt;}
.y1f8{bottom:177.148000pt;}
.y78{bottom:177.586533pt;}
.y12e{bottom:178.534533pt;}
.y1e1{bottom:178.961067pt;}
.y265{bottom:179.184533pt;}
.y153{bottom:179.435067pt;}
.y1b0{bottom:180.034667pt;}
.y196{bottom:180.393600pt;}
.y239{bottom:181.583867pt;}
.y215{bottom:181.641867pt;}
.y146{bottom:182.113200pt;}
.yff{bottom:185.050667pt;}
.y4c{bottom:185.338933pt;}
.y1c4{bottom:185.841333pt;}
.ybb{bottom:186.625333pt;}
.yee{bottom:187.756667pt;}
.y184{bottom:189.815067pt;}
.ya0{bottom:191.255200pt;}
.ye4{bottom:191.689067pt;}
.y1f{bottom:192.201867pt;}
.y1f7{bottom:192.487333pt;}
.y77{bottom:192.925867pt;}
.y12d{bottom:193.873867pt;}
.y1e0{bottom:194.300400pt;}
.y264{bottom:194.520533pt;}
.y152{bottom:194.774400pt;}
.y1af{bottom:195.374000pt;}
.y195{bottom:195.732933pt;}
.y238{bottom:196.919867pt;}
.y214{bottom:196.981200pt;}
.y145{bottom:197.452533pt;}
.yfe{bottom:200.390000pt;}
.y1c3{bottom:201.180667pt;}
.y4b{bottom:201.336933pt;}
.yba{bottom:201.964667pt;}
.yed{bottom:203.096000pt;}
.y183{bottom:205.154400pt;}
.y9f{bottom:206.594533pt;}
.ye3{bottom:207.028400pt;}
.y1f6{bottom:207.826667pt;}
.y1e{bottom:208.199867pt;}
.y76{bottom:208.265200pt;}
.y12c{bottom:209.213200pt;}
.y1df{bottom:209.639733pt;}
.y263{bottom:209.856533pt;}
.y151{bottom:210.113733pt;}
.y1ae{bottom:210.713333pt;}
.y194{bottom:211.072267pt;}
.y237{bottom:212.255867pt;}
.y213{bottom:212.320533pt;}
.y144{bottom:212.791867pt;}
.yfd{bottom:215.729333pt;}
.y1c2{bottom:216.520000pt;}
.yb9{bottom:217.304000pt;}
.y4a{bottom:217.334933pt;}
.yec{bottom:218.435333pt;}
.y182{bottom:220.493733pt;}
.y9e{bottom:221.933867pt;}
.ye2{bottom:222.367733pt;}
.y1f5{bottom:223.166000pt;}
.y75{bottom:223.604533pt;}
.y1d{bottom:224.197867pt;}
.y12b{bottom:224.552533pt;}
.y262{bottom:225.192533pt;}
.y150{bottom:225.453067pt;}
.y1ad{bottom:226.052667pt;}
.y193{bottom:226.411600pt;}
.y236{bottom:227.591867pt;}
.y212{bottom:227.659867pt;}
.y143{bottom:228.131200pt;}
.yfc{bottom:231.068667pt;}
.y1c1{bottom:231.859333pt;}
.yb8{bottom:232.643333pt;}
.y49{bottom:233.332933pt;}
.yeb{bottom:233.774667pt;}
.y181{bottom:235.833067pt;}
.y9d{bottom:237.273200pt;}
.ye1{bottom:237.707067pt;}
.y1f4{bottom:238.505333pt;}
.y74{bottom:238.943867pt;}
.y12a{bottom:239.891867pt;}
.y1c{bottom:240.195867pt;}
.y1de{bottom:240.341200pt;}
.y261{bottom:240.528533pt;}
.y14f{bottom:240.792400pt;}
.y1ac{bottom:241.392000pt;}
.y192{bottom:241.750933pt;}
.y235{bottom:242.927867pt;}
.y211{bottom:242.999200pt;}
.y142{bottom:243.470533pt;}
.yfb{bottom:246.408000pt;}
.y1c0{bottom:247.198667pt;}
.yb7{bottom:247.982667pt;}
.yea{bottom:249.114000pt;}
.y48{bottom:249.330933pt;}
.y180{bottom:251.172400pt;}
.y9c{bottom:252.612533pt;}
.ye0{bottom:253.046400pt;}
.y1f3{bottom:253.844667pt;}
.y73{bottom:254.283200pt;}
.y1dd{bottom:255.005200pt;}
.y129{bottom:255.231200pt;}
.y260{bottom:255.864533pt;}
.y14e{bottom:256.131733pt;}
.y1b{bottom:256.193867pt;}
.y1ab{bottom:256.731333pt;}
.y191{bottom:257.090267pt;}
.y234{bottom:258.263867pt;}
.y210{bottom:258.338533pt;}
.y141{bottom:258.809867pt;}
.y1bf{bottom:262.538000pt;}
.yb6{bottom:263.322000pt;}
.y47{bottom:265.328933pt;}
.y17f{bottom:266.511733pt;}
.y9b{bottom:267.951867pt;}
.ydf{bottom:268.385733pt;}
.y1f2{bottom:269.184000pt;}
.y72{bottom:269.622533pt;}
.y128{bottom:270.570533pt;}
.y25f{bottom:271.200533pt;}
.y14d{bottom:271.471067pt;}
.y1aa{bottom:272.070667pt;}
.y1a{bottom:272.191867pt;}
.y190{bottom:272.429600pt;}
.y233{bottom:273.599867pt;}
.y20f{bottom:273.677867pt;}
.y140{bottom:274.149200pt;}
.y1dc{bottom:277.229200pt;}
.y1be{bottom:277.877333pt;}
.yb5{bottom:278.661333pt;}
.y46{bottom:281.326933pt;}
.y17e{bottom:281.851067pt;}
.y9a{bottom:283.291200pt;}
.yde{bottom:283.725067pt;}
.y1f1{bottom:284.523333pt;}
.y71{bottom:284.961867pt;}
.y127{bottom:285.909867pt;}
.y10a{bottom:286.448267pt;}
.y25e{bottom:286.536533pt;}
.y1a9{bottom:287.410000pt;}
.y18f{bottom:287.768933pt;}
.y19{bottom:288.189867pt;}
.y232{bottom:288.935867pt;}
.y20e{bottom:289.017200pt;}
.yfa{bottom:289.154400pt;}
.y13f{bottom:289.488533pt;}
.y1db{bottom:291.893200pt;}
.y1bd{bottom:293.216667pt;}
.yb4{bottom:294.000667pt;}
.y17d{bottom:297.190400pt;}
.y45{bottom:297.324933pt;}
.y99{bottom:298.630533pt;}
.ydd{bottom:299.064400pt;}
.y109{bottom:299.248267pt;}
.y1f0{bottom:299.862667pt;}
.y70{bottom:300.301200pt;}
.y126{bottom:301.249200pt;}
.y25d{bottom:301.872533pt;}
.yf9{bottom:301.954400pt;}
.y1a8{bottom:302.749333pt;}
.y18e{bottom:303.108267pt;}
.y18{bottom:304.187867pt;}
.y231{bottom:304.271867pt;}
.y20d{bottom:304.356533pt;}
.y13e{bottom:304.827867pt;}
.y1da{bottom:306.557200pt;}
.y1bc{bottom:308.556000pt;}
.yb3{bottom:309.340000pt;}
.y161{bottom:311.511333pt;}
.y108{bottom:312.048267pt;}
.y17c{bottom:312.529733pt;}
.y44{bottom:313.322933pt;}
.y98{bottom:313.969867pt;}
.ydc{bottom:314.403733pt;}
.yf8{bottom:314.754400pt;}
.y1ef{bottom:315.202000pt;}
.y6f{bottom:315.640533pt;}
.y125{bottom:316.588533pt;}
.y25c{bottom:317.208533pt;}
.y1a7{bottom:318.088667pt;}
.y18d{bottom:318.447600pt;}
.y230{bottom:319.607867pt;}
.y20c{bottom:319.695867pt;}
.y13d{bottom:320.167200pt;}
.y17{bottom:320.185867pt;}
.y1d9{bottom:321.221200pt;}
.y1bb{bottom:323.895333pt;}
.y160{bottom:324.311333pt;}
.yb2{bottom:324.679333pt;}
.y107{bottom:324.848267pt;}
.yf7{bottom:327.554400pt;}
.y17b{bottom:327.869067pt;}
.y97{bottom:329.309200pt;}
.y43{bottom:329.320933pt;}
.ydb{bottom:329.743067pt;}
.y1ee{bottom:330.541333pt;}
.y6e{bottom:330.979867pt;}
.y124{bottom:331.927867pt;}
.y25b{bottom:332.544533pt;}
.y1a6{bottom:333.428000pt;}
.y18c{bottom:333.786933pt;}
.y22f{bottom:334.943867pt;}
.y20b{bottom:335.035200pt;}
.y13c{bottom:335.506533pt;}
.y16{bottom:336.183867pt;}
.y15f{bottom:337.111333pt;}
.y1ba{bottom:339.234667pt;}
.yb1{bottom:340.018667pt;}
.yf6{bottom:340.354400pt;}
.y17a{bottom:343.208400pt;}
.y1d8{bottom:343.445200pt;}
.y96{bottom:344.648533pt;}
.yda{bottom:345.082400pt;}
.y42{bottom:345.318933pt;}
.y1ed{bottom:345.880667pt;}
.y6d{bottom:346.319200pt;}
.y123{bottom:347.267200pt;}
.y25a{bottom:347.880533pt;}
.y1a5{bottom:348.767333pt;}
.y18b{bottom:349.126267pt;}
.y15e{bottom:349.911333pt;}
.y22e{bottom:350.279867pt;}
.y20a{bottom:350.374533pt;}
.y13b{bottom:350.845867pt;}
.yf5{bottom:353.154400pt;}
.y1b9{bottom:354.574000pt;}
.yb0{bottom:355.358000pt;}
.y1d7{bottom:358.109200pt;}
.y179{bottom:358.547733pt;}
.y15{bottom:359.742933pt;}
.y95{bottom:359.987867pt;}
.yd9{bottom:360.421733pt;}
.y1ec{bottom:361.220000pt;}
.y41{bottom:361.316933pt;}
.y6c{bottom:361.658533pt;}
.y122{bottom:362.606533pt;}
.y259{bottom:363.216533pt;}
.y1a4{bottom:364.106667pt;}
.y18a{bottom:364.465600pt;}
.y22d{bottom:365.615867pt;}
.y209{bottom:365.713867pt;}
.yf4{bottom:365.954400pt;}
.y13a{bottom:366.185200pt;}
.y1b8{bottom:369.913333pt;}
.yaf{bottom:370.697333pt;}
.y1d6{bottom:372.773200pt;}
.y178{bottom:373.887067pt;}
.y94{bottom:375.327200pt;}
.yd8{bottom:375.761067pt;}
.y1eb{bottom:376.559333pt;}
.y6b{bottom:376.997867pt;}
.y40{bottom:377.314933pt;}
.y121{bottom:377.945867pt;}
.y258{bottom:378.552533pt;}
.y1a3{bottom:379.446000pt;}
.y22c{bottom:380.951867pt;}
.y208{bottom:381.053200pt;}
.y139{bottom:381.524533pt;}
.y1b7{bottom:385.252667pt;}
.yae{bottom:386.036667pt;}
.y1d5{bottom:387.437200pt;}
.y177{bottom:389.226400pt;}
.y93{bottom:390.666533pt;}
.yd7{bottom:391.100400pt;}
.y1ea{bottom:391.898667pt;}
.y6a{bottom:392.337200pt;}
.y120{bottom:393.285200pt;}
.y3f{bottom:393.312933pt;}
.y257{bottom:393.888533pt;}
.y1a2{bottom:394.785333pt;}
.y22b{bottom:396.287867pt;}
.y207{bottom:396.392533pt;}
.y138{bottom:396.863867pt;}
.y19c{bottom:400.295467pt;}
.yad{bottom:401.376000pt;}
.y176{bottom:404.565733pt;}
.y92{bottom:406.005867pt;}
.yd6{bottom:406.439733pt;}
.y1e9{bottom:407.238000pt;}
.y69{bottom:407.676533pt;}
.y11f{bottom:408.624533pt;}
.y256{bottom:409.224533pt;}
.y3e{bottom:409.310933pt;}
.y1d4{bottom:409.661200pt;}
.y1a1{bottom:410.124667pt;}
.y22a{bottom:411.623867pt;}
.y206{bottom:411.731867pt;}
.y137{bottom:412.203200pt;}
.yac{bottom:416.715333pt;}
.y175{bottom:419.905067pt;}
.y91{bottom:421.345200pt;}
.yd5{bottom:421.779067pt;}
.y1e8{bottom:422.577333pt;}
.y68{bottom:423.015867pt;}
.y14{bottom:423.583200pt;}
.y11e{bottom:423.963867pt;}
.y1d3{bottom:424.325200pt;}
.y255{bottom:424.560533pt;}
.y1ca{bottom:425.292933pt;}
.y1a0{bottom:425.464000pt;}
.y229{bottom:426.959867pt;}
.y205{bottom:427.071200pt;}
.y136{bottom:427.542533pt;}
.yab{bottom:432.054667pt;}
.y3d{bottom:432.870000pt;}
.y174{bottom:435.244400pt;}
.y90{bottom:436.684533pt;}
.y13{bottom:436.915200pt;}
.yd4{bottom:437.118400pt;}
.y1e7{bottom:437.916667pt;}
.y67{bottom:438.355200pt;}
.y1d2{bottom:438.989200pt;}
.y11d{bottom:439.303200pt;}
.y254{bottom:439.896533pt;}
.y19f{bottom:440.803333pt;}
.y228{bottom:442.295867pt;}
.y204{bottom:442.410533pt;}
.y135{bottom:442.881867pt;}
.yaa{bottom:447.394000pt;}
.y12{bottom:450.247200pt;}
.y173{bottom:450.583733pt;}
.y8f{bottom:452.023867pt;}
.yd3{bottom:452.457733pt;}
.y1d1{bottom:453.653200pt;}
.y66{bottom:453.694533pt;}
.y11c{bottom:454.642533pt;}
.y253{bottom:455.232533pt;}
.y19e{bottom:456.142667pt;}
.y227{bottom:457.631867pt;}
.y203{bottom:457.749867pt;}
.y134{bottom:458.221200pt;}
.y172{bottom:465.923067pt;}
.y3c{bottom:466.471333pt;}
.y11{bottom:467.360000pt;}
.y8e{bottom:467.363200pt;}
.yd2{bottom:467.797067pt;}
.y1d0{bottom:468.317200pt;}
.y65{bottom:469.033867pt;}
.y11b{bottom:469.981867pt;}
.y252{bottom:470.568533pt;}
.y19d{bottom:471.482000pt;}
.y226{bottom:472.967867pt;}
.y202{bottom:477.956933pt;}
.ya9{bottom:478.068933pt;}
.y3b{bottom:479.803333pt;}
.y8d{bottom:482.702533pt;}
.yd1{bottom:483.136400pt;}
.y277{bottom:483.213867pt;}
.y64{bottom:484.373200pt;}
.y11a{bottom:485.321200pt;}
.y251{bottom:485.904533pt;}
.y225{bottom:488.303867pt;}
.y201{bottom:490.756933pt;}
.y10{bottom:492.252400pt;}
.ya8{bottom:492.732933pt;}
.y3a{bottom:496.948133pt;}
.y171{bottom:497.256400pt;}
.y220{bottom:497.790133pt;}
.y8c{bottom:498.041867pt;}
.y14c{bottom:498.261467pt;}
.y276{bottom:498.553200pt;}
.y63{bottom:499.712533pt;}
.y119{bottom:500.660533pt;}
.y250{bottom:501.240533pt;}
.y200{bottom:503.556933pt;}
.y224{bottom:503.639867pt;}
.ya7{bottom:507.396933pt;}
.y21f{bottom:510.590133pt;}
.y14b{bottom:511.061467pt;}
.y39{bottom:512.946133pt;}
.yf{bottom:513.052400pt;}
.y8b{bottom:513.381200pt;}
.y1cf{bottom:513.435200pt;}
.yd0{bottom:513.839200pt;}
.y275{bottom:513.892533pt;}
.y62{bottom:515.051867pt;}
.y118{bottom:515.999867pt;}
.y1ff{bottom:516.356933pt;}
.y24f{bottom:516.576533pt;}
.y223{bottom:518.975867pt;}
.ya6{bottom:522.060933pt;}
.y1b6{bottom:522.429867pt;}
.y21e{bottom:523.390133pt;}
.ycf{bottom:528.503200pt;}
.y8a{bottom:528.720533pt;}
.y38{bottom:528.944133pt;}
.y1fe{bottom:529.156933pt;}
.y274{bottom:529.231867pt;}
.y1ce{bottom:529.435200pt;}
.y15d{bottom:530.201067pt;}
.y61{bottom:530.391200pt;}
.y117{bottom:531.339200pt;}
.y24e{bottom:531.912533pt;}
.ye{bottom:533.852400pt;}
.y222{bottom:534.311867pt;}
.y21d{bottom:536.190133pt;}
.y1fd{bottom:541.956933pt;}
.y15c{bottom:543.001067pt;}
.y89{bottom:544.059867pt;}
.y273{bottom:544.571200pt;}
.y37{bottom:544.942133pt;}
.y60{bottom:545.730533pt;}
.y116{bottom:546.678533pt;}
.yce{bottom:546.947200pt;}
.y24d{bottom:547.248533pt;}
.y21c{bottom:548.990133pt;}
.yd{bottom:554.652400pt;}
.y15b{bottom:555.801067pt;}
.y88{bottom:559.399200pt;}
.y272{bottom:559.910533pt;}
.y170{bottom:560.625867pt;}
.y36{bottom:560.940133pt;}
.y5f{bottom:561.069867pt;}
.yc1{bottom:561.607867pt;}
.ycd{bottom:561.611200pt;}
.y21b{bottom:561.790133pt;}
.y115{bottom:562.017867pt;}
.y24c{bottom:562.584533pt;}
.y221{bottom:565.645200pt;}
.y15a{bottom:568.601067pt;}
.yc0{bottom:574.407867pt;}
.y87{bottom:574.738533pt;}
.y106{bottom:574.813867pt;}
.y271{bottom:575.249867pt;}
.y16f{bottom:575.289867pt;}
.yc{bottom:575.452400pt;}
.ycc{bottom:576.275200pt;}
.y5e{bottom:576.409200pt;}
.y35{bottom:576.938133pt;}
.y114{bottom:577.357200pt;}
.y24b{bottom:577.920533pt;}
.y159{bottom:581.401067pt;}
.ybf{bottom:587.207867pt;}
.y105{bottom:587.613867pt;}
.y86{bottom:590.077867pt;}
.y270{bottom:590.589200pt;}
.ycb{bottom:590.939200pt;}
.y5d{bottom:591.748533pt;}
.y113{bottom:592.696533pt;}
.y34{bottom:592.936133pt;}
.y24a{bottom:593.256533pt;}
.y16e{bottom:593.733867pt;}
.yb{bottom:596.252400pt;}
.ybe{bottom:600.007867pt;}
.y85{bottom:605.417200pt;}
.y26f{bottom:605.928533pt;}
.y5c{bottom:607.087867pt;}
.y112{bottom:608.035867pt;}
.y16d{bottom:608.397867pt;}
.y249{bottom:608.592533pt;}
.y33{bottom:608.934133pt;}
.yca{bottom:609.383200pt;}
.ybd{bottom:612.807867pt;}
.ya{bottom:617.052400pt;}
.y84{bottom:620.756533pt;}
.y5b{bottom:622.427200pt;}
.y16c{bottom:623.061867pt;}
.y111{bottom:623.375200pt;}
.y248{bottom:623.907200pt;}
.yc9{bottom:624.047200pt;}
.y32{bottom:624.932133pt;}
.ybc{bottom:625.607867pt;}
.y83{bottom:636.095867pt;}
.y26e{bottom:637.261867pt;}
.y16b{bottom:637.725867pt;}
.y5a{bottom:637.766533pt;}
.y9{bottom:637.852400pt;}
.yc8{bottom:638.711200pt;}
.y110{bottom:638.714533pt;}
.y247{bottom:639.243200pt;}
.y31{bottom:640.930133pt;}
.y82{bottom:651.435200pt;}
.y59{bottom:653.105867pt;}
.yc7{bottom:653.375200pt;}
.y10f{bottom:654.053867pt;}
.y246{bottom:654.579200pt;}
.y16a{bottom:656.169867pt;}
.y30{bottom:656.928133pt;}
.y8{bottom:658.652400pt;}
.y58{bottom:668.445200pt;}
.y10e{bottom:669.393200pt;}
.y245{bottom:669.915200pt;}
.y169{bottom:670.833867pt;}
.yc6{bottom:671.819200pt;}
.y2f{bottom:672.926133pt;}
.y7{bottom:679.452400pt;}
.y81{bottom:682.768533pt;}
.y57{bottom:683.784533pt;}
.y10d{bottom:684.732533pt;}
.y26d{bottom:685.245867pt;}
.y244{bottom:685.251200pt;}
.y168{bottom:685.497867pt;}
.yc5{bottom:686.483200pt;}
.y2e{bottom:688.924133pt;}
.y56{bottom:699.123867pt;}
.y10c{bottom:700.071867pt;}
.y167{bottom:700.161867pt;}
.y6{bottom:700.252400pt;}
.y26c{bottom:700.581867pt;}
.y243{bottom:700.587200pt;}
.yc4{bottom:701.147200pt;}
.y2d{bottom:704.922133pt;}
.y55{bottom:714.463200pt;}
.y10b{bottom:715.411200pt;}
.yc3{bottom:715.811200pt;}
.y26b{bottom:715.917867pt;}
.y242{bottom:715.923200pt;}
.y166{bottom:718.605867pt;}
.y2c{bottom:720.920133pt;}
.y54{bottom:729.802533pt;}
.yc2{bottom:730.475200pt;}
.y80{bottom:730.750533pt;}
.y26a{bottom:731.253867pt;}
.y241{bottom:731.259200pt;}
.y165{bottom:733.269867pt;}
.y2b{bottom:736.918133pt;}
.y53{bottom:745.141867pt;}
.y7f{bottom:746.089867pt;}
.y240{bottom:746.589867pt;}
.y164{bottom:747.933867pt;}
.y2a{bottom:752.916133pt;}
.y5{bottom:755.353733pt;}
.y7e{bottom:761.429200pt;}
.y23f{bottom:761.925867pt;}
.y163{bottom:762.597867pt;}
.y4{bottom:771.353733pt;}
.y29{bottom:776.475200pt;}
.y7d{bottom:776.768533pt;}
.y162{bottom:777.261867pt;}
.y3{bottom:787.353733pt;}
.y2{bottom:803.353733pt;}
.y51{bottom:815.085067pt;}
.y27{bottom:815.585067pt;}
.h4{height:32.000000pt;}
.hb{height:33.160000pt;}
.hc{height:35.370667pt;}
.he{height:38.698667pt;}
.h7{height:41.040000pt;}
.hf{height:41.061333pt;}
.h10{height:41.125333pt;}
.h2{height:41.184000pt;}
.h8{height:42.480000pt;}
.hd{height:43.099200pt;}
.ha{height:43.320000pt;}
.h11{height:44.840000pt;}
.h9{height:46.566275pt;}
.h3{height:46.796875pt;}
.h5{height:60.536157pt;}
.h6{height:64.064000pt;}
.h0{height:869.292000pt;}
.h1{height:869.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x17{left:56.692933pt;}
.x1b{left:59.131733pt;}
.x1c{left:60.230400pt;}
.x1d{left:61.222400pt;}
.x1f{left:62.262000pt;}
.x13{left:64.345200pt;}
.x1e{left:66.395733pt;}
.x27{left:67.515467pt;}
.x28{left:69.126133pt;}
.x9{left:73.534800pt;}
.x14{left:75.732267pt;}
.xe{left:78.786800pt;}
.x2e{left:80.304533pt;}
.x21{left:81.954667pt;}
.xb{left:83.570800pt;}
.xc{left:84.558800pt;}
.x23{left:85.714267pt;}
.x2c{left:87.291200pt;}
.x7{left:90.712133pt;}
.xd{left:93.156133pt;}
.x2f{left:94.949867pt;}
.x2d{left:96.379200pt;}
.x18{left:105.826800pt;}
.x6{left:106.988133pt;}
.x32{left:109.610133pt;}
.xa{left:113.401467pt;}
.x11{left:117.960000pt;}
.x8{left:119.190800pt;}
.x1a{left:136.062933pt;}
.x2b{left:139.754533pt;}
.x31{left:141.947467pt;}
.x2a{left:144.117200pt;}
.x19{left:158.740133pt;}
.x20{left:166.955333pt;}
.x2{left:178.046267pt;}
.x29{left:183.078133pt;}
.x24{left:190.098267pt;}
.x12{left:200.772000pt;}
.x22{left:206.861333pt;}
.x16{left:209.429733pt;}
.xf{left:211.681467pt;}
.x10{left:242.278400pt;}
.x26{left:246.565467pt;}
.x25{left:269.232667pt;}
.x30{left:275.717867pt;}
.x1{left:301.091333pt;}
.x4{left:347.711067pt;}
.x5{left:362.057733pt;}
.x3{left:363.967067pt;}
.x15{left:491.189733pt;}
}




    .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; }
  