
    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_38a41d73c7b1a8d0a2a5ae13.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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;}
.ff4{font-family:sans-serif;visibility:hidden;}
.ff5{font-family:sans-serif;visibility:hidden;}
.ff6{font-family:sans-serif;visibility:hidden;}
.ff7{font-family:sans-serif;visibility:hidden;}
.ff8{font-family:sans-serif;visibility:hidden;}
.ff9{font-family:sans-serif;visibility:hidden;}
.ffa{font-family:sans-serif;visibility:hidden;}
.ffb{font-family:sans-serif;visibility:hidden;}
.ffc{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffd;src:url('chunks/assets/font_9501c310d6b500b46dff9a9e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.451000;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_d961a894c281ce497775d06e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.697000;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_3cdfd83d12fde1a960bc173d.woff2')format("woff");}.fff{font-family:fff;line-height:0.698000;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;}
.ff10{font-family:sans-serif;visibility:hidden;}
.ff11{font-family:sans-serif;visibility:hidden;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:38.346000px;}
.v2{vertical-align:65.406000px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.000141px;}
.lsa{letter-spacing:0.006141px;}
.ls7{letter-spacing:14.116059px;}
.ls4{letter-spacing:14.943900px;}
.ls1{letter-spacing:17.633802px;}
.ls5{letter-spacing:18.171782px;}
.lsb{letter-spacing:19.905275px;}
.ls8{letter-spacing:23.336453px;}
.ls6{letter-spacing:26.779469px;}
.ls2{letter-spacing:29.887800px;}
.ls3{letter-spacing:29.947576px;}
.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;}
}
.wsa9{word-spacing:-0.047821px;}
.ws0{word-spacing:0.000000px;}
.wsc9{word-spacing:13.270183px;}
.ws8a{word-spacing:13.389768px;}
.ws4a{word-spacing:13.449510px;}
.wsd5{word-spacing:13.509286px;}
.wsf5{word-spacing:13.628837px;}
.ws21{word-spacing:13.808164px;}
.wsd7{word-spacing:13.867939px;}
.ws74{word-spacing:13.927715px;}
.wsf4{word-spacing:13.987490px;}
.ws7c{word-spacing:14.059256px;}
.ws4e{word-spacing:14.107042px;}
.ws45{word-spacing:14.166817px;}
.wsea{word-spacing:14.226593px;}
.wsb7{word-spacing:14.286368px;}
.wsdc{word-spacing:14.346144px;}
.ws60{word-spacing:14.405920px;}
.wsb0{word-spacing:14.465695px;}
.wsbb{word-spacing:14.525471px;}
.ws66{word-spacing:14.585246px;}
.wsb1{word-spacing:14.645022px;}
.ws93{word-spacing:14.824349px;}
.ws43{word-spacing:14.884124px;}
.wsde{word-spacing:14.920027px;}
.ws42{word-spacing:14.943900px;}
.ws25{word-spacing:14.967848px;}
.ws1a{word-spacing:15.063451px;}
.wsb9{word-spacing:15.242778px;}
.ws6c{word-spacing:15.302554px;}
.ws41{word-spacing:15.362329px;}
.wsb8{word-spacing:15.422105px;}
.wsc4{word-spacing:15.481880px;}
.ws81{word-spacing:15.541656px;}
.ws7e{word-spacing:15.601432px;}
.ws94{word-spacing:15.661207px;}
.ws9e{word-spacing:15.780758px;}
.ws9a{word-spacing:15.840534px;}
.ws6e{word-spacing:15.900310px;}
.wsac{word-spacing:16.019861px;}
.ws1b{word-spacing:16.079636px;}
.ws100{word-spacing:16.258963px;}
.ws91{word-spacing:16.318739px;}
.ws64{word-spacing:16.378514px;}
.wsad{word-spacing:16.498066px;}
.ws5{word-spacing:16.617617px;}
.ws1d{word-spacing:16.677392px;}
.wsd{word-spacing:16.737168px;}
.ws3a{word-spacing:16.796944px;}
.ws80{word-spacing:16.916495px;}
.ws2{word-spacing:16.928492px;}
.ws4d{word-spacing:16.976270px;}
.ws1{word-spacing:16.976313px;}
.ws97{word-spacing:17.036046px;}
.ws70{word-spacing:17.095822px;}
.ws3b{word-spacing:17.155597px;}
.ws89{word-spacing:17.167595px;}
.wse0{word-spacing:17.334924px;}
.wsf7{word-spacing:17.394700px;}
.ws68{word-spacing:17.454475px;}
.wsaa{word-spacing:17.514251px;}
.ws1c{word-spacing:17.633802px;}
.ws84{word-spacing:17.693578px;}
.ws103{word-spacing:17.753353px;}
.wsf{word-spacing:17.813129px;}
.wsa0{word-spacing:17.872904px;}
.wsd6{word-spacing:17.992456px;}
.ws19{word-spacing:18.052231px;}
.ws82{word-spacing:18.112007px;}
.ws44{word-spacing:18.171782px;}
.wsba{word-spacing:18.231558px;}
.wsed{word-spacing:18.291334px;}
.ws2c{word-spacing:18.351109px;}
.ws126{word-spacing:18.399053px;}
.ws46{word-spacing:18.410885px;}
.ws2b{word-spacing:18.470660px;}
.wsd3{word-spacing:18.530436px;}
.ws54{word-spacing:18.590212px;}
.ws55{word-spacing:18.649987px;}
.wse5{word-spacing:18.709763px;}
.ws13{word-spacing:18.769538px;}
.ws2a{word-spacing:18.829314px;}
.ws7f{word-spacing:18.889090px;}
.ws95{word-spacing:18.948865px;}
.wsdb{word-spacing:19.008641px;}
.wsb2{word-spacing:19.068416px;}
.ws48{word-spacing:19.128192px;}
.ws9d{word-spacing:19.187968px;}
.ws110{word-spacing:19.307519px;}
.wse{word-spacing:19.367294px;}
.ws5e{word-spacing:19.427070px;}
.ws92{word-spacing:19.486846px;}
.ws7d{word-spacing:19.546621px;}
.ws108{word-spacing:19.606397px;}
.wse9{word-spacing:19.666172px;}
.wsd2{word-spacing:19.725948px;}
.wsaf{word-spacing:19.785724px;}
.wsa6{word-spacing:19.845499px;}
.ws16{word-spacing:19.905275px;}
.ws31{word-spacing:19.965050px;}
.ws5a{word-spacing:20.024826px;}
.ws3c{word-spacing:20.084602px;}
.wsd9{word-spacing:20.144377px;}
.ws75{word-spacing:20.204153px;}
.wsdd{word-spacing:20.228114px;}
.ws9f{word-spacing:20.263928px;}
.ws78{word-spacing:20.323704px;}
.ws2f{word-spacing:20.443255px;}
.ws72{word-spacing:20.503031px;}
.wsc8{word-spacing:20.562806px;}
.ws5f{word-spacing:20.622582px;}
.ws63{word-spacing:20.682358px;}
.wsa1{word-spacing:20.801909px;}
.wsdf{word-spacing:20.849782px;}
.wsab{word-spacing:20.861684px;}
.ws98{word-spacing:20.921460px;}
.wsa{word-spacing:20.981236px;}
.ws14{word-spacing:21.041011px;}
.wsd0{word-spacing:21.100787px;}
.ws6d{word-spacing:21.220338px;}
.ws85{word-spacing:21.232346px;}
.wsa4{word-spacing:21.280114px;}
.wsc5{word-spacing:21.339889px;}
.wsbe{word-spacing:21.399665px;}
.ws8b{word-spacing:21.423629px;}
.wse2{word-spacing:21.459440px;}
.ws96{word-spacing:21.519216px;}
.wsae{word-spacing:21.638767px;}
.wsb6{word-spacing:21.698543px;}
.ws83{word-spacing:21.818094px;}
.ws7a{word-spacing:21.937645px;}
.ws8c{word-spacing:21.949655px;}
.ws2d{word-spacing:21.997421px;}
.ws6f{word-spacing:22.057196px;}
.ws22{word-spacing:22.176748px;}
.wsbd{word-spacing:22.236523px;}
.ws26{word-spacing:22.284400px;}
.ws8{word-spacing:22.356074px;}
.wscc{word-spacing:22.415850px;}
.ws86{word-spacing:22.427861px;}
.ws37{word-spacing:22.475626px;}
.wsbc{word-spacing:22.535401px;}
.ws99{word-spacing:22.595177px;}
.wscf{word-spacing:22.654952px;}
.ws87{word-spacing:22.666964px;}
.wsce{word-spacing:22.714728px;}
.ws9b{word-spacing:22.834279px;}
.ws4{word-spacing:22.894055px;}
.ws27{word-spacing:22.953830px;}
.wsd8{word-spacing:23.013606px;}
.ws39{word-spacing:23.073382px;}
.ws38{word-spacing:23.133157px;}
.ws40{word-spacing:23.192933px;}
.ws88{word-spacing:23.288632px;}
.ws6b{word-spacing:23.312484px;}
.ws24{word-spacing:23.336453px;}
.ws73{word-spacing:23.372260px;}
.ws79{word-spacing:23.432035px;}
.ws69{word-spacing:23.491811px;}
.ws6a{word-spacing:23.551586px;}
.ws125{word-spacing:23.575556px;}
.ws62{word-spacing:23.671138px;}
.ws6{word-spacing:23.730913px;}
.ws65{word-spacing:23.790689px;}
.ws5d{word-spacing:23.850464px;}
.wsc7{word-spacing:23.910240px;}
.ws23{word-spacing:23.970016px;}
.ws15{word-spacing:24.029791px;}
.wsbf{word-spacing:24.089567px;}
.ws3f{word-spacing:24.149342px;}
.ws12{word-spacing:24.209118px;}
.ws3d{word-spacing:24.268894px;}
.ws4b{word-spacing:24.328669px;}
.wse4{word-spacing:24.388445px;}
.wse3{word-spacing:24.448220px;}
.wsf1{word-spacing:24.507996px;}
.wsd1{word-spacing:24.567772px;}
.ws11{word-spacing:24.627547px;}
.ws56{word-spacing:24.687323px;}
.ws29{word-spacing:24.806874px;}
.wsb3{word-spacing:24.866650px;}
.wsa3{word-spacing:25.045976px;}
.wscb{word-spacing:25.105752px;}
.wsca{word-spacing:25.165528px;}
.ws7{word-spacing:25.285079px;}
.wsb{word-spacing:25.464406px;}
.ws9c{word-spacing:25.524181px;}
.ws28{word-spacing:25.583957px;}
.wse8{word-spacing:25.643732px;}
.ws102{word-spacing:25.703508px;}
.wsa2{word-spacing:25.763284px;}
.ws30{word-spacing:25.823059px;}
.ws10a{word-spacing:25.882835px;}
.wsfb{word-spacing:25.942610px;}
.ws36{word-spacing:26.062162px;}
.wse7{word-spacing:26.181713px;}
.ws76{word-spacing:26.301264px;}
.ws9{word-spacing:26.420815px;}
.wsef{word-spacing:26.480591px;}
.wsf0{word-spacing:26.540366px;}
.ws10d{word-spacing:26.600142px;}
.wsc{word-spacing:26.659918px;}
.ws5b{word-spacing:26.719693px;}
.ws50{word-spacing:26.779469px;}
.ws4f{word-spacing:26.839244px;}
.wsa5{word-spacing:26.899020px;}
.ws71{word-spacing:26.958796px;}
.ws77{word-spacing:27.018571px;}
.ws34{word-spacing:27.078347px;}
.ws1f{word-spacing:27.138122px;}
.ws1e{word-spacing:27.197898px;}
.ws35{word-spacing:27.437000px;}
.wsff{word-spacing:27.496776px;}
.ws10e{word-spacing:27.556552px;}
.ws4c{word-spacing:27.616327px;}
.wsc3{word-spacing:27.735878px;}
.ws57{word-spacing:27.795654px;}
.ws58{word-spacing:27.855430px;}
.ws10{word-spacing:27.915205px;}
.ws7b{word-spacing:28.034756px;}
.wscd{word-spacing:28.094532px;}
.wsc6{word-spacing:28.154308px;}
.ws20{word-spacing:28.214083px;}
.ws117{word-spacing:28.393410px;}
.ws3e{word-spacing:28.512961px;}
.ws111{word-spacing:28.572737px;}
.ws67{word-spacing:28.632512px;}
.ws53{word-spacing:28.692288px;}
.wsf6{word-spacing:28.752064px;}
.wseb{word-spacing:28.871615px;}
.wsd4{word-spacing:29.110717px;}
.wsda{word-spacing:29.170493px;}
.wse6{word-spacing:29.469371px;}
.ws59{word-spacing:29.588922px;}
.ws105{word-spacing:29.648698px;}
.ws18{word-spacing:29.768249px;}
.ws32{word-spacing:29.828024px;}
.ws2e{word-spacing:29.947576px;}
.ws104{word-spacing:30.007351px;}
.ws33{word-spacing:30.067127px;}
.wsa7{word-spacing:30.186678px;}
.ws106{word-spacing:30.306229px;}
.wsfc{word-spacing:30.425780px;}
.ws49{word-spacing:30.605107px;}
.wsf8{word-spacing:30.784434px;}
.ws115{word-spacing:30.844210px;}
.wsfd{word-spacing:31.023536px;}
.wse1{word-spacing:31.083312px;}
.ws51{word-spacing:31.143088px;}
.ws47{word-spacing:31.262639px;}
.ws116{word-spacing:31.441966px;}
.ws5c{word-spacing:31.561517px;}
.ws3{word-spacing:31.590332px;}
.ws107{word-spacing:32.099497px;}
.wsc2{word-spacing:32.338600px;}
.ws61{word-spacing:32.398375px;}
.wsf2{word-spacing:32.577702px;}
.wsf3{word-spacing:33.414560px;}
.wsee{word-spacing:33.474336px;}
.ws118{word-spacing:33.534112px;}
.ws119{word-spacing:33.892765px;}
.wsfa{word-spacing:34.490521px;}
.ws114{word-spacing:36.104462px;}
.ws10b{word-spacing:38.435711px;}
.ws10f{word-spacing:39.930101px;}
.ws109{word-spacing:42.321125px;}
.wsec{word-spacing:42.918881px;}
.ws101{word-spacing:43.875290px;}
.ws112{word-spacing:43.935066px;}
.wsf9{word-spacing:45.728334px;}
.wsfe{word-spacing:47.581378px;}
.ws10c{word-spacing:48.358460px;}
.wsb5{word-spacing:49.583142px;}
.ws113{word-spacing:52.482977px;}
.ws52{word-spacing:60.313580px;}
.wsb4{word-spacing:64.531013px;}
.ws17{word-spacing:68.741940px;}
.ws8d{word-spacing:90.858912px;}
.ws8f{word-spacing:115.725562px;}
.ws90{word-spacing:115.785337px;}
.wsc0{word-spacing:117.593334px;}
.ws8e{word-spacing:130.669462px;}
.wsc1{word-spacing:145.600551px;}
.wsa8{word-spacing:178.156551px;}
.ws11c{word-spacing:450.708024px;}
.ws11d{word-spacing:517.298042px;}
.ws11f{word-spacing:570.079897px;}
.ws124{word-spacing:641.930168px;}
.ws123{word-spacing:658.727112px;}
.ws11a{word-spacing:658.906439px;}
.ws122{word-spacing:793.521090px;}
.ws11e{word-spacing:808.106336px;}
.ws120{word-spacing:843.852145px;}
.ws121{word-spacing:850.009032px;}
.ws11b{word-spacing:901.595375px;}
._7{margin-left:-5.774312px;}
._0{margin-left:-4.208213px;}
._6{margin-left:-2.754470px;}
._1{margin-left:-1.530259px;}
._2{width:1.386797px;}
._a{width:2.670788px;}
._38{width:4.100596px;}
._25{width:14.633104px;}
._1b{width:15.900310px;}
._39{width:16.976270px;}
._14{width:18.088086px;}
._24{width:19.427060px;}
._23{width:20.962126px;}
._4{width:22.475682px;}
._16{width:23.771575px;}
._11{width:25.261172px;}
._9{width:26.600142px;}
._c{width:28.094532px;}
._f{width:29.863894px;}
._35{width:30.903985px;}
._18{width:32.458151px;}
._b{width:33.952541px;}
._22{width:36.224018px;}
._8{width:37.957506px;}
._12{width:39.153022px;}
._10{width:40.587637px;}
._33{width:41.962471px;}
._e{width:43.098208px;}
._1a{width:45.011027px;}
._d{width:46.230449px;}
._21{width:47.880256px;}
._15{width:49.159464px;}
._1f{width:50.211504px;}
._20{width:53.762171px;}
._13{width:55.660684px;}
._19{width:57.485014px;}
._1d{width:59.249568px;}
._1c{width:61.126522px;}
._37{width:63.900116px;}
._1e{width:68.741940px;}
._26{width:91.062149px;}
._29{width:95.820287px;}
._28{width:100.724151px;}
._31{width:151.531146px;}
._36{width:158.299237px;}
._2f{width:166.375953px;}
._2c{width:170.539787px;}
._2b{width:181.418946px;}
._34{width:190.855237px;}
._2d{width:200.427587px;}
._2a{width:209.543452px;}
._30{width:224.485323px;}
._2e{width:230.315387px;}
._40{width:285.727368px;}
._4a{width:384.655986px;}
._4b{width:422.168783px;}
._45{width:471.294741px;}
._3f{width:586.379522px;}
._3d{width:637.064438px;}
._3c{width:648.923914px;}
._3e{width:652.008338px;}
._48{width:683.952415px;}
._43{width:686.563428px;}
._27{width:712.465376px;}
._41{width:730.015496px;}
._3{width:740.597632px;}
._42{width:745.078948px;}
._32{width:780.944293px;}
._49{width:791.727822px;}
._47{width:808.453031px;}
._44{width:833.427284px;}
._3b{width:846.757229px;}
._46{width:883.005163px;}
._5{width:1255.529853px;}
._3a{width:1328.680078px;}
._17{width:1850.353698px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:35.865600px;}
.fs8{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:47.820600px;}
.fsa{font-size:53.798400px;}
.fs7{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:86.077200px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y188{bottom:64.000500px;}
.y4e{bottom:64.002000px;}
.y4{bottom:97.125005px;}
.y4d{bottom:108.832500px;}
.ye7{bottom:108.834000px;}
.y281{bottom:111.556500px;}
.y86{bottom:113.052000px;}
.y4c{bottom:123.030000px;}
.y85{bottom:123.063000px;}
.y11b{bottom:126.765000px;}
.y14f{bottom:126.766500px;}
.yb9{bottom:127.282500px;}
.y280{bottom:127.995000px;}
.y4b{bottom:137.226000px;}
.ye6{bottom:137.227500px;}
.y20{bottom:139.264499px;}
.y4a{bottom:141.445500px;}
.y11a{bottom:144.699000px;}
.y27f{bottom:145.927500px;}
.y187{bottom:147.102000px;}
.ye5{bottom:151.423500px;}
.yb8{bottom:151.794000px;}
.ye4{bottom:155.643000px;}
.y20f{bottom:156.709500px;}
.y84{bottom:156.793500px;}
.y27e{bottom:162.366000px;}
.y14e{bottom:162.631500px;}
.y119{bottom:164.341500px;}
.y48{bottom:164.638500px;}
.y186{bottom:165.034500px;}
.ye3{bottom:165.654000px;}
.yb7{bottom:169.726500px;}
.y49{bottom:170.061000px;}
.y20e{bottom:174.642000px;}
.y83{bottom:174.726000px;}
.y239{bottom:176.443500px;}
.ye2{bottom:179.850000px;}
.y14d{bottom:180.564000px;}
.y1e9{bottom:181.144500px;}
.y1b8{bottom:181.219500px;}
.y118{bottom:182.275500px;}
.y47{bottom:182.571000px;}
.y185{bottom:182.967000px;}
.yb6{bottom:187.659000px;}
.y82{bottom:192.658500px;}
.ye1{bottom:194.047500px;}
.y238{bottom:194.376000px;}
.y261{bottom:194.614500px;}
.y17{bottom:196.933500px;}
.ye0{bottom:198.267000px;}
.y14c{bottom:198.496500px;}
.y1e8{bottom:199.077000px;}
.y1b7{bottom:199.152000px;}
.y117{bottom:200.208000px;}
.y46{bottom:200.503500px;}
.y184{bottom:200.901000px;}
.y20d{bottom:204.585000px;}
.yb4{bottom:205.593000px;}
.ydf{bottom:208.278000px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y81{bottom:210.591000px;}
.yb5{bottom:211.015500px;}
.y260{bottom:212.547000px;}
.y1e7{bottom:217.011000px;}
.y1b6{bottom:217.086000px;}
.y14b{bottom:217.365000px;}
.y116{bottom:218.140500px;}
.y45{bottom:218.437500px;}
.y183{bottom:218.833500px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.yde{bottom:222.474000px;}
.y20c{bottom:222.517500px;}
.yb3{bottom:223.525500px;}
.y237{bottom:226.122000px;}
.y80{bottom:228.525000px;}
.y25f{bottom:230.479500px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y1b5{bottom:235.018500px;}
.y14a{bottom:235.297500px;}
.y1e6{bottom:235.792500px;}
.y115{bottom:236.073000px;}
.y44{bottom:236.370000px;}
.ydd{bottom:236.671500px;}
.y182{bottom:236.766000px;}
.y20b{bottom:240.450000px;}
.ydc{bottom:240.889500px;}
.yb2{bottom:241.458000px;}
.y236{bottom:244.054500px;}
.y7e{bottom:246.457500px;}
.y25e{bottom:248.412000px;}
.ydb{bottom:250.902000px;}
.y7f{bottom:251.880000px;}
.y1b4{bottom:252.951000px;}
.y149{bottom:253.230000px;}
.y1e5{bottom:253.725000px;}
.y114{bottom:254.005500px;}
.y43{bottom:254.302500px;}
.y181{bottom:254.698500px;}
.yb1{bottom:259.390500px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y7d{bottom:264.390000px;}
.yda{bottom:265.098000px;}
.y20a{bottom:270.393000px;}
.y148{bottom:271.162500px;}
.y1b3{bottom:271.539000px;}
.y1e4{bottom:271.657500px;}
.y113{bottom:271.938000px;}
.y42{bottom:272.235000px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y180{bottom:272.631000px;}
.y235{bottom:275.800500px;}
.yb0{bottom:277.323000px;}
.y25d{bottom:278.301000px;}
.yd9{bottom:279.295500px;}
.y7c{bottom:282.322500px;}
.yd8{bottom:283.513500px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y209{bottom:288.327000px;}
.y147{bottom:289.095000px;}
.y1b2{bottom:289.471500px;}
.y1e3{bottom:289.590000px;}
.y41{bottom:290.167500px;}
.y17f{bottom:290.563500px;}
.y112{bottom:291.582000px;}
.y234{bottom:293.733000px;}
.yaf{bottom:295.255500px;}
.y25c{bottom:296.233500px;}
.yd7{bottom:305.557500px;}
.y208{bottom:306.259500px;}
.y146{bottom:307.029000px;}
.y1b1{bottom:307.405500px;}
.y1e2{bottom:307.522500px;}
.y40{bottom:308.100000px;}
.y17e{bottom:308.497500px;}
.y111{bottom:309.514500px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y233{bottom:311.665500px;}
.yae{bottom:313.189500px;}
.y25b{bottom:314.166000px;}
.y7b{bottom:318.124500px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.yd6{bottom:323.490000px;}
.y145{bottom:324.961500px;}
.y1b0{bottom:325.338000px;}
.y3f{bottom:326.034000px;}
.y1e1{bottom:326.305500px;}
.y17d{bottom:326.430000px;}
.y110{bottom:327.448500px;}
.y232{bottom:329.598000px;}
.yad{bottom:331.122000px;}
.y207{bottom:336.202500px;}
.yd5{bottom:341.422500px;}
.y144{bottom:342.894000px;}
.y1af{bottom:343.270500px;}
.y3e{bottom:343.966500px;}
.y25a{bottom:344.053500px;}
.y1e0{bottom:344.238000px;}
.y17c{bottom:344.362500px;}
.y10f{bottom:345.381000px;}
.ye{bottom:348.133500px;}
.yac{bottom:349.054500px;}
.y206{bottom:354.135000px;}
.yd4{bottom:359.355000px;}
.y143{bottom:360.826500px;}
.y1ae{bottom:361.203000px;}
.y231{bottom:361.344000px;}
.y3d{bottom:361.899000px;}
.y259{bottom:361.986000px;}
.y1de{bottom:362.170500px;}
.y17b{bottom:362.295000px;}
.y10e{bottom:363.313500px;}
.yab{bottom:366.987000px;}
.y7a{bottom:367.333500px;}
.y1df{bottom:367.593000px;}
.yd3{bottom:377.289000px;}
.y142{bottom:378.759000px;}
.y1ad{bottom:379.135500px;}
.y230{bottom:379.276500px;}
.y1dd{bottom:380.103000px;}
.y10d{bottom:381.246000px;}
.y17a{bottom:382.632000px;}
.y205{bottom:384.078000px;}
.y79{bottom:385.267500px;}
.yd{bottom:386.785499px;}
.y258{bottom:391.875000px;}
.y3c{bottom:395.131500px;}
.yd1{bottom:395.221500px;}
.y22f{bottom:397.209000px;}
.y141{bottom:397.627500px;}
.y1ac{bottom:397.725000px;}
.y1dc{bottom:398.035500px;}
.y10c{bottom:399.178500px;}
.y179{bottom:400.564500px;}
.yd2{bottom:400.644000px;}
.yaa{bottom:400.834500px;}
.y204{bottom:402.010500px;}
.y78{bottom:403.200000px;}
.yc{bottom:408.044999px;}
.y257{bottom:409.807500px;}
.yd0{bottom:413.154000px;}
.y140{bottom:415.560000px;}
.y1ab{bottom:415.657500px;}
.y1db{bottom:415.968000px;}
.y178{bottom:418.497000px;}
.y10b{bottom:418.822500px;}
.y77{bottom:421.132500px;}
.y22e{bottom:428.955000px;}
.y203{bottom:431.953500px;}
.y13f{bottom:433.492500px;}
.y1aa{bottom:433.590000px;}
.y1da{bottom:433.902000px;}
.y177{bottom:436.429500px;}
.y10a{bottom:436.755000px;}
.y76{bottom:439.065000px;}
.y256{bottom:439.695000px;}
.ya9{bottom:444.471000px;}
.ycf{bottom:445.881000px;}
.y22d{bottom:446.887500px;}
.y3b{bottom:449.775000px;}
.y202{bottom:449.887500px;}
.y13e{bottom:451.425000px;}
.y1a9{bottom:451.522500px;}
.y1d9{bottom:451.834500px;}
.y176{bottom:454.362000px;}
.y109{bottom:454.689000px;}
.y75{bottom:456.997500px;}
.y255{bottom:457.627500px;}
.ya8{bottom:462.403500px;}
.y22c{bottom:464.820000px;}
.y3a{bottom:467.709000px;}
.y201{bottom:467.820000px;}
.y13d{bottom:469.357500px;}
.y1a8{bottom:469.455000px;}
.y1d8{bottom:470.616000px;}
.y175{bottom:472.296000px;}
.y108{bottom:472.621500px;}
.y74{bottom:474.930000px;}
.y254{bottom:475.561500px;}
.ya7{bottom:480.336000px;}
.y39{bottom:485.641500px;}
.ycd{bottom:485.944500px;}
.y13c{bottom:487.290000px;}
.y1a7{bottom:488.044500px;}
.y1d7{bottom:488.548500px;}
.y174{bottom:490.228500px;}
.y107{bottom:490.554000px;}
.yce{bottom:491.367000px;}
.y73{bottom:492.864000px;}
.y22b{bottom:496.566000px;}
.y200{bottom:497.763000px;}
.ya6{bottom:498.268500px;}
.yb{bottom:502.864502px;}
.y38{bottom:503.574000px;}
.ycb{bottom:503.877000px;}
.y13b{bottom:505.224000px;}
.y253{bottom:505.449000px;}
.y1a6{bottom:505.977000px;}
.y1d6{bottom:506.481000px;}
.y173{bottom:508.161000px;}
.y106{bottom:508.486500px;}
.ycc{bottom:509.299500px;}
.y72{bottom:510.796500px;}
.y22a{bottom:514.498500px;}
.y1ff{bottom:515.695500px;}
.ya5{bottom:516.201000px;}
.ya{bottom:520.864502px;}
.y37{bottom:521.506500px;}
.yc9{bottom:521.809500px;}
.y27d{bottom:522.264000px;}
.y252{bottom:523.381500px;}
.y1a5{bottom:523.909500px;}
.y1d5{bottom:524.413500px;}
.y172{bottom:526.093500px;}
.y105{bottom:526.419000px;}
.yca{bottom:527.232000px;}
.y71{bottom:528.729000px;}
.y229{bottom:532.431000px;}
.y1fe{bottom:533.628000px;}
.ya4{bottom:534.133500px;}
.y9{bottom:538.864499px;}
.y36{bottom:539.439000px;}
.yc8{bottom:539.742000px;}
.y27c{bottom:540.196500px;}
.y251{bottom:541.314000px;}
.y1a4{bottom:541.842000px;}
.y1d4{bottom:542.347500px;}
.y104{bottom:544.351500px;}
.y171{bottom:546.430500px;}
.y70{bottom:546.661500px;}
.ya3{bottom:552.067500px;}
.y8{bottom:556.864499px;}
.y13a{bottom:557.305500px;}
.y35{bottom:557.371500px;}
.yc7{bottom:557.674500px;}
.y1d3{bottom:560.280000px;}
.y1a3{bottom:560.431500px;}
.y103{bottom:562.285500px;}
.y1fd{bottom:563.571000px;}
.y228{bottom:564.177000px;}
.y170{bottom:564.363000px;}
.y6f{bottom:566.247000px;}
.y27b{bottom:568.773000px;}
.ya2{bottom:570.000000px;}
.y250{bottom:571.201500px;}
.y34{bottom:575.305500px;}
.yc6{bottom:575.608500px;}
.y1d2{bottom:578.212500px;}
.y1a2{bottom:578.364000px;}
.y102{bottom:580.218000px;}
.y1fc{bottom:581.503500px;}
.y227{bottom:582.109500px;}
.y16f{bottom:582.295500px;}
.y6e{bottom:584.179500px;}
.y27a{bottom:586.705500px;}
.y139{bottom:587.125500px;}
.ya1{bottom:587.932500px;}
.y24f{bottom:589.135500px;}
.y33{bottom:593.238000px;}
.yc5{bottom:593.541000px;}
.y1d1{bottom:596.994000px;}
.y101{bottom:598.150500px;}
.y16e{bottom:600.228000px;}
.y6d{bottom:602.112000px;}
.y279{bottom:604.638000px;}
.ya0{bottom:605.865000px;}
.y24e{bottom:607.068000px;}
.y32{bottom:611.170500px;}
.y1fb{bottom:611.448000px;}
.yc4{bottom:611.473500px;}
.y226{bottom:613.855500px;}
.y1d0{bottom:614.926500px;}
.y100{bottom:616.083000px;}
.y16d{bottom:618.160500px;}
.y6c{bottom:620.044500px;}
.y128{bottom:621.163500px;}
.y278{bottom:622.570500px;}
.y9f{bottom:623.797500px;}
.y31{bottom:629.103000px;}
.y1fa{bottom:629.380500px;}
.yc3{bottom:629.406000px;}
.y1a1{bottom:629.887500px;}
.y225{bottom:631.788000px;}
.y1cf{bottom:632.859000px;}
.yff{bottom:634.015500px;}
.y16c{bottom:636.094500px;}
.y24d{bottom:636.955500px;}
.y6b{bottom:637.977000px;}
.y277{bottom:640.503000px;}
.y9e{bottom:641.730000px;}
.y7{bottom:645.510000px;}
.y132{bottom:646.398000px;}
.y129{bottom:646.431000px;}
.y30{bottom:647.035500px;}
.y1f9{bottom:647.313000px;}
.yc1{bottom:647.338500px;}
.y224{bottom:649.720500px;}
.y1ce{bottom:650.793000px;}
.yc2{bottom:652.762500px;}
.yfe{bottom:653.659500px;}
.y16b{bottom:654.027000px;}
.y24c{bottom:654.888000px;}
.y6a{bottom:655.909500px;}
.y276{bottom:658.437000px;}
.y9d{bottom:659.664000px;}
.y1a0{bottom:659.707500px;}
.y2f{bottom:664.968000px;}
.yc0{bottom:665.272500px;}
.y6{bottom:666.771000px;}
.y223{bottom:667.653000px;}
.y1cd{bottom:668.725500px;}
.yfd{bottom:671.592000px;}
.y16a{bottom:671.959500px;}
.y24b{bottom:672.820500px;}
.y69{bottom:673.843500px;}
.y275{bottom:676.369500px;}
.y1f8{bottom:677.256000px;}
.y9c{bottom:677.596500px;}
.y133{bottom:679.501500px;}
.y12a{bottom:679.534500px;}
.y2e{bottom:682.902000px;}
.ybf{bottom:683.205000px;}
.y1cc{bottom:686.658000px;}
.yfc{bottom:689.526000px;}
.y169{bottom:689.892000px;}
.y68{bottom:691.776000px;}
.y193{bottom:693.745500px;}
.y1f7{bottom:695.188500px;}
.y9b{bottom:695.529000px;}
.y222{bottom:699.399000px;}
.y2d{bottom:700.834500px;}
.ybe{bottom:701.137500px;}
.y24a{bottom:702.709500px;}
.y274{bottom:702.805500px;}
.y1cb{bottom:704.590500px;}
.yfb{bottom:707.458500px;}
.y168{bottom:707.824500px;}
.y67{bottom:709.708500px;}
.y134{bottom:712.603500px;}
.y12b{bottom:712.636500px;}
.y1f6{bottom:713.121000px;}
.y9a{bottom:713.461500px;}
.y221{bottom:717.331500px;}
.y2c{bottom:718.767000px;}
.ybd{bottom:719.070000px;}
.y19b{bottom:719.860500px;}
.y249{bottom:720.642000px;}
.y273{bottom:720.738000px;}
.y194{bottom:721.056000px;}
.y1ca{bottom:723.372000px;}
.yfa{bottom:725.391000px;}
.y167{bottom:725.758500px;}
.y5{bottom:726.298500px;}
.y66{bottom:729.292500px;}
.y99{bottom:731.394000px;}
.y220{bottom:735.264000px;}
.y2b{bottom:736.699500px;}
.y272{bottom:738.672000px;}
.y1c9{bottom:741.304500px;}
.y196{bottom:741.909000px;}
.yf9{bottom:743.323500px;}
.y166{bottom:743.691000px;}
.y135{bottom:745.707000px;}
.y1f5{bottom:745.861500px;}
.y12c{bottom:746.901000px;}
.y65{bottom:747.226500px;}
.y19c{bottom:747.813000px;}
.y98{bottom:749.326500px;}
.y248{bottom:750.529500px;}
.ybc{bottom:751.798500px;}
.y3{bottom:752.599495px;}
.y2a{bottom:754.632000px;}
.y195{bottom:756.106500px;}
.y271{bottom:756.604500px;}
.y1c8{bottom:759.238500px;}
.yf8{bottom:761.256000px;}
.y64{bottom:765.159000px;}
.y21f{bottom:767.010000px;}
.y97{bottom:767.860500px;}
.y29{bottom:772.566000px;}
.y12e{bottom:772.906500px;}
.y270{bottom:774.537000px;}
.y19d{bottom:775.764000px;}
.y197{bottom:776.959500px;}
.y1c7{bottom:777.171000px;}
.y136{bottom:778.809000px;}
.yf7{bottom:779.188500px;}
.y247{bottom:780.417000px;}
.y63{bottom:783.091500px;}
.y21e{bottom:784.942500px;}
.y96{bottom:785.794500px;}
.y1f4{bottom:786.381000px;}
.y12d{bottom:787.102500px;}
.y1c6{bottom:795.952500px;}
.y199{bottom:797.812500px;}
.y246{bottom:798.351000px;}
.y165{bottom:798.709500px;}
.yf6{bottom:798.832500px;}
.ybb{bottom:800.223000px;}
.y26f{bottom:800.973000px;}
.y62{bottom:801.024000px;}
.y21d{bottom:802.875000px;}
.y19e{bottom:803.715000px;}
.y95{bottom:803.727000px;}
.y1f3{bottom:804.313500px;}
.y130{bottom:806.008500px;}
.y137{bottom:811.911000px;}
.y198{bottom:812.008500px;}
.y1c5{bottom:813.885000px;}
.y245{bottom:816.283500px;}
.yf5{bottom:816.765000px;}
.y26e{bottom:818.907000px;}
.y61{bottom:818.956500px;}
.y12f{bottom:820.204500px;}
.y21c{bottom:820.809000px;}
.y94{bottom:821.659500px;}
.y1f2{bottom:822.247500px;}
.y164{bottom:828.531000px;}
.yba{bottom:830.044500px;}
.y28{bottom:831.135000px;}
.y19f{bottom:831.667500px;}
.y19a{bottom:831.700500px;}
.y1c4{bottom:831.817500px;}
.yf4{bottom:834.699000px;}
.y26d{bottom:836.839500px;}
.y60{bottom:836.889000px;}
.y93{bottom:839.592000px;}
.y1f1{bottom:840.180000px;}
.y138{bottom:845.014500px;}
.y131{bottom:845.047500px;}
.y244{bottom:846.171000px;}
.y1c3{bottom:849.750000px;}
.y21b{bottom:852.553500px;}
.yf3{bottom:852.631500px;}
.y26c{bottom:854.772000px;}
.y5f{bottom:854.823000px;}
.y92{bottom:857.524500px;}
.y1f0{bottom:858.112500px;}
.y243{bottom:864.103500px;}
.y163{bottom:866.190000px;}
.y1c2{bottom:867.684000px;}
.y27{bottom:867.868500px;}
.y21a{bottom:870.486000px;}
.y26{bottom:872.088000px;}
.y5e{bottom:872.755500px;}
.y91{bottom:875.458500px;}
.y1ef{bottom:876.045000px;}
.y192{bottom:877.510500px;}
.y2{bottom:879.369000px;}
.y26b{bottom:881.208000px;}
.y242{bottom:882.036000px;}
.y162{bottom:884.701500px;}
.y1c1{bottom:885.616500px;}
.y219{bottom:888.420000px;}
.y127{bottom:890.535000px;}
.y5d{bottom:890.688000px;}
.y90{bottom:893.391000px;}
.y1ee{bottom:893.977500px;}
.y26a{bottom:899.142000px;}
.y241{bottom:899.970000px;}
.yf2{bottom:903.208500px;}
.y1c0{bottom:904.398000px;}
.y24{bottom:906.787500px;}
.y191{bottom:907.330500px;}
.y5c{bottom:908.620500px;}
.y8f{bottom:911.323500px;}
.y1ed{bottom:911.911500px;}
.y25{bottom:912.210000px;}
.y150{bottom:916.152000px;}
.y269{bottom:917.074500px;}
.y218{bottom:920.164500px;}
.y126{bottom:920.356500px;}
.y1bf{bottom:922.330500px;}
.y5b{bottom:928.206000px;}
.y8e{bottom:929.256000px;}
.y1ec{bottom:929.844000px;}
.y240{bottom:929.857500px;}
.yf1{bottom:931.785000px;}
.y268{bottom:935.007000px;}
.y217{bottom:938.097000px;}
.y1be{bottom:940.263000px;}
.y158{bottom:942.612000px;}
.y152{bottom:942.654000px;}
.y5a{bottom:946.138500px;}
.y8d{bottom:947.188500px;}
.y23{bottom:947.401500px;}
.y1eb{bottom:947.776500px;}
.y23f{bottom:947.790000px;}
.y18c{bottom:950.940000px;}
.y267{bottom:952.939500px;}
.y216{bottom:956.031000px;}
.y120{bottom:957.381000px;}
.y1bd{bottom:958.195500px;}
.yf0{bottom:958.222500px;}
.y15d{bottom:960.546000px;}
.y151{bottom:960.586500px;}
.y59{bottom:964.071000px;}
.y1ea{bottom:965.709000px;}
.y8c{bottom:965.722500px;}
.y1{bottom:966.726000px;}
.y11e{bottom:968.235000px;}
.y215{bottom:973.963500px;}
.y1bc{bottom:976.129500px;}
.yef{bottom:976.155000px;}
.y23e{bottom:977.677500px;}
.y266{bottom:979.375500px;}
.y58{bottom:982.003500px;}
.y159{bottom:982.830000px;}
.y154{bottom:982.870500px;}
.y8a{bottom:983.655000px;}
.y8b{bottom:989.079000px;}
.y214{bottom:991.896000px;}
.y1bb{bottom:994.062000px;}
.yee{bottom:994.087500px;}
.y121{bottom:995.314500px;}
.y23d{bottom:995.611500px;}
.y18d{bottom:996.208500px;}
.y265{bottom:997.309500px;}
.y57{bottom:999.936000px;}
.y15e{bottom:1000.762500px;}
.y153{bottom:1000.804500px;}
.y89{bottom:1001.589000px;}
.y11f{bottom:1002.483000px;}
.y18b{bottom:1005.013500px;}
.y213{bottom:1009.828500px;}
.y1ba{bottom:1011.994500px;}
.yed{bottom:1012.020000px;}
.y23c{bottom:1013.544000px;}
.y122{bottom:1017.678000px;}
.y56{bottom:1017.868500px;}
.y88{bottom:1019.521500px;}
.y264{bottom:1022.745000px;}
.y15a{bottom:1023.046500px;}
.yec{bottom:1029.952500px;}
.y155{bottom:1033.507500px;}
.y123{bottom:1033.875000px;}
.y55{bottom:1035.802500px;}
.y87{bottom:1037.454000px;}
.y263{bottom:1040.677500px;}
.y15f{bottom:1040.979000px;}
.y212{bottom:1041.574500px;}
.y23b{bottom:1043.431500px;}
.y1b9{bottom:1046.302500px;}
.yeb{bottom:1047.886500px;}
.y22{bottom:1052.266500px;}
.y54{bottom:1055.386500px;}
.y211{bottom:1059.507000px;}
.y23a{bottom:1061.364000px;}
.y15b{bottom:1063.264500px;}
.y18f{bottom:1064.283000px;}
.y21{bottom:1065.946500px;}
.y11d{bottom:1071.847500px;}
.y53{bottom:1073.319000px;}
.yea{bottom:1073.322000px;}
.y156{bottom:1073.724000px;}
.y210{bottom:1077.439500px;}
.y262{bottom:1078.932000px;}
.y160{bottom:1081.197000px;}
.y18a{bottom:1081.920000px;}
.y125{bottom:1086.903000px;}
.y52{bottom:1091.251500px;}
.ye9{bottom:1091.254500px;}
.y190{bottom:1091.383500px;}
.y18e{bottom:1092.213000px;}
.y15c{bottom:1103.481000px;}
.y11c{bottom:1108.753500px;}
.y51{bottom:1109.185500px;}
.y157{bottom:1113.942000px;}
.y189{bottom:1120.203000px;}
.y161{bottom:1121.413500px;}
.y124{bottom:1126.789500px;}
.y50{bottom:1127.118000px;}
.ye8{bottom:1129.509000px;}
.y4f{bottom:1184.802000px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h10{height:32.326726px;}
.hf{height:34.072320px;}
.he{height:39.750660px;}
.h14{height:40.408306px;}
.hb{height:45.429570px;}
.h7{height:45.960000px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h16{height:51.108480px;}
.h2{height:55.152000px;}
.hd{height:56.786820px;}
.h13{height:56.792820px;}
.h5{height:78.132000px;}
.hc{height:81.773340px;}
.h11{height:95.132820px;}
.h12{height:95.138820px;}
.h4{height:119.055004px;}
.h15{height:122.192820px;}
.h0{height:1262.833500px;}
.ha{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x5{left:163.275000px;}
.x27{left:167.143500px;}
.x60{left:168.777000px;}
.x7{left:171.618000px;}
.x29{left:174.633000px;}
.x1f{left:178.216500px;}
.x38{left:180.121500px;}
.x2a{left:182.931000px;}
.xb{left:183.943500px;}
.xe{left:185.691000px;}
.xc{left:190.168500px;}
.x20{left:192.898500px;}
.x5f{left:195.942000px;}
.x47{left:198.501000px;}
.x18{left:200.728500px;}
.x4{left:203.484001px;}
.x45{left:206.860500px;}
.x37{left:208.425000px;}
.x34{left:216.537000px;}
.x1b{left:220.306500px;}
.x61{left:223.434000px;}
.x11{left:226.635000px;}
.x83{left:228.492000px;}
.x4b{left:231.909000px;}
.x70{left:238.750500px;}
.x8{left:240.151500px;}
.x28{left:242.319000px;}
.x95{left:244.063500px;}
.x36{left:247.429500px;}
.x4a{left:250.459500px;}
.x5a{left:254.586000px;}
.x21{left:256.444500px;}
.x73{left:257.881500px;}
.x22{left:263.148000px;}
.x7e{left:266.140500px;}
.x62{left:267.658500px;}
.x2b{left:279.007500px;}
.x81{left:280.960500px;}
.x49{left:292.915500px;}
.x90{left:301.000500px;}
.x8c{left:305.440500px;}
.x85{left:311.583000px;}
.x6{left:312.730500px;}
.x33{left:314.544000px;}
.x25{left:333.445500px;}
.x5c{left:339.828000px;}
.x14{left:343.315500px;}
.x26{left:344.433000px;}
.x2c{left:348.285000px;}
.x15{left:350.017500px;}
.x72{left:351.382500px;}
.x63{left:352.987500px;}
.x5b{left:355.344000px;}
.x35{left:358.014000px;}
.x79{left:360.969000px;}
.x23{left:363.684000px;}
.x46{left:368.073000px;}
.x24{left:370.386000px;}
.x89{left:375.033000px;}
.x19{left:376.693500px;}
.x64{left:378.516000px;}
.x48{left:384.715500px;}
.x39{left:386.304000px;}
.x93{left:388.593000px;}
.x6c{left:394.989000px;}
.x7c{left:397.474500px;}
.x8d{left:399.558000px;}
.x6d{left:403.273500px;}
.x5e{left:413.424000px;}
.x86{left:418.305000px;}
.x1a{left:420.391500px;}
.x2d{left:422.629500px;}
.x75{left:424.014000px;}
.x91{left:428.862000px;}
.x92{left:434.023500px;}
.xd{left:439.078500px;}
.x74{left:444.525000px;}
.x78{left:450.078000px;}
.x3{left:454.959000px;}
.x43{left:456.523500px;}
.x4c{left:458.806500px;}
.x5d{left:460.335000px;}
.x50{left:462.300000px;}
.x44{left:466.492500px;}
.x59{left:468.967500px;}
.x51{left:470.257500px;}
.x8a{left:478.171500px;}
.x2f{left:479.349000px;}
.x52{left:482.679000px;}
.x16{left:490.042500px;}
.x53{left:497.623500px;}
.x4e{left:502.573500px;}
.x55{left:506.553000px;}
.x40{left:507.796500px;}
.x2e{left:510.235500px;}
.x42{left:513.016500px;}
.x31{left:515.110500px;}
.x4f{left:517.518000px;}
.x56{left:521.496000px;}
.x80{left:526.791000px;}
.x32{left:531.103500px;}
.x41{left:536.730000px;}
.x12{left:540.076500px;}
.x3e{left:543.402000px;}
.x13{left:546.778500px;}
.x54{left:550.320000px;}
.x68{left:551.757000px;}
.x17{left:553.401000px;}
.x57{left:558.277500px;}
.x30{left:560.055000px;}
.x69{left:564.459000px;}
.x3f{left:565.984500px;}
.x6a{left:567.003000px;}
.x84{left:568.587000px;}
.x58{left:573.222000px;}
.x66{left:575.631000px;}
.x6e{left:577.759500px;}
.x3c{left:582.264000px;}
.x71{left:587.280000px;}
.x67{left:588.333000px;}
.x77{left:603.387000px;}
.x88{left:604.614000px;}
.x3d{left:611.199000px;}
.x94{left:618.895500px;}
.x7a{left:623.436000px;}
.x6f{left:625.732500px;}
.x8b{left:636.832500px;}
.x76{left:649.863000px;}
.x8e{left:654.544500px;}
.x7f{left:668.571000px;}
.x3a{left:670.773000px;}
.x8f{left:672.123000px;}
.x87{left:673.585500px;}
.x6b{left:680.910000px;}
.x82{left:685.234500px;}
.x1c{left:687.186000px;}
.x65{left:689.029500px;}
.x7d{left:691.600500px;}
.xf{left:694.264500px;}
.x1d{left:695.745000px;}
.x4d{left:697.536000px;}
.x3b{left:699.706500px;}
.x10{left:700.968000px;}
.x1e{left:713.221500px;}
.x7b{left:718.201500px;}
.x9{left:726.438000px;}
.xa{left:733.141500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:34.085333pt;}
.v2{vertical-align:58.138667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000125pt;}
.lsa{letter-spacing:0.005459pt;}
.ls7{letter-spacing:12.547608pt;}
.ls4{letter-spacing:13.283467pt;}
.ls1{letter-spacing:15.674491pt;}
.ls5{letter-spacing:16.152695pt;}
.lsb{letter-spacing:17.693578pt;}
.ls8{letter-spacing:20.743514pt;}
.ls6{letter-spacing:23.803972pt;}
.ls2{letter-spacing:26.566933pt;}
.ls3{letter-spacing:26.620067pt;}
.wsa9{word-spacing:-0.042507pt;}
.ws0{word-spacing:0.000000pt;}
.wsc9{word-spacing:11.795718pt;}
.ws8a{word-spacing:11.902016pt;}
.ws4a{word-spacing:11.955120pt;}
.wsd5{word-spacing:12.008254pt;}
.wsf5{word-spacing:12.114522pt;}
.ws21{word-spacing:12.273923pt;}
.wsd7{word-spacing:12.327057pt;}
.ws74{word-spacing:12.380191pt;}
.wsf4{word-spacing:12.433325pt;}
.ws7c{word-spacing:12.497117pt;}
.ws4e{word-spacing:12.539593pt;}
.ws45{word-spacing:12.592726pt;}
.wsea{word-spacing:12.645860pt;}
.wsb7{word-spacing:12.698994pt;}
.wsdc{word-spacing:12.752128pt;}
.ws60{word-spacing:12.805262pt;}
.wsb0{word-spacing:12.858396pt;}
.wsbb{word-spacing:12.911530pt;}
.ws66{word-spacing:12.964663pt;}
.wsb1{word-spacing:13.017797pt;}
.ws93{word-spacing:13.177199pt;}
.ws43{word-spacing:13.230333pt;}
.wsde{word-spacing:13.262246pt;}
.ws42{word-spacing:13.283467pt;}
.ws25{word-spacing:13.304754pt;}
.ws1a{word-spacing:13.389734pt;}
.wsb9{word-spacing:13.549136pt;}
.ws6c{word-spacing:13.602270pt;}
.ws41{word-spacing:13.655404pt;}
.wsb8{word-spacing:13.708538pt;}
.wsc4{word-spacing:13.761671pt;}
.ws81{word-spacing:13.814805pt;}
.ws7e{word-spacing:13.867939pt;}
.ws94{word-spacing:13.921073pt;}
.ws9e{word-spacing:14.027341pt;}
.ws9a{word-spacing:14.080475pt;}
.ws6e{word-spacing:14.133609pt;}
.wsac{word-spacing:14.239876pt;}
.ws1b{word-spacing:14.293010pt;}
.ws100{word-spacing:14.452412pt;}
.ws91{word-spacing:14.505546pt;}
.ws64{word-spacing:14.558679pt;}
.wsad{word-spacing:14.664947pt;}
.ws5{word-spacing:14.771215pt;}
.ws1d{word-spacing:14.824349pt;}
.wsd{word-spacing:14.877483pt;}
.ws3a{word-spacing:14.930617pt;}
.ws80{word-spacing:15.036884pt;}
.ws2{word-spacing:15.047549pt;}
.ws4d{word-spacing:15.090018pt;}
.ws1{word-spacing:15.090056pt;}
.ws97{word-spacing:15.143152pt;}
.ws70{word-spacing:15.196286pt;}
.ws3b{word-spacing:15.249420pt;}
.ws89{word-spacing:15.260085pt;}
.wse0{word-spacing:15.408821pt;}
.wsf7{word-spacing:15.461955pt;}
.ws68{word-spacing:15.515089pt;}
.wsaa{word-spacing:15.568223pt;}
.ws1c{word-spacing:15.674491pt;}
.ws84{word-spacing:15.727625pt;}
.ws103{word-spacing:15.780758pt;}
.wsf{word-spacing:15.833892pt;}
.wsa0{word-spacing:15.887026pt;}
.wsd6{word-spacing:15.993294pt;}
.ws19{word-spacing:16.046428pt;}
.ws82{word-spacing:16.099562pt;}
.ws44{word-spacing:16.152695pt;}
.wsba{word-spacing:16.205829pt;}
.wsed{word-spacing:16.258963pt;}
.ws2c{word-spacing:16.312097pt;}
.ws126{word-spacing:16.354714pt;}
.ws46{word-spacing:16.365231pt;}
.ws2b{word-spacing:16.418365pt;}
.wsd3{word-spacing:16.471499pt;}
.ws54{word-spacing:16.524633pt;}
.ws55{word-spacing:16.577766pt;}
.wse5{word-spacing:16.630900pt;}
.ws13{word-spacing:16.684034pt;}
.ws2a{word-spacing:16.737168pt;}
.ws7f{word-spacing:16.790302pt;}
.ws95{word-spacing:16.843436pt;}
.wsdb{word-spacing:16.896570pt;}
.wsb2{word-spacing:16.949703pt;}
.ws48{word-spacing:17.002837pt;}
.ws9d{word-spacing:17.055971pt;}
.ws110{word-spacing:17.162239pt;}
.wse{word-spacing:17.215373pt;}
.ws5e{word-spacing:17.268507pt;}
.ws92{word-spacing:17.321641pt;}
.ws7d{word-spacing:17.374774pt;}
.ws108{word-spacing:17.427908pt;}
.wse9{word-spacing:17.481042pt;}
.wsd2{word-spacing:17.534176pt;}
.wsaf{word-spacing:17.587310pt;}
.wsa6{word-spacing:17.640444pt;}
.ws16{word-spacing:17.693578pt;}
.ws31{word-spacing:17.746711pt;}
.ws5a{word-spacing:17.799845pt;}
.ws3c{word-spacing:17.852979pt;}
.wsd9{word-spacing:17.906113pt;}
.ws75{word-spacing:17.959247pt;}
.wsdd{word-spacing:17.980546pt;}
.ws9f{word-spacing:18.012381pt;}
.ws78{word-spacing:18.065515pt;}
.ws2f{word-spacing:18.171782pt;}
.ws72{word-spacing:18.224916pt;}
.wsc8{word-spacing:18.278050pt;}
.ws5f{word-spacing:18.331184pt;}
.ws63{word-spacing:18.384318pt;}
.wsa1{word-spacing:18.490586pt;}
.wsdf{word-spacing:18.533139pt;}
.wsab{word-spacing:18.543719pt;}
.ws98{word-spacing:18.596853pt;}
.wsa{word-spacing:18.649987pt;}
.ws14{word-spacing:18.703121pt;}
.wsd0{word-spacing:18.756255pt;}
.ws6d{word-spacing:18.862523pt;}
.ws85{word-spacing:18.873197pt;}
.wsa4{word-spacing:18.915657pt;}
.wsc5{word-spacing:18.968790pt;}
.wsbe{word-spacing:19.021924pt;}
.ws8b{word-spacing:19.043226pt;}
.wse2{word-spacing:19.075058pt;}
.ws96{word-spacing:19.128192pt;}
.wsae{word-spacing:19.234460pt;}
.wsb6{word-spacing:19.287594pt;}
.ws83{word-spacing:19.393861pt;}
.ws7a{word-spacing:19.500129pt;}
.ws8c{word-spacing:19.510805pt;}
.ws2d{word-spacing:19.553263pt;}
.ws6f{word-spacing:19.606397pt;}
.ws22{word-spacing:19.712665pt;}
.wsbd{word-spacing:19.765798pt;}
.ws26{word-spacing:19.808355pt;}
.ws8{word-spacing:19.872066pt;}
.wscc{word-spacing:19.925200pt;}
.ws86{word-spacing:19.935877pt;}
.ws37{word-spacing:19.978334pt;}
.wsbc{word-spacing:20.031468pt;}
.ws99{word-spacing:20.084602pt;}
.wscf{word-spacing:20.137735pt;}
.ws87{word-spacing:20.148413pt;}
.wsce{word-spacing:20.190869pt;}
.ws9b{word-spacing:20.297137pt;}
.ws4{word-spacing:20.350271pt;}
.ws27{word-spacing:20.403405pt;}
.wsd8{word-spacing:20.456539pt;}
.ws39{word-spacing:20.509673pt;}
.ws38{word-spacing:20.562806pt;}
.ws40{word-spacing:20.615940pt;}
.ws88{word-spacing:20.701006pt;}
.ws6b{word-spacing:20.722208pt;}
.ws24{word-spacing:20.743514pt;}
.ws73{word-spacing:20.775342pt;}
.ws79{word-spacing:20.828476pt;}
.ws69{word-spacing:20.881610pt;}
.ws6a{word-spacing:20.934743pt;}
.ws125{word-spacing:20.956050pt;}
.ws62{word-spacing:21.041011pt;}
.ws6{word-spacing:21.094145pt;}
.ws65{word-spacing:21.147279pt;}
.ws5d{word-spacing:21.200413pt;}
.wsc7{word-spacing:21.253547pt;}
.ws23{word-spacing:21.306681pt;}
.ws15{word-spacing:21.359814pt;}
.wsbf{word-spacing:21.412948pt;}
.ws3f{word-spacing:21.466082pt;}
.ws12{word-spacing:21.519216pt;}
.ws3d{word-spacing:21.572350pt;}
.ws4b{word-spacing:21.625484pt;}
.wse4{word-spacing:21.678618pt;}
.wse3{word-spacing:21.731751pt;}
.wsf1{word-spacing:21.784885pt;}
.wsd1{word-spacing:21.838019pt;}
.ws11{word-spacing:21.891153pt;}
.ws56{word-spacing:21.944287pt;}
.ws29{word-spacing:22.050555pt;}
.wsb3{word-spacing:22.103689pt;}
.wsa3{word-spacing:22.263090pt;}
.wscb{word-spacing:22.316224pt;}
.wsca{word-spacing:22.369358pt;}
.ws7{word-spacing:22.475626pt;}
.wsb{word-spacing:22.635027pt;}
.ws9c{word-spacing:22.688161pt;}
.ws28{word-spacing:22.741295pt;}
.wse8{word-spacing:22.794429pt;}
.ws102{word-spacing:22.847563pt;}
.wsa2{word-spacing:22.900697pt;}
.ws30{word-spacing:22.953830pt;}
.ws10a{word-spacing:23.006964pt;}
.wsfb{word-spacing:23.060098pt;}
.ws36{word-spacing:23.166366pt;}
.wse7{word-spacing:23.272634pt;}
.ws76{word-spacing:23.378901pt;}
.ws9{word-spacing:23.485169pt;}
.wsef{word-spacing:23.538303pt;}
.wsf0{word-spacing:23.591437pt;}
.ws10d{word-spacing:23.644571pt;}
.wsc{word-spacing:23.697705pt;}
.ws5b{word-spacing:23.750838pt;}
.ws50{word-spacing:23.803972pt;}
.ws4f{word-spacing:23.857106pt;}
.wsa5{word-spacing:23.910240pt;}
.ws71{word-spacing:23.963374pt;}
.ws77{word-spacing:24.016508pt;}
.ws34{word-spacing:24.069642pt;}
.ws1f{word-spacing:24.122775pt;}
.ws1e{word-spacing:24.175909pt;}
.ws35{word-spacing:24.388445pt;}
.wsff{word-spacing:24.441579pt;}
.ws10e{word-spacing:24.494713pt;}
.ws4c{word-spacing:24.547846pt;}
.wsc3{word-spacing:24.654114pt;}
.ws57{word-spacing:24.707248pt;}
.ws58{word-spacing:24.760382pt;}
.ws10{word-spacing:24.813516pt;}
.ws7b{word-spacing:24.919783pt;}
.wscd{word-spacing:24.972917pt;}
.wsc6{word-spacing:25.026051pt;}
.ws20{word-spacing:25.079185pt;}
.ws117{word-spacing:25.238587pt;}
.ws3e{word-spacing:25.344854pt;}
.ws111{word-spacing:25.397988pt;}
.ws67{word-spacing:25.451122pt;}
.ws53{word-spacing:25.504256pt;}
.wsf6{word-spacing:25.557390pt;}
.wseb{word-spacing:25.663658pt;}
.wsd4{word-spacing:25.876193pt;}
.wsda{word-spacing:25.929327pt;}
.wse6{word-spacing:26.194996pt;}
.ws59{word-spacing:26.301264pt;}
.ws105{word-spacing:26.354398pt;}
.ws18{word-spacing:26.460666pt;}
.ws32{word-spacing:26.513799pt;}
.ws2e{word-spacing:26.620067pt;}
.ws104{word-spacing:26.673201pt;}
.ws33{word-spacing:26.726335pt;}
.wsa7{word-spacing:26.832603pt;}
.ws106{word-spacing:26.938870pt;}
.wsfc{word-spacing:27.045138pt;}
.ws49{word-spacing:27.204540pt;}
.wsf8{word-spacing:27.363941pt;}
.ws115{word-spacing:27.417075pt;}
.wsfd{word-spacing:27.576477pt;}
.wse1{word-spacing:27.629611pt;}
.ws51{word-spacing:27.682745pt;}
.ws47{word-spacing:27.789012pt;}
.ws116{word-spacing:27.948414pt;}
.ws5c{word-spacing:28.054682pt;}
.ws3{word-spacing:28.080295pt;}
.ws107{word-spacing:28.532886pt;}
.wsc2{word-spacing:28.745422pt;}
.ws61{word-spacing:28.798556pt;}
.wsf2{word-spacing:28.957957pt;}
.wsf3{word-spacing:29.701831pt;}
.wsee{word-spacing:29.754965pt;}
.ws118{word-spacing:29.808099pt;}
.ws119{word-spacing:30.126902pt;}
.wsfa{word-spacing:30.658241pt;}
.ws114{word-spacing:32.092855pt;}
.ws10b{word-spacing:34.165076pt;}
.ws10f{word-spacing:35.493423pt;}
.ws109{word-spacing:37.618778pt;}
.wsec{word-spacing:38.150116pt;}
.ws101{word-spacing:39.000258pt;}
.ws112{word-spacing:39.053392pt;}
.wsf9{word-spacing:40.647408pt;}
.wsfe{word-spacing:42.294558pt;}
.ws10c{word-spacing:42.985298pt;}
.wsb5{word-spacing:44.073904pt;}
.ws113{word-spacing:46.651535pt;}
.ws52{word-spacing:53.612071pt;}
.wsb4{word-spacing:57.360900pt;}
.ws17{word-spacing:61.103947pt;}
.ws8d{word-spacing:80.763477pt;}
.ws8f{word-spacing:102.867166pt;}
.ws90{word-spacing:102.920300pt;}
.wsc0{word-spacing:104.527408pt;}
.ws8e{word-spacing:116.150633pt;}
.wsc1{word-spacing:129.422712pt;}
.wsa8{word-spacing:158.361378pt;}
.ws11c{word-spacing:400.629355pt;}
.ws11d{word-spacing:459.820482pt;}
.ws11f{word-spacing:506.737686pt;}
.ws124{word-spacing:570.604594pt;}
.ws123{word-spacing:585.535211pt;}
.ws11a{word-spacing:585.694612pt;}
.ws122{word-spacing:705.352080pt;}
.ws11e{word-spacing:718.316743pt;}
.ws120{word-spacing:750.090796pt;}
.ws121{word-spacing:755.563584pt;}
.ws11b{word-spacing:801.418111pt;}
._7{margin-left:-5.132722pt;}
._0{margin-left:-3.740634pt;}
._6{margin-left:-2.448418pt;}
._1{margin-left:-1.360230pt;}
._2{width:1.232709pt;}
._a{width:2.374034pt;}
._38{width:3.644974pt;}
._25{width:13.007203pt;}
._1b{width:14.133609pt;}
._39{width:15.090018pt;}
._14{width:16.078299pt;}
._24{width:17.268498pt;}
._23{width:18.633001pt;}
._4{width:19.978384pt;}
._16{width:21.130289pt;}
._11{width:22.454375pt;}
._9{width:23.644571pt;}
._c{width:24.972917pt;}
._f{width:26.545683pt;}
._35{width:27.470209pt;}
._18{width:28.851690pt;}
._b{width:30.180036pt;}
._22{width:32.199127pt;}
._8{width:33.740005pt;}
._12{width:34.802686pt;}
._10{width:36.077899pt;}
._33{width:37.299974pt;}
._e{width:38.309518pt;}
._1a{width:40.009802pt;}
._d{width:41.093733pt;}
._21{width:42.560227pt;}
._15{width:43.697301pt;}
._1f{width:44.632448pt;}
._20{width:47.788596pt;}
._13{width:49.476163pt;}
._19{width:51.097790pt;}
._1d{width:52.666283pt;}
._1c{width:54.334686pt;}
._37{width:56.800103pt;}
._1e{width:61.103947pt;}
._26{width:80.944133pt;}
._29{width:85.173588pt;}
._28{width:89.532578pt;}
._31{width:134.694352pt;}
._36{width:140.710433pt;}
._2f{width:147.889736pt;}
._2c{width:151.590922pt;}
._2b{width:161.261285pt;}
._34{width:169.649099pt;}
._2d{width:178.157855pt;}
._2a{width:186.260846pt;}
._30{width:199.542509pt;}
._2e{width:204.724788pt;}
._40{width:253.979883pt;}
._4a{width:341.916432pt;}
._4b{width:375.261141pt;}
._45{width:418.928659pt;}
._3f{width:521.226242pt;}
._3d{width:566.279501pt;}
._3c{width:576.821257pt;}
._3e{width:579.562967pt;}
._48{width:607.957702pt;}
._43{width:610.278603pt;}
._27{width:633.302557pt;}
._41{width:648.902663pt;}
._3{width:658.309006pt;}
._42{width:662.292398pt;}
._32{width:694.172705pt;}
._49{width:703.758064pt;}
._47{width:718.624917pt;}
._44{width:740.824253pt;}
._3b{width:752.673092pt;}
._46{width:784.893478pt;}
._5{width:1116.026536pt;}
._3a{width:1181.048958pt;}
._17{width:1644.758843pt;}
.fs9{font-size:31.880533pt;}
.fs8{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.507200pt;}
.fsa{font-size:47.820800pt;}
.fs7{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:76.513067pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y188{bottom:56.889333pt;}
.y4e{bottom:56.890667pt;}
.y4{bottom:86.333337pt;}
.y4d{bottom:96.740000pt;}
.ye7{bottom:96.741333pt;}
.y281{bottom:99.161333pt;}
.y86{bottom:100.490667pt;}
.y4c{bottom:109.360000pt;}
.y85{bottom:109.389333pt;}
.y11b{bottom:112.680000pt;}
.y14f{bottom:112.681333pt;}
.yb9{bottom:113.140000pt;}
.y280{bottom:113.773333pt;}
.y4b{bottom:121.978667pt;}
.ye6{bottom:121.980000pt;}
.y20{bottom:123.790666pt;}
.y4a{bottom:125.729333pt;}
.y11a{bottom:128.621333pt;}
.y27f{bottom:129.713333pt;}
.y187{bottom:130.757333pt;}
.ye5{bottom:134.598667pt;}
.yb8{bottom:134.928000pt;}
.ye4{bottom:138.349333pt;}
.y20f{bottom:139.297333pt;}
.y84{bottom:139.372000pt;}
.y27e{bottom:144.325333pt;}
.y14e{bottom:144.561333pt;}
.y119{bottom:146.081333pt;}
.y48{bottom:146.345333pt;}
.y186{bottom:146.697333pt;}
.ye3{bottom:147.248000pt;}
.yb7{bottom:150.868000pt;}
.y49{bottom:151.165333pt;}
.y20e{bottom:155.237333pt;}
.y83{bottom:155.312000pt;}
.y239{bottom:156.838667pt;}
.ye2{bottom:159.866667pt;}
.y14d{bottom:160.501333pt;}
.y1e9{bottom:161.017333pt;}
.y1b8{bottom:161.084000pt;}
.y118{bottom:162.022667pt;}
.y47{bottom:162.285333pt;}
.y185{bottom:162.637333pt;}
.yb6{bottom:166.808000pt;}
.y82{bottom:171.252000pt;}
.ye1{bottom:172.486667pt;}
.y238{bottom:172.778667pt;}
.y261{bottom:172.990667pt;}
.y17{bottom:175.052000pt;}
.ye0{bottom:176.237333pt;}
.y14c{bottom:176.441333pt;}
.y1e8{bottom:176.957333pt;}
.y1b7{bottom:177.024000pt;}
.y117{bottom:177.962667pt;}
.y46{bottom:178.225333pt;}
.y184{bottom:178.578667pt;}
.y20d{bottom:181.853333pt;}
.yb4{bottom:182.749333pt;}
.ydf{bottom:185.136000pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y81{bottom:187.192000pt;}
.yb5{bottom:187.569333pt;}
.y260{bottom:188.930667pt;}
.y1e7{bottom:192.898667pt;}
.y1b6{bottom:192.965333pt;}
.y14b{bottom:193.213333pt;}
.y116{bottom:193.902667pt;}
.y45{bottom:194.166667pt;}
.y183{bottom:194.518667pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.yde{bottom:197.754667pt;}
.y20c{bottom:197.793333pt;}
.yb3{bottom:198.689333pt;}
.y237{bottom:200.997333pt;}
.y80{bottom:203.133333pt;}
.y25f{bottom:204.870667pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y1b5{bottom:208.905333pt;}
.y14a{bottom:209.153333pt;}
.y1e6{bottom:209.593333pt;}
.y115{bottom:209.842667pt;}
.y44{bottom:210.106667pt;}
.ydd{bottom:210.374667pt;}
.y182{bottom:210.458667pt;}
.y20b{bottom:213.733333pt;}
.ydc{bottom:214.124000pt;}
.yb2{bottom:214.629333pt;}
.y236{bottom:216.937333pt;}
.y7e{bottom:219.073333pt;}
.y25e{bottom:220.810667pt;}
.ydb{bottom:223.024000pt;}
.y7f{bottom:223.893333pt;}
.y1b4{bottom:224.845333pt;}
.y149{bottom:225.093333pt;}
.y1e5{bottom:225.533333pt;}
.y114{bottom:225.782667pt;}
.y43{bottom:226.046667pt;}
.y181{bottom:226.398667pt;}
.yb1{bottom:230.569333pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y7d{bottom:235.013333pt;}
.yda{bottom:235.642667pt;}
.y20a{bottom:240.349333pt;}
.y148{bottom:241.033333pt;}
.y1b3{bottom:241.368000pt;}
.y1e4{bottom:241.473333pt;}
.y113{bottom:241.722667pt;}
.y42{bottom:241.986667pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y180{bottom:242.338667pt;}
.y235{bottom:245.156000pt;}
.yb0{bottom:246.509333pt;}
.y25d{bottom:247.378667pt;}
.yd9{bottom:248.262667pt;}
.y7c{bottom:250.953333pt;}
.yd8{bottom:252.012000pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y209{bottom:256.290667pt;}
.y147{bottom:256.973333pt;}
.y1b2{bottom:257.308000pt;}
.y1e3{bottom:257.413333pt;}
.y41{bottom:257.926667pt;}
.y17f{bottom:258.278667pt;}
.y112{bottom:259.184000pt;}
.y234{bottom:261.096000pt;}
.yaf{bottom:262.449333pt;}
.y25c{bottom:263.318667pt;}
.yd7{bottom:271.606667pt;}
.y208{bottom:272.230667pt;}
.y146{bottom:272.914667pt;}
.y1b1{bottom:273.249333pt;}
.y1e2{bottom:273.353333pt;}
.y40{bottom:273.866667pt;}
.y17e{bottom:274.220000pt;}
.y111{bottom:275.124000pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y233{bottom:277.036000pt;}
.yae{bottom:278.390667pt;}
.y25b{bottom:279.258667pt;}
.y7b{bottom:282.777333pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.yd6{bottom:287.546667pt;}
.y145{bottom:288.854667pt;}
.y1b0{bottom:289.189333pt;}
.y3f{bottom:289.808000pt;}
.y1e1{bottom:290.049333pt;}
.y17d{bottom:290.160000pt;}
.y110{bottom:291.065333pt;}
.y232{bottom:292.976000pt;}
.yad{bottom:294.330667pt;}
.y207{bottom:298.846667pt;}
.yd5{bottom:303.486667pt;}
.y144{bottom:304.794667pt;}
.y1af{bottom:305.129333pt;}
.y3e{bottom:305.748000pt;}
.y25a{bottom:305.825333pt;}
.y1e0{bottom:305.989333pt;}
.y17c{bottom:306.100000pt;}
.y10f{bottom:307.005333pt;}
.ye{bottom:309.452000pt;}
.yac{bottom:310.270667pt;}
.y206{bottom:314.786667pt;}
.yd4{bottom:319.426667pt;}
.y143{bottom:320.734667pt;}
.y1ae{bottom:321.069333pt;}
.y231{bottom:321.194667pt;}
.y3d{bottom:321.688000pt;}
.y259{bottom:321.765333pt;}
.y1de{bottom:321.929333pt;}
.y17b{bottom:322.040000pt;}
.y10e{bottom:322.945333pt;}
.yab{bottom:326.210667pt;}
.y7a{bottom:326.518667pt;}
.y1df{bottom:326.749333pt;}
.yd3{bottom:335.368000pt;}
.y142{bottom:336.674667pt;}
.y1ad{bottom:337.009333pt;}
.y230{bottom:337.134667pt;}
.y1dd{bottom:337.869333pt;}
.y10d{bottom:338.885333pt;}
.y17a{bottom:340.117333pt;}
.y205{bottom:341.402667pt;}
.y79{bottom:342.460000pt;}
.yd{bottom:343.809333pt;}
.y258{bottom:348.333333pt;}
.y3c{bottom:351.228000pt;}
.yd1{bottom:351.308000pt;}
.y22f{bottom:353.074667pt;}
.y141{bottom:353.446667pt;}
.y1ac{bottom:353.533333pt;}
.y1dc{bottom:353.809333pt;}
.y10c{bottom:354.825333pt;}
.y179{bottom:356.057333pt;}
.yd2{bottom:356.128000pt;}
.yaa{bottom:356.297333pt;}
.y204{bottom:357.342667pt;}
.y78{bottom:358.400000pt;}
.yc{bottom:362.706666pt;}
.y257{bottom:364.273333pt;}
.yd0{bottom:367.248000pt;}
.y140{bottom:369.386667pt;}
.y1ab{bottom:369.473333pt;}
.y1db{bottom:369.749333pt;}
.y178{bottom:371.997333pt;}
.y10b{bottom:372.286667pt;}
.y77{bottom:374.340000pt;}
.y22e{bottom:381.293333pt;}
.y203{bottom:383.958667pt;}
.y13f{bottom:385.326667pt;}
.y1aa{bottom:385.413333pt;}
.y1da{bottom:385.690667pt;}
.y177{bottom:387.937333pt;}
.y10a{bottom:388.226667pt;}
.y76{bottom:390.280000pt;}
.y256{bottom:390.840000pt;}
.ya9{bottom:395.085333pt;}
.ycf{bottom:396.338667pt;}
.y22d{bottom:397.233333pt;}
.y3b{bottom:399.800000pt;}
.y202{bottom:399.900000pt;}
.y13e{bottom:401.266667pt;}
.y1a9{bottom:401.353333pt;}
.y1d9{bottom:401.630667pt;}
.y176{bottom:403.877333pt;}
.y109{bottom:404.168000pt;}
.y75{bottom:406.220000pt;}
.y255{bottom:406.780000pt;}
.ya8{bottom:411.025333pt;}
.y22c{bottom:413.173333pt;}
.y3a{bottom:415.741333pt;}
.y201{bottom:415.840000pt;}
.y13d{bottom:417.206667pt;}
.y1a8{bottom:417.293333pt;}
.y1d8{bottom:418.325333pt;}
.y175{bottom:419.818667pt;}
.y108{bottom:420.108000pt;}
.y74{bottom:422.160000pt;}
.y254{bottom:422.721333pt;}
.ya7{bottom:426.965333pt;}
.y39{bottom:431.681333pt;}
.ycd{bottom:431.950667pt;}
.y13c{bottom:433.146667pt;}
.y1a7{bottom:433.817333pt;}
.y1d7{bottom:434.265333pt;}
.y174{bottom:435.758667pt;}
.y107{bottom:436.048000pt;}
.yce{bottom:436.770667pt;}
.y73{bottom:438.101333pt;}
.y22b{bottom:441.392000pt;}
.y200{bottom:442.456000pt;}
.ya6{bottom:442.905333pt;}
.yb{bottom:446.990669pt;}
.y38{bottom:447.621333pt;}
.ycb{bottom:447.890667pt;}
.y13b{bottom:449.088000pt;}
.y253{bottom:449.288000pt;}
.y1a6{bottom:449.757333pt;}
.y1d6{bottom:450.205333pt;}
.y173{bottom:451.698667pt;}
.y106{bottom:451.988000pt;}
.ycc{bottom:452.710667pt;}
.y72{bottom:454.041333pt;}
.y22a{bottom:457.332000pt;}
.y1ff{bottom:458.396000pt;}
.ya5{bottom:458.845333pt;}
.ya{bottom:462.990669pt;}
.y37{bottom:463.561333pt;}
.yc9{bottom:463.830667pt;}
.y27d{bottom:464.234667pt;}
.y252{bottom:465.228000pt;}
.y1a5{bottom:465.697333pt;}
.y1d5{bottom:466.145333pt;}
.y172{bottom:467.638667pt;}
.y105{bottom:467.928000pt;}
.yca{bottom:468.650667pt;}
.y71{bottom:469.981333pt;}
.y229{bottom:473.272000pt;}
.y1fe{bottom:474.336000pt;}
.ya4{bottom:474.785333pt;}
.y9{bottom:478.990666pt;}
.y36{bottom:479.501333pt;}
.yc8{bottom:479.770667pt;}
.y27c{bottom:480.174667pt;}
.y251{bottom:481.168000pt;}
.y1a4{bottom:481.637333pt;}
.y1d4{bottom:482.086667pt;}
.y104{bottom:483.868000pt;}
.y171{bottom:485.716000pt;}
.y70{bottom:485.921333pt;}
.ya3{bottom:490.726667pt;}
.y8{bottom:494.990666pt;}
.y13a{bottom:495.382667pt;}
.y35{bottom:495.441333pt;}
.yc7{bottom:495.710667pt;}
.y1d3{bottom:498.026667pt;}
.y1a3{bottom:498.161333pt;}
.y103{bottom:499.809333pt;}
.y1fd{bottom:500.952000pt;}
.y228{bottom:501.490667pt;}
.y170{bottom:501.656000pt;}
.y6f{bottom:503.330667pt;}
.y27b{bottom:505.576000pt;}
.ya2{bottom:506.666667pt;}
.y250{bottom:507.734667pt;}
.y34{bottom:511.382667pt;}
.yc6{bottom:511.652000pt;}
.y1d2{bottom:513.966667pt;}
.y1a2{bottom:514.101333pt;}
.y102{bottom:515.749333pt;}
.y1fc{bottom:516.892000pt;}
.y227{bottom:517.430667pt;}
.y16f{bottom:517.596000pt;}
.y6e{bottom:519.270667pt;}
.y27a{bottom:521.516000pt;}
.y139{bottom:521.889333pt;}
.ya1{bottom:522.606667pt;}
.y24f{bottom:523.676000pt;}
.y33{bottom:527.322667pt;}
.yc5{bottom:527.592000pt;}
.y1d1{bottom:530.661333pt;}
.y101{bottom:531.689333pt;}
.y16e{bottom:533.536000pt;}
.y6d{bottom:535.210667pt;}
.y279{bottom:537.456000pt;}
.ya0{bottom:538.546667pt;}
.y24e{bottom:539.616000pt;}
.y32{bottom:543.262667pt;}
.y1fb{bottom:543.509333pt;}
.yc4{bottom:543.532000pt;}
.y226{bottom:545.649333pt;}
.y1d0{bottom:546.601333pt;}
.y100{bottom:547.629333pt;}
.y16d{bottom:549.476000pt;}
.y6c{bottom:551.150667pt;}
.y128{bottom:552.145333pt;}
.y278{bottom:553.396000pt;}
.y9f{bottom:554.486667pt;}
.y31{bottom:559.202667pt;}
.y1fa{bottom:559.449333pt;}
.yc3{bottom:559.472000pt;}
.y1a1{bottom:559.900000pt;}
.y225{bottom:561.589333pt;}
.y1cf{bottom:562.541333pt;}
.yff{bottom:563.569333pt;}
.y16c{bottom:565.417333pt;}
.y24d{bottom:566.182667pt;}
.y6b{bottom:567.090667pt;}
.y277{bottom:569.336000pt;}
.y9e{bottom:570.426667pt;}
.y7{bottom:573.786667pt;}
.y132{bottom:574.576000pt;}
.y129{bottom:574.605333pt;}
.y30{bottom:575.142667pt;}
.y1f9{bottom:575.389333pt;}
.yc1{bottom:575.412000pt;}
.y224{bottom:577.529333pt;}
.y1ce{bottom:578.482667pt;}
.yc2{bottom:580.233333pt;}
.yfe{bottom:581.030667pt;}
.y16b{bottom:581.357333pt;}
.y24c{bottom:582.122667pt;}
.y6a{bottom:583.030667pt;}
.y276{bottom:585.277333pt;}
.y9d{bottom:586.368000pt;}
.y1a0{bottom:586.406667pt;}
.y2f{bottom:591.082667pt;}
.yc0{bottom:591.353333pt;}
.y6{bottom:592.685334pt;}
.y223{bottom:593.469333pt;}
.y1cd{bottom:594.422667pt;}
.yfd{bottom:596.970667pt;}
.y16a{bottom:597.297333pt;}
.y24b{bottom:598.062667pt;}
.y69{bottom:598.972000pt;}
.y275{bottom:601.217333pt;}
.y1f8{bottom:602.005333pt;}
.y9c{bottom:602.308000pt;}
.y133{bottom:604.001333pt;}
.y12a{bottom:604.030667pt;}
.y2e{bottom:607.024000pt;}
.ybf{bottom:607.293333pt;}
.y1cc{bottom:610.362667pt;}
.yfc{bottom:612.912000pt;}
.y169{bottom:613.237333pt;}
.y68{bottom:614.912000pt;}
.y193{bottom:616.662667pt;}
.y1f7{bottom:617.945333pt;}
.y9b{bottom:618.248000pt;}
.y222{bottom:621.688000pt;}
.y2d{bottom:622.964000pt;}
.ybe{bottom:623.233333pt;}
.y24a{bottom:624.630667pt;}
.y274{bottom:624.716000pt;}
.y1cb{bottom:626.302667pt;}
.yfb{bottom:628.852000pt;}
.y168{bottom:629.177333pt;}
.y67{bottom:630.852000pt;}
.y134{bottom:633.425333pt;}
.y12b{bottom:633.454667pt;}
.y1f6{bottom:633.885333pt;}
.y9a{bottom:634.188000pt;}
.y221{bottom:637.628000pt;}
.y2c{bottom:638.904000pt;}
.ybd{bottom:639.173333pt;}
.y19b{bottom:639.876000pt;}
.y249{bottom:640.570667pt;}
.y273{bottom:640.656000pt;}
.y194{bottom:640.938667pt;}
.y1ca{bottom:642.997333pt;}
.yfa{bottom:644.792000pt;}
.y167{bottom:645.118667pt;}
.y5{bottom:645.598667pt;}
.y66{bottom:648.260000pt;}
.y99{bottom:650.128000pt;}
.y220{bottom:653.568000pt;}
.y2b{bottom:654.844000pt;}
.y272{bottom:656.597333pt;}
.y1c9{bottom:658.937333pt;}
.y196{bottom:659.474667pt;}
.yf9{bottom:660.732000pt;}
.y166{bottom:661.058667pt;}
.y135{bottom:662.850667pt;}
.y1f5{bottom:662.988000pt;}
.y12c{bottom:663.912000pt;}
.y65{bottom:664.201333pt;}
.y19c{bottom:664.722667pt;}
.y98{bottom:666.068000pt;}
.y248{bottom:667.137333pt;}
.ybc{bottom:668.265333pt;}
.y3{bottom:668.977329pt;}
.y2a{bottom:670.784000pt;}
.y195{bottom:672.094667pt;}
.y271{bottom:672.537333pt;}
.y1c8{bottom:674.878667pt;}
.yf8{bottom:676.672000pt;}
.y64{bottom:680.141333pt;}
.y21f{bottom:681.786667pt;}
.y97{bottom:682.542667pt;}
.y29{bottom:686.725333pt;}
.y12e{bottom:687.028000pt;}
.y270{bottom:688.477333pt;}
.y19d{bottom:689.568000pt;}
.y197{bottom:690.630667pt;}
.y1c7{bottom:690.818667pt;}
.y136{bottom:692.274667pt;}
.yf7{bottom:692.612000pt;}
.y247{bottom:693.704000pt;}
.y63{bottom:696.081333pt;}
.y21e{bottom:697.726667pt;}
.y96{bottom:698.484000pt;}
.y1f4{bottom:699.005333pt;}
.y12d{bottom:699.646667pt;}
.y1c6{bottom:707.513333pt;}
.y199{bottom:709.166667pt;}
.y246{bottom:709.645333pt;}
.y165{bottom:709.964000pt;}
.yf6{bottom:710.073333pt;}
.ybb{bottom:711.309333pt;}
.y26f{bottom:711.976000pt;}
.y62{bottom:712.021333pt;}
.y21d{bottom:713.666667pt;}
.y19e{bottom:714.413333pt;}
.y95{bottom:714.424000pt;}
.y1f3{bottom:714.945333pt;}
.y130{bottom:716.452000pt;}
.y137{bottom:721.698667pt;}
.y198{bottom:721.785333pt;}
.y1c5{bottom:723.453333pt;}
.y245{bottom:725.585333pt;}
.yf5{bottom:726.013333pt;}
.y26e{bottom:727.917333pt;}
.y61{bottom:727.961333pt;}
.y12f{bottom:729.070667pt;}
.y21c{bottom:729.608000pt;}
.y94{bottom:730.364000pt;}
.y1f2{bottom:730.886667pt;}
.y164{bottom:736.472000pt;}
.yba{bottom:737.817333pt;}
.y28{bottom:738.786667pt;}
.y19f{bottom:739.260000pt;}
.y19a{bottom:739.289333pt;}
.y1c4{bottom:739.393333pt;}
.yf4{bottom:741.954667pt;}
.y26d{bottom:743.857333pt;}
.y60{bottom:743.901333pt;}
.y93{bottom:746.304000pt;}
.y1f1{bottom:746.826667pt;}
.y138{bottom:751.124000pt;}
.y131{bottom:751.153333pt;}
.y244{bottom:752.152000pt;}
.y1c3{bottom:755.333333pt;}
.y21b{bottom:757.825333pt;}
.yf3{bottom:757.894667pt;}
.y26c{bottom:759.797333pt;}
.y5f{bottom:759.842667pt;}
.y92{bottom:762.244000pt;}
.y1f0{bottom:762.766667pt;}
.y243{bottom:768.092000pt;}
.y163{bottom:769.946667pt;}
.y1c2{bottom:771.274667pt;}
.y27{bottom:771.438667pt;}
.y21a{bottom:773.765333pt;}
.y26{bottom:775.189333pt;}
.y5e{bottom:775.782667pt;}
.y91{bottom:778.185333pt;}
.y1ef{bottom:778.706667pt;}
.y192{bottom:780.009333pt;}
.y2{bottom:781.661334pt;}
.y26b{bottom:783.296000pt;}
.y242{bottom:784.032000pt;}
.y162{bottom:786.401333pt;}
.y1c1{bottom:787.214667pt;}
.y219{bottom:789.706667pt;}
.y127{bottom:791.586667pt;}
.y5d{bottom:791.722667pt;}
.y90{bottom:794.125333pt;}
.y1ee{bottom:794.646667pt;}
.y26a{bottom:799.237333pt;}
.y241{bottom:799.973333pt;}
.yf2{bottom:802.852000pt;}
.y1c0{bottom:803.909333pt;}
.y24{bottom:806.033333pt;}
.y191{bottom:806.516000pt;}
.y5c{bottom:807.662667pt;}
.y8f{bottom:810.065333pt;}
.y1ed{bottom:810.588000pt;}
.y25{bottom:810.853333pt;}
.y150{bottom:814.357333pt;}
.y269{bottom:815.177333pt;}
.y218{bottom:817.924000pt;}
.y126{bottom:818.094667pt;}
.y1bf{bottom:819.849333pt;}
.y5b{bottom:825.072000pt;}
.y8e{bottom:826.005333pt;}
.y1ec{bottom:826.528000pt;}
.y240{bottom:826.540000pt;}
.yf1{bottom:828.253333pt;}
.y268{bottom:831.117333pt;}
.y217{bottom:833.864000pt;}
.y1be{bottom:835.789333pt;}
.y158{bottom:837.877333pt;}
.y152{bottom:837.914667pt;}
.y5a{bottom:841.012000pt;}
.y8d{bottom:841.945333pt;}
.y23{bottom:842.134667pt;}
.y1eb{bottom:842.468000pt;}
.y23f{bottom:842.480000pt;}
.y18c{bottom:845.280000pt;}
.y267{bottom:847.057333pt;}
.y216{bottom:849.805333pt;}
.y120{bottom:851.005333pt;}
.y1bd{bottom:851.729333pt;}
.yf0{bottom:851.753333pt;}
.y15d{bottom:853.818667pt;}
.y151{bottom:853.854667pt;}
.y59{bottom:856.952000pt;}
.y1ea{bottom:858.408000pt;}
.y8c{bottom:858.420000pt;}
.y1{bottom:859.312000pt;}
.y11e{bottom:860.653333pt;}
.y215{bottom:865.745333pt;}
.y1bc{bottom:867.670667pt;}
.yef{bottom:867.693333pt;}
.y23e{bottom:869.046667pt;}
.y266{bottom:870.556000pt;}
.y58{bottom:872.892000pt;}
.y159{bottom:873.626667pt;}
.y154{bottom:873.662667pt;}
.y8a{bottom:874.360000pt;}
.y8b{bottom:879.181333pt;}
.y214{bottom:881.685333pt;}
.y1bb{bottom:883.610667pt;}
.yee{bottom:883.633333pt;}
.y121{bottom:884.724000pt;}
.y23d{bottom:884.988000pt;}
.y18d{bottom:885.518667pt;}
.y265{bottom:886.497333pt;}
.y57{bottom:888.832000pt;}
.y15e{bottom:889.566667pt;}
.y153{bottom:889.604000pt;}
.y89{bottom:890.301333pt;}
.y11f{bottom:891.096000pt;}
.y18b{bottom:893.345333pt;}
.y213{bottom:897.625333pt;}
.y1ba{bottom:899.550667pt;}
.yed{bottom:899.573333pt;}
.y23c{bottom:900.928000pt;}
.y122{bottom:904.602667pt;}
.y56{bottom:904.772000pt;}
.y88{bottom:906.241333pt;}
.y264{bottom:909.106667pt;}
.y15a{bottom:909.374667pt;}
.yec{bottom:915.513333pt;}
.y155{bottom:918.673333pt;}
.y123{bottom:919.000000pt;}
.y55{bottom:920.713333pt;}
.y87{bottom:922.181333pt;}
.y263{bottom:925.046667pt;}
.y15f{bottom:925.314667pt;}
.y212{bottom:925.844000pt;}
.y23b{bottom:927.494667pt;}
.y1b9{bottom:930.046667pt;}
.yeb{bottom:931.454667pt;}
.y22{bottom:935.348000pt;}
.y54{bottom:938.121333pt;}
.y211{bottom:941.784000pt;}
.y23a{bottom:943.434667pt;}
.y15b{bottom:945.124000pt;}
.y18f{bottom:946.029333pt;}
.y21{bottom:947.508000pt;}
.y11d{bottom:952.753333pt;}
.y53{bottom:954.061333pt;}
.yea{bottom:954.064000pt;}
.y156{bottom:954.421333pt;}
.y210{bottom:957.724000pt;}
.y262{bottom:959.050667pt;}
.y160{bottom:961.064000pt;}
.y18a{bottom:961.706667pt;}
.y125{bottom:966.136000pt;}
.y52{bottom:970.001333pt;}
.ye9{bottom:970.004000pt;}
.y190{bottom:970.118667pt;}
.y18e{bottom:970.856000pt;}
.y15c{bottom:980.872000pt;}
.y11c{bottom:985.558667pt;}
.y51{bottom:985.942667pt;}
.y157{bottom:990.170667pt;}
.y189{bottom:995.736000pt;}
.y161{bottom:996.812000pt;}
.y124{bottom:1001.590667pt;}
.y50{bottom:1001.882667pt;}
.ye8{bottom:1004.008000pt;}
.y4f{bottom:1053.157333pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h10{height:28.734867pt;}
.hf{height:30.286507pt;}
.he{height:35.333920pt;}
.h14{height:35.918494pt;}
.hb{height:40.381840pt;}
.h7{height:40.853333pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h16{height:45.429760pt;}
.h2{height:49.024000pt;}
.hd{height:50.477173pt;}
.h13{height:50.482507pt;}
.h5{height:69.450667pt;}
.hc{height:72.687413pt;}
.h11{height:84.562507pt;}
.h12{height:84.567840pt;}
.h4{height:105.826671pt;}
.h15{height:108.615840pt;}
.h0{height:1122.518667pt;}
.ha{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x5{left:145.133333pt;}
.x27{left:148.572000pt;}
.x60{left:150.024000pt;}
.x7{left:152.549333pt;}
.x29{left:155.229333pt;}
.x1f{left:158.414667pt;}
.x38{left:160.108000pt;}
.x2a{left:162.605333pt;}
.xb{left:163.505333pt;}
.xe{left:165.058667pt;}
.xc{left:169.038667pt;}
.x20{left:171.465333pt;}
.x5f{left:174.170667pt;}
.x47{left:176.445333pt;}
.x18{left:178.425333pt;}
.x4{left:180.874667pt;}
.x45{left:183.876000pt;}
.x37{left:185.266667pt;}
.x34{left:192.477333pt;}
.x1b{left:195.828000pt;}
.x61{left:198.608000pt;}
.x11{left:201.453333pt;}
.x83{left:203.104000pt;}
.x4b{left:206.141333pt;}
.x70{left:212.222667pt;}
.x8{left:213.468000pt;}
.x28{left:215.394667pt;}
.x95{left:216.945333pt;}
.x36{left:219.937333pt;}
.x4a{left:222.630667pt;}
.x5a{left:226.298667pt;}
.x21{left:227.950667pt;}
.x73{left:229.228000pt;}
.x22{left:233.909333pt;}
.x7e{left:236.569333pt;}
.x62{left:237.918667pt;}
.x2b{left:248.006667pt;}
.x81{left:249.742667pt;}
.x49{left:260.369333pt;}
.x90{left:267.556000pt;}
.x8c{left:271.502667pt;}
.x85{left:276.962667pt;}
.x6{left:277.982667pt;}
.x33{left:279.594667pt;}
.x25{left:296.396000pt;}
.x5c{left:302.069333pt;}
.x14{left:305.169333pt;}
.x26{left:306.162667pt;}
.x2c{left:309.586667pt;}
.x15{left:311.126667pt;}
.x72{left:312.340000pt;}
.x63{left:313.766667pt;}
.x5b{left:315.861333pt;}
.x35{left:318.234667pt;}
.x79{left:320.861333pt;}
.x23{left:323.274667pt;}
.x46{left:327.176000pt;}
.x24{left:329.232000pt;}
.x89{left:333.362667pt;}
.x19{left:334.838667pt;}
.x64{left:336.458667pt;}
.x48{left:341.969333pt;}
.x39{left:343.381333pt;}
.x93{left:345.416000pt;}
.x6c{left:351.101333pt;}
.x7c{left:353.310667pt;}
.x8d{left:355.162667pt;}
.x6d{left:358.465333pt;}
.x5e{left:367.488000pt;}
.x86{left:371.826667pt;}
.x1a{left:373.681333pt;}
.x2d{left:375.670667pt;}
.x75{left:376.901333pt;}
.x91{left:381.210667pt;}
.x92{left:385.798667pt;}
.xd{left:390.292000pt;}
.x74{left:395.133333pt;}
.x78{left:400.069333pt;}
.x3{left:404.408000pt;}
.x43{left:405.798667pt;}
.x4c{left:407.828000pt;}
.x5d{left:409.186667pt;}
.x50{left:410.933333pt;}
.x44{left:414.660000pt;}
.x59{left:416.860000pt;}
.x51{left:418.006667pt;}
.x8a{left:425.041333pt;}
.x2f{left:426.088000pt;}
.x52{left:429.048000pt;}
.x16{left:435.593333pt;}
.x53{left:442.332000pt;}
.x4e{left:446.732000pt;}
.x55{left:450.269333pt;}
.x40{left:451.374667pt;}
.x2e{left:453.542667pt;}
.x42{left:456.014667pt;}
.x31{left:457.876000pt;}
.x4f{left:460.016000pt;}
.x56{left:463.552000pt;}
.x80{left:468.258667pt;}
.x32{left:472.092000pt;}
.x41{left:477.093333pt;}
.x12{left:480.068000pt;}
.x3e{left:483.024000pt;}
.x13{left:486.025333pt;}
.x54{left:489.173333pt;}
.x68{left:490.450667pt;}
.x17{left:491.912000pt;}
.x57{left:496.246667pt;}
.x30{left:497.826667pt;}
.x69{left:501.741333pt;}
.x3f{left:503.097333pt;}
.x6a{left:504.002667pt;}
.x84{left:505.410667pt;}
.x58{left:509.530667pt;}
.x66{left:511.672000pt;}
.x6e{left:513.564000pt;}
.x3c{left:517.568000pt;}
.x71{left:522.026667pt;}
.x67{left:522.962667pt;}
.x77{left:536.344000pt;}
.x88{left:537.434667pt;}
.x3d{left:543.288000pt;}
.x94{left:550.129333pt;}
.x7a{left:554.165333pt;}
.x6f{left:556.206667pt;}
.x8b{left:566.073333pt;}
.x76{left:577.656000pt;}
.x8e{left:581.817333pt;}
.x7f{left:594.285333pt;}
.x3a{left:596.242667pt;}
.x8f{left:597.442667pt;}
.x87{left:598.742667pt;}
.x6b{left:605.253333pt;}
.x82{left:609.097333pt;}
.x1c{left:610.832000pt;}
.x65{left:612.470667pt;}
.x7d{left:614.756000pt;}
.xf{left:617.124000pt;}
.x1d{left:618.440000pt;}
.x4d{left:620.032000pt;}
.x3b{left:621.961333pt;}
.x10{left:623.082667pt;}
.x1e{left:633.974667pt;}
.x7b{left:638.401333pt;}
.x9{left:645.722667pt;}
.xa{left:651.681333pt;}
}




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