
    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_df41db1f7498fda18d22eb39.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_830158630bf96ebc50e8ae67.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.898000;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_10b9313a1d3551f56cebf7c7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.848000;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_b176bdb9a87e406f212a3b86.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893000;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:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.v3{vertical-align:35.862000px;}
.ls3{letter-spacing:0.000000px;}
.lse{letter-spacing:2.211697px;}
.lsc{letter-spacing:10.640057px;}
.ls1{letter-spacing:14.941200px;}
.ls2{letter-spacing:14.943900px;}
.ls0{letter-spacing:14.945674px;}
.ls5{letter-spacing:15.422105px;}
.lsa{letter-spacing:18.769538px;}
.lsb{letter-spacing:21.220338px;}
.ls9{letter-spacing:28.034756px;}
.ls8{letter-spacing:36.522892px;}
.ls6{letter-spacing:43.516637px;}
.lsd{letter-spacing:49.135543px;}
.ls7{letter-spacing:79.919977px;}
.ls4{letter-spacing:176.338020px;}
.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;}
}
.wsc8{word-spacing:-206.225820px;}
.ws1c{word-spacing:-44.831700px;}
.wsd8{word-spacing:-35.865600px;}
.ws1{word-spacing:-35.865450px;}
.ws3{word-spacing:-33.473250px;}
.ws7{word-spacing:-29.887800px;}
.ws6{word-spacing:-23.910300px;}
.ws5{word-spacing:-21.818100px;}
.wsf0{word-spacing:-20.323704px;}
.ws34{word-spacing:-20.024826px;}
.wsf1{word-spacing:-19.965050px;}
.ws3f{word-spacing:-19.845499px;}
.ws56{word-spacing:-19.247743px;}
.wsaf{word-spacing:-19.128192px;}
.ws38{word-spacing:-18.948865px;}
.wsd0{word-spacing:-18.889090px;}
.ws24{word-spacing:-18.829314px;}
.wsed{word-spacing:-18.769538px;}
.wsd6{word-spacing:-18.470660px;}
.ws73{word-spacing:-18.410885px;}
.wsc1{word-spacing:-18.351109px;}
.ws92{word-spacing:-18.291334px;}
.ws2c{word-spacing:-18.231558px;}
.ws5b{word-spacing:-18.171782px;}
.ws8c{word-spacing:-17.992456px;}
.ws57{word-spacing:-17.932800px;}
.ws41{word-spacing:-17.753353px;}
.ws67{word-spacing:-17.693578px;}
.ws21{word-spacing:-17.633802px;}
.wsa9{word-spacing:-17.574026px;}
.ws75{word-spacing:-17.454475px;}
.wsd7{word-spacing:-17.394700px;}
.wsbb{word-spacing:-17.334924px;}
.ws5f{word-spacing:-17.275148px;}
.ws20{word-spacing:-17.155597px;}
.ws61{word-spacing:-17.095822px;}
.ws3e{word-spacing:-17.036046px;}
.ws4{word-spacing:-16.984575px;}
.ws35{word-spacing:-16.976270px;}
.ws4e{word-spacing:-16.916495px;}
.ws4d{word-spacing:-16.856719px;}
.ws93{word-spacing:-16.796944px;}
.ws99{word-spacing:-16.737168px;}
.ws22{word-spacing:-16.617617px;}
.ws25{word-spacing:-16.557841px;}
.ws44{word-spacing:-16.498066px;}
.ws28{word-spacing:-16.438290px;}
.ws9b{word-spacing:-16.378514px;}
.ws6f{word-spacing:-16.318739px;}
.ws2d{word-spacing:-16.258963px;}
.wsa7{word-spacing:-16.199188px;}
.ws2a{word-spacing:-16.139412px;}
.ws48{word-spacing:-16.079636px;}
.ws27{word-spacing:-16.019861px;}
.ws7f{word-spacing:-15.960085px;}
.ws55{word-spacing:-15.900310px;}
.ws1e{word-spacing:-15.780758px;}
.ws6e{word-spacing:-15.720983px;}
.ws31{word-spacing:-15.661207px;}
.ws43{word-spacing:-15.601432px;}
.ws8e{word-spacing:-15.541656px;}
.wsb8{word-spacing:-15.481880px;}
.ws3a{word-spacing:-15.422105px;}
.ws71{word-spacing:-15.302554px;}
.ws78{word-spacing:-15.242778px;}
.wsa1{word-spacing:-15.183002px;}
.ws60{word-spacing:-15.123227px;}
.ws95{word-spacing:-15.063451px;}
.wsdc{word-spacing:-15.003676px;}
.ws2{word-spacing:-14.943900px;}
.ws69{word-spacing:-14.884124px;}
.ws7e{word-spacing:-14.824349px;}
.ws8d{word-spacing:-14.764573px;}
.wsab{word-spacing:-14.704798px;}
.ws70{word-spacing:-14.645022px;}
.ws79{word-spacing:-14.585246px;}
.ws9e{word-spacing:-14.525471px;}
.ws81{word-spacing:-14.465695px;}
.wsb1{word-spacing:-14.405920px;}
.ws2f{word-spacing:-14.346144px;}
.ws63{word-spacing:-14.286368px;}
.wsc{word-spacing:-14.256576px;}
.ws5a{word-spacing:-14.226593px;}
.ws74{word-spacing:-14.166817px;}
.ws33{word-spacing:-14.107042px;}
.ws90{word-spacing:-14.047266px;}
.ws49{word-spacing:-13.987490px;}
.ws3d{word-spacing:-13.927715px;}
.ws76{word-spacing:-13.867939px;}
.wsa4{word-spacing:-13.808164px;}
.ws7d{word-spacing:-13.748388px;}
.wsbe{word-spacing:-13.688612px;}
.ws4b{word-spacing:-13.628837px;}
.wsaa{word-spacing:-13.569061px;}
.ws50{word-spacing:-13.509286px;}
.ws16{word-spacing:-13.449600px;}
.ws59{word-spacing:-13.449510px;}
.ws52{word-spacing:-13.389734px;}
.ws5c{word-spacing:-13.329959px;}
.ws40{word-spacing:-13.270183px;}
.ws91{word-spacing:-13.210408px;}
.ws3c{word-spacing:-13.150632px;}
.ws84{word-spacing:-13.031081px;}
.wscc{word-spacing:-12.971305px;}
.ws13{word-spacing:-12.911616px;}
.ws80{word-spacing:-12.911530px;}
.ws4c{word-spacing:-12.851754px;}
.ws47{word-spacing:-12.791978px;}
.ws2e{word-spacing:-12.732203px;}
.ws32{word-spacing:-12.672427px;}
.ws54{word-spacing:-12.612652px;}
.ws7a{word-spacing:-12.552876px;}
.ws9c{word-spacing:-12.493100px;}
.ws64{word-spacing:-12.433325px;}
.ws5e{word-spacing:-12.373549px;}
.wsbd{word-spacing:-12.253998px;}
.ws8{word-spacing:-12.212237px;}
.ws4f{word-spacing:-12.134447px;}
.wsa0{word-spacing:-12.074671px;}
.ws36{word-spacing:-12.014896px;}
.ws0{word-spacing:-11.955150px;}
.wse8{word-spacing:-11.955120px;}
.ws97{word-spacing:-11.895344px;}
.ws14{word-spacing:-11.889446px;}
.ws18{word-spacing:-11.835569px;}
.ws26{word-spacing:-11.775793px;}
.ws9a{word-spacing:-11.716018px;}
.ws77{word-spacing:-11.656242px;}
.ws46{word-spacing:-11.596466px;}
.ws23{word-spacing:-11.536691px;}
.ws7c{word-spacing:-11.476915px;}
.ws86{word-spacing:-11.417140px;}
.ws68{word-spacing:-11.357364px;}
.wsa{word-spacing:-11.351462px;}
.ws6b{word-spacing:-11.297588px;}
.ws72{word-spacing:-11.237813px;}
.wsac{word-spacing:-11.178037px;}
.wsb{word-spacing:-11.136269px;}
.wscf{word-spacing:-11.118262px;}
.ws96{word-spacing:-11.058486px;}
.wsa5{word-spacing:-10.998710px;}
.wsd3{word-spacing:-10.938935px;}
.ws2b{word-spacing:-10.819384px;}
.ws5d{word-spacing:-10.759608px;}
.wsb4{word-spacing:-10.699832px;}
.wsd2{word-spacing:-10.640057px;}
.ws11{word-spacing:-10.598285px;}
.ws51{word-spacing:-10.520506px;}
.wsae{word-spacing:-10.460730px;}
.ws53{word-spacing:-10.400954px;}
.wsb0{word-spacing:-10.281403px;}
.wsca{word-spacing:-10.221628px;}
.wsa3{word-spacing:-10.161852px;}
.ws62{word-spacing:-10.102076px;}
.wsb7{word-spacing:-10.042301px;}
.ws30{word-spacing:-9.922750px;}
.ws8a{word-spacing:-9.862974px;}
.ws10{word-spacing:-9.845107px;}
.wscd{word-spacing:-9.803198px;}
.wse{word-spacing:-9.737510px;}
.ws12{word-spacing:-9.683712px;}
.ws6c{word-spacing:-9.683647px;}
.ws8b{word-spacing:-9.623872px;}
.ws83{word-spacing:-9.564096px;}
.ws42{word-spacing:-9.504320px;}
.ws1f{word-spacing:-9.444545px;}
.ws37{word-spacing:-9.265218px;}
.ws4a{word-spacing:-9.205442px;}
.ws45{word-spacing:-9.145667px;}
.wsf6{word-spacing:-9.085891px;}
.ws39{word-spacing:-9.026116px;}
.ws85{word-spacing:-8.966340px;}
.wsf{word-spacing:-8.930534px;}
.wsce{word-spacing:-8.906564px;}
.wsb2{word-spacing:-8.846789px;}
.ws8f{word-spacing:-8.787013px;}
.wsec{word-spacing:-8.667462px;}
.ws65{word-spacing:-8.607686px;}
.ws7b{word-spacing:-8.428360px;}
.ws88{word-spacing:-8.368584px;}
.ws98{word-spacing:-8.308808px;}
.ws19{word-spacing:-8.249033px;}
.ws1a{word-spacing:-8.189257px;}
.wse0{word-spacing:-8.129482px;}
.ws58{word-spacing:-8.069706px;}
.ws9{word-spacing:-7.962163px;}
.ws1b{word-spacing:-7.890379px;}
.wsa2{word-spacing:-7.830604px;}
.wsc6{word-spacing:-7.711052px;}
.ws6a{word-spacing:-7.651277px;}
.wsb6{word-spacing:-7.591501px;}
.ws82{word-spacing:-7.292623px;}
.wsee{word-spacing:-7.232848px;}
.wse9{word-spacing:-7.173072px;}
.wsd4{word-spacing:-7.113296px;}
.wsb3{word-spacing:-7.053521px;}
.ws89{word-spacing:-6.993745px;}
.ws6d{word-spacing:-6.933970px;}
.ws3b{word-spacing:-6.874194px;}
.wscb{word-spacing:-6.754643px;}
.ws66{word-spacing:-6.694867px;}
.wsa8{word-spacing:-6.635092px;}
.ws9f{word-spacing:-6.575316px;}
.wsba{word-spacing:-6.515540px;}
.wsd{word-spacing:-6.402010px;}
.wsdd{word-spacing:-6.336214px;}
.ws94{word-spacing:-6.216662px;}
.ws29{word-spacing:-6.156887px;}
.ws15{word-spacing:-6.133018px;}
.wsb5{word-spacing:-6.097111px;}
.wsd1{word-spacing:-5.559131px;}
.wsad{word-spacing:-4.841824px;}
.wsc7{word-spacing:-4.602721px;}
.wse3{word-spacing:-4.423394px;}
.wsf7{word-spacing:-4.363619px;}
.ws87{word-spacing:-3.945190px;}
.wsa6{word-spacing:-3.765863px;}
.wsd5{word-spacing:-3.287658px;}
.wseb{word-spacing:-2.510575px;}
.wsf5{word-spacing:-2.151922px;}
.wse4{word-spacing:-1.793268px;}
.wsef{word-spacing:-1.613941px;}
.wsea{word-spacing:-0.717307px;}
.ws1d{word-spacing:0.000000px;}
.wse1{word-spacing:2.331248px;}
.wse2{word-spacing:6.694867px;}
.wsda{word-spacing:7.890379px;}
.wsd9{word-spacing:10.998710px;}
.wsf3{word-spacing:12.433325px;}
.wsf2{word-spacing:13.090856px;}
.wsdb{word-spacing:13.569061px;}
.wsf4{word-spacing:19.247743px;}
.wse6{word-spacing:23.252708px;}
.wse5{word-spacing:26.361040px;}
.ws9d{word-spacing:29.887800px;}
.wse7{word-spacing:32.816804px;}
.ws17{word-spacing:35.865600px;}
.wsde{word-spacing:37.060872px;}
.wsdf{word-spacing:50.091953px;}
.wsb9{word-spacing:70.893862px;}
.wsc3{word-spacing:106.221241px;}
.wsc4{word-spacing:121.165141px;}
.wsc5{word-spacing:121.224917px;}
.wsc2{word-spacing:251.749475px;}
.wsc9{word-spacing:512.276892px;}
.wsc0{word-spacing:537.502195px;}
.wsbf{word-spacing:604.809521px;}
.wsbc{word-spacing:857.720084px;}
._4b{margin-left:-176.338020px;}
._11{margin-left:-14.943900px;}
._6d{margin-left:-7.495858px;}
._1c{margin-left:-5.965636px;}
._4{margin-left:-4.959000px;}
._3{margin-left:-3.807720px;}
._0{margin-left:-2.391030px;}
._7{margin-left:-1.213443px;}
._1{width:1.673721px;}
._6{width:3.290017px;}
._19{width:10.938935px;}
._16{width:12.809907px;}
._14{width:14.286374px;}
._1e{width:15.362339px;}
._2{width:17.024134px;}
._8{width:18.219649px;}
._1a{width:19.223566px;}
._f{width:20.263928px;}
._13{width:21.818106px;}
._a{width:23.175115px;}
._c{width:25.117862px;}
._9{width:27.054598px;}
._18{width:28.769996px;}
._b{width:30.629299px;}
._15{width:32.290742px;}
._17{width:33.336866px;}
._25{width:34.864747px;}
._21{width:36.044687px;}
._e{width:37.120660px;}
._1d{width:38.352022px;}
._24{width:39.715204px;}
._10{width:41.382536px;}
._20{width:43.175926px;}
._5{width:44.197029px;}
._1b{width:46.744543px;}
._23{width:48.412136px;}
._6f{width:50.448232px;}
._22{width:52.410960px;}
._44{width:55.220730px;}
._d{width:59.775600px;}
._6c{width:66.649800px;}
._1f{width:71.731200px;}
._6e{width:79.740646px;}
._2a{width:92.472853px;}
._28{width:101.618520px;}
._26{width:108.253612px;}
._2b{width:113.812742px;}
._34{width:123.735492px;}
._48{width:136.467695px;}
._42{width:143.162568px;}
._2c{width:145.613362px;}
._2e{width:155.536111px;}
._49{width:157.389155px;}
._35{width:165.518636px;}
._45{width:172.392830px;}
._41{width:190.622044px;}
._46{width:224.756256px;}
._3f{width:238.223703px;}
._47{width:239.700156px;}
._65{width:269.665669px;}
._43{width:283.396132px;}
._3d{width:337.910989px;}
._3c{width:383.340455px;}
._3e{width:453.851739px;}
._39{width:457.838771px;}
._6b{width:476.190362px;}
._6a{width:489.920824px;}
._68{width:498.169862px;}
._64{width:511.061953px;}
._69{width:526.675305px;}
._3a{width:534.949301px;}
._33{width:550.413731px;}
._29{width:553.701389px;}
._36{width:568.585509px;}
._30{width:632.425860px;}
._66{width:649.778709px;}
._2f{width:653.287538px;}
._38{width:656.694263px;}
._60{width:665.242658px;}
._37{width:668.171663px;}
._31{width:680.640850px;}
._61{width:683.414437px;}
._4c{width:700.570038px;}
._3b{width:711.329166px;}
._5d{width:747.254788px;}
._5c{width:768.116466px;}
._63{width:771.523671px;}
._4e{width:779.294509px;}
._62{width:783.000590px;}
._32{width:787.113182px;}
._5e{width:795.469777px;}
._4d{width:800.156188px;}
._2d{width:802.726534px;}
._67{width:826.158574px;}
._4f{width:827.509499px;}
._5f{width:901.942110px;}
._51{width:903.508200px;}
._5b{width:917.555462px;}
._52{width:921.679978px;}
._50{width:933.981832px;}
._40{width:950.192938px;}
._54{width:1009.789213px;}
._55{width:1017.159541px;}
._53{width:1021.266132px;}
._27{width:1064.065450px;}
._56{width:1094.270071px;}
._57{width:1148.887044px;}
._58{width:1309.683398px;}
._59{width:1425.624148px;}
._12{width:1477.608719px;}
._5a{width:1538.743495px;}
._4a{width:1639.128967px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs4{font-size:43.636200px;}
.fs0{font-size:47.820600px;}
.fs6{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs7{font-size:71.731200px;}
.fs3{font-size:123.975000px;}
.fs1{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y2b{bottom:61.467000px;}
.y67{bottom:106.299000px;}
.y2a{bottom:108.657000px;}
.y119{bottom:109.794000px;}
.y203{bottom:110.085000px;}
.yff{bottom:112.236000px;}
.y64{bottom:116.286000px;}
.yda{bottom:118.111500px;}
.y96{bottom:123.585000px;}
.y126{bottom:124.231500px;}
.y29{bottom:126.591000px;}
.y118{bottom:127.726500px;}
.y202{bottom:128.017500px;}
.y226{bottom:129.114000px;}
.yfe{bottom:130.168500px;}
.y63{bottom:134.218500px;}
.yd9{bottom:136.044000px;}
.y150{bottom:137.445000px;}
.y66{bottom:139.699500px;}
.y95{bottom:141.517500px;}
.y125{bottom:142.164000px;}
.y28{bottom:144.523500px;}
.y135{bottom:145.575000px;}
.y117{bottom:145.659000px;}
.y201{bottom:145.950000px;}
.y225{bottom:147.046500px;}
.yfd{bottom:148.101000px;}
.y62{bottom:152.151000px;}
.y251{bottom:153.852000px;}
.yd8{bottom:153.976500px;}
.y14f{bottom:155.377500px;}
.y14b{bottom:157.128000px;}
.y94{bottom:159.450000px;}
.y1d4{bottom:160.098000px;}
.y27{bottom:162.456000px;}
.y116{bottom:163.591500px;}
.y200{bottom:163.882500px;}
.yfc{bottom:166.033500px;}
.y61{bottom:170.085000px;}
.y250{bottom:171.786000px;}
.yd7{bottom:171.909000px;}
.y14e{bottom:173.310000px;}
.y14a{bottom:175.060500px;}
.y224{bottom:176.935500px;}
.y93{bottom:177.382500px;}
.y1d3{bottom:178.030500px;}
.y115{bottom:181.525500px;}
.y1ff{bottom:181.815000px;}
.y124{bottom:182.937000px;}
.y60{bottom:188.017500px;}
.y24f{bottom:189.718500px;}
.yd6{bottom:189.843000px;}
.yea{bottom:191.155500px;}
.y14d{bottom:191.242500px;}
.y149{bottom:192.994500px;}
.y223{bottom:194.868000px;}
.y92{bottom:195.316500px;}
.y26{bottom:195.855000px;}
.y1d2{bottom:195.963000px;}
.y13c{bottom:197.931000px;}
.yfb{bottom:199.434000px;}
.y114{bottom:199.458000px;}
.y65{bottom:200.334000px;}
.y177{bottom:202.173000px;}
.y5f{bottom:205.950000px;}
.yd5{bottom:207.775500px;}
.ye9{bottom:209.088000px;}
.y148{bottom:210.927000px;}
.y222{bottom:212.800500px;}
.y91{bottom:213.249000px;}
.y1d1{bottom:213.895500px;}
.y1fe{bottom:215.215500px;}
.y113{bottom:217.390500px;}
.y24e{bottom:219.339000px;}
.y176{bottom:220.105500px;}
.y5e{bottom:223.882500px;}
.yd4{bottom:225.708000px;}
.ye8{bottom:227.020500px;}
.y147{bottom:228.859500px;}
.y25{bottom:230.974500px;}
.y90{bottom:231.181500px;}
.y1d0{bottom:231.828000px;}
.y14c{bottom:232.488000px;}
.y112{bottom:235.323000px;}
.y24d{bottom:237.271500px;}
.y175{bottom:238.038000px;}
.yfa{bottom:240.903000px;}
.y5d{bottom:241.815000px;}
.y221{bottom:242.688000px;}
.yd3{bottom:243.640500px;}
.ye7{bottom:244.953000px;}
.y146{bottom:246.792000px;}
.y8f{bottom:249.114000px;}
.y1cf{bottom:249.760500px;}
.y174{bottom:255.970500px;}
.y1fd{bottom:256.684500px;}
.yf9{bottom:258.835500px;}
.y1a2{bottom:259.566000px;}
.y5c{bottom:259.747500px;}
.y220{bottom:260.620500px;}
.yd2{bottom:261.573000px;}
.ye6{bottom:262.885500px;}
.y24c{bottom:266.892000px;}
.y8e{bottom:267.046500px;}
.y1ce{bottom:267.694500px;}
.y173{bottom:273.903000px;}
.y24{bottom:274.410000px;}
.y1fc{bottom:274.617000px;}
.y111{bottom:276.568500px;}
.yf8{bottom:276.768000px;}
.y1a1{bottom:277.498500px;}
.y5b{bottom:277.681500px;}
.yd1{bottom:279.505500px;}
.ye5{bottom:280.819500px;}
.y8d{bottom:284.980500px;}
.y1cd{bottom:285.627000px;}
.y145{bottom:288.037500px;}
.y21f{bottom:290.509500px;}
.y172{bottom:291.837000px;}
.y1a0{bottom:295.431000px;}
.y5a{bottom:295.614000px;}
.y24b{bottom:296.514000px;}
.yd0{bottom:297.439500px;}
.ye4{bottom:298.752000px;}
.y1fb{bottom:308.017500px;}
.y21e{bottom:308.442000px;}
.yf7{bottom:310.168500px;}
.y19f{bottom:313.363500px;}
.y59{bottom:313.546500px;}
.y24a{bottom:314.446500px;}
.ycf{bottom:315.372000px;}
.ye3{bottom:316.684500px;}
.y8c{bottom:318.379500px;}
.y1cc{bottom:329.244000px;}
.y19e{bottom:331.296000px;}
.y58{bottom:331.479000px;}
.yce{bottom:333.304500px;}
.y171{bottom:333.615000px;}
.ye2{bottom:334.617000px;}
.y1cb{bottom:338.211000px;}
.y21d{bottom:338.329500px;}
.y249{bottom:344.067000px;}
.y19d{bottom:349.230000px;}
.y57{bottom:349.411500px;}
.y1fa{bottom:349.486500px;}
.y23{bottom:349.800000px;}
.ycd{bottom:351.237000px;}
.yf6{bottom:351.637500px;}
.ye1{bottom:352.549500px;}
.y21c{bottom:356.262000px;}
.y170{bottom:359.049000px;}
.y8b{bottom:359.848500px;}
.y248{bottom:361.999500px;}
.y134{bottom:362.377500px;}
.y22{bottom:366.238500px;}
.y19c{bottom:367.162500px;}
.y56{bottom:367.344000px;}
.y1f9{bottom:367.419000px;}
.ycc{bottom:369.169500px;}
.ye0{bottom:370.483500px;}
.y1ca{bottom:372.610500px;}
.y8a{bottom:377.781000px;}
.y247{bottom:379.932000px;}
.y133{bottom:380.310000px;}
.y21{bottom:382.677000px;}
.yf5{bottom:385.036500px;}
.y19b{bottom:385.095000px;}
.y55{bottom:385.278000px;}
.y1f8{bottom:385.351500px;}
.y21b{bottom:386.151000px;}
.ycb{bottom:387.102000px;}
.ydf{bottom:388.416000px;}
.y1c9{bottom:390.544500px;}
.y89{bottom:395.715000px;}
.y16f{bottom:397.302000px;}
.y132{bottom:398.242500px;}
.y20{bottom:399.115500px;}
.y19a{bottom:403.027500px;}
.y54{bottom:403.210500px;}
.y1f7{bottom:403.284000px;}
.ybb{bottom:404.457000px;}
.yca{bottom:405.036000px;}
.yde{bottom:406.348500px;}
.y246{bottom:409.554000px;}
.y88{bottom:413.647500px;}
.y1f{bottom:415.554000px;}
.y1c8{bottom:415.978500px;}
.y21a{bottom:416.038500px;}
.y131{bottom:416.176500px;}
.y199{bottom:420.960000px;}
.y1f6{bottom:421.218000px;}
.yba{bottom:422.389500px;}
.yc9{bottom:422.968500px;}
.ydd{bottom:424.281000px;}
.y1c7{bottom:424.944000px;}
.yf4{bottom:426.507000px;}
.y245{bottom:427.486500px;}
.y16e{bottom:431.022000px;}
.y87{bottom:431.580000px;}
.y1e{bottom:431.992500px;}
.y219{bottom:433.971000px;}
.y130{bottom:434.109000px;}
.y53{bottom:436.609500px;}
.y198{bottom:438.892500px;}
.yb9{bottom:440.322000px;}
.yc8{bottom:440.901000px;}
.ydc{bottom:442.213500px;}
.yf3{bottom:444.439500px;}
.y15{bottom:448.431000px;}
.y16d{bottom:448.956000px;}
.y86{bottom:449.512500px;}
.y12f{bottom:452.041500px;}
.y1f5{bottom:454.617000px;}
.y197{bottom:456.826500px;}
.y244{bottom:457.107000px;}
.yb8{bottom:458.254500px;}
.yc7{bottom:458.833500px;}
.y1c6{bottom:459.345000px;}
.ydb{bottom:460.146000px;}
.yf2{bottom:462.372000px;}
.y14{bottom:462.627000px;}
.y218{bottom:463.858500px;}
.y1d{bottom:464.869500px;}
.y16c{bottom:466.888500px;}
.y85{bottom:467.445000px;}
.y12e{bottom:469.974000px;}
.y196{bottom:474.759000px;}
.yb7{bottom:476.187000px;}
.yc6{bottom:476.766000px;}
.y13{bottom:476.824500px;}
.y1c5{bottom:477.277500px;}
.y52{bottom:478.080000px;}
.y1c{bottom:481.306500px;}
.y217{bottom:481.791000px;}
.y16b{bottom:484.821000px;}
.y84{bottom:485.377500px;}
.y1c2{bottom:486.243000px;}
.y243{bottom:486.727500px;}
.y195{bottom:492.691500px;}
.yb6{bottom:494.119500px;}
.yc5{bottom:494.698500px;}
.y1c4{bottom:495.210000px;}
.yf1{bottom:495.771000px;}
.y51{bottom:496.012500px;}
.y1f4{bottom:496.086000px;}
.y1b{bottom:497.745000px;}
.y16a{bottom:502.753500px;}
.y83{bottom:503.311500px;}
.y12d{bottom:503.374500px;}
.y242{bottom:504.660000px;}
.y12{bottom:505.218000px;}
.y216{bottom:511.680000px;}
.yb5{bottom:512.053500px;}
.yc4{bottom:512.632500px;}
.y1c3{bottom:513.142500px;}
.y50{bottom:513.945000px;}
.y1f3{bottom:514.018500px;}
.y1a{bottom:514.183500px;}
.y169{bottom:520.686000px;}
.y82{bottom:521.244000px;}
.y241{bottom:522.594000px;}
.y123{bottom:523.032000px;}
.y215{bottom:529.612500px;}
.yb4{bottom:529.986000px;}
.yc3{bottom:530.565000px;}
.y19{bottom:530.622000px;}
.y4f{bottom:531.877500px;}
.y1f2{bottom:531.952500px;}
.yf0{bottom:537.241500px;}
.y194{bottom:537.705000px;}
.y1c1{bottom:538.576500px;}
.y168{bottom:538.620000px;}
.y122{bottom:540.964500px;}
.y11{bottom:541.830000px;}
.y12c{bottom:543.957000px;}
.y18{bottom:547.060500px;}
.y214{bottom:547.545000px;}
.yb3{bottom:547.918500px;}
.yc2{bottom:548.497500px;}
.y4e{bottom:549.810000px;}
.y1f1{bottom:549.885000px;}
.y240{bottom:552.214500px;}
.y81{bottom:554.643000px;}
.yef{bottom:555.174000px;}
.y193{bottom:555.637500px;}
.y10{bottom:556.027500px;}
.y1c0{bottom:556.509000px;}
.y167{bottom:556.552500px;}
.y121{bottom:558.897000px;}
.y12b{bottom:561.889500px;}
.y17{bottom:563.499000px;}
.y1bb{bottom:565.476000px;}
.yb2{bottom:565.851000px;}
.yc1{bottom:566.430000px;}
.y4d{bottom:567.742500px;}
.y1f0{bottom:567.817500px;}
.y23f{bottom:570.147000px;}
.yf{bottom:570.223500px;}
.yee{bottom:573.106500px;}
.y192{bottom:573.570000px;}
.y1bf{bottom:574.441500px;}
.y166{bottom:574.485000px;}
.y120{bottom:576.829500px;}
.y213{bottom:577.432500px;}
.y12a{bottom:579.822000px;}
.y16{bottom:579.937500px;}
.y1ba{bottom:583.408500px;}
.yb1{bottom:583.783500px;}
.yc0{bottom:584.362500px;}
.ye{bottom:584.421000px;}
.y4c{bottom:585.676500px;}
.y1ef{bottom:585.750000px;}
.yed{bottom:591.039000px;}
.y191{bottom:591.502500px;}
.y1be{bottom:592.375500px;}
.y165{bottom:592.417500px;}
.y11f{bottom:594.762000px;}
.y212{bottom:595.366500px;}
.y80{bottom:596.113500px;}
.y13b{bottom:596.863500px;}
.y129{bottom:597.754500px;}
.y23e{bottom:599.767500px;}
.y1b9{bottom:601.341000px;}
.yb0{bottom:601.716000px;}
.ybf{bottom:602.296500px;}
.y4b{bottom:603.609000px;}
.y1ee{bottom:603.682500px;}
.y190{bottom:609.436500px;}
.y1bd{bottom:610.308000px;}
.y164{bottom:610.350000px;}
.y11e{bottom:612.696000px;}
.yd{bottom:612.814500px;}
.y7f{bottom:614.046000px;}
.y13a{bottom:614.797500px;}
.y128{bottom:615.688500px;}
.y23d{bottom:617.700000px;}
.yaf{bottom:619.650000px;}
.ybe{bottom:620.229000px;}
.y4a{bottom:621.541500px;}
.y1ed{bottom:621.616500px;}
.yec{bottom:624.439500px;}
.y211{bottom:625.254000px;}
.y18f{bottom:627.369000px;}
.y1bc{bottom:628.240500px;}
.y163{bottom:628.282500px;}
.y11d{bottom:630.628500px;}
.y144{bottom:631.422000px;}
.y7e{bottom:631.978500px;}
.y139{bottom:632.730000px;}
.y23c{bottom:635.634000px;}
.yae{bottom:637.582500px;}
.ybd{bottom:638.161500px;}
.y49{bottom:639.474000px;}
.y1ec{bottom:639.549000px;}
.y210{bottom:643.186500px;}
.y18e{bottom:645.301500px;}
.y11c{bottom:648.561000px;}
.y143{bottom:649.354500px;}
.y7d{bottom:649.911000px;}
.y138{bottom:650.662500px;}
.y260{bottom:651.429000px;}
.y23b{bottom:653.566500px;}
.y1b8{bottom:653.674500px;}
.y127{bottom:654.963000px;}
.yad{bottom:655.515000px;}
.y48{bottom:657.406500px;}
.y1eb{bottom:657.481500px;}
.y20f{bottom:661.119000px;}
.y18d{bottom:663.234000px;}
.y11b{bottom:666.493500px;}
.y142{bottom:667.287000px;}
.y7c{bottom:667.843500px;}
.y137{bottom:668.595000px;}
.y25f{bottom:669.361500px;}
.y162{bottom:670.062000px;}
.y110{bottom:670.981500px;}
.yeb{bottom:671.289000px;}
.yac{bottom:673.447500px;}
.y47{bottom:675.339000px;}
.y1ea{bottom:675.414000px;}
.ybc{bottom:679.407000px;}
.y18c{bottom:681.166500px;}
.y23a{bottom:683.187000px;}
.y141{bottom:685.221000px;}
.y7b{bottom:685.776000px;}
.y25e{bottom:687.295500px;}
.y161{bottom:687.994500px;}
.y10f{bottom:688.914000px;}
.y20e{bottom:691.006500px;}
.yab{bottom:691.380000px;}
.y1b7{bottom:691.927500px;}
.y46{bottom:693.273000px;}
.y1e9{bottom:693.346500px;}
.y18b{bottom:699.099000px;}
.y239{bottom:701.119500px;}
.y140{bottom:703.153500px;}
.y7a{bottom:703.710000px;}
.yc{bottom:703.972500px;}
.y160{bottom:705.927000px;}
.y10e{bottom:706.848000px;}
.y11a{bottom:707.265000px;}
.y20d{bottom:708.940500px;}
.yaa{bottom:709.314000px;}
.y136{bottom:709.840500px;}
.y45{bottom:711.205500px;}
.y1e8{bottom:711.279000px;}
.y18a{bottom:717.033000px;}
.y25d{bottom:717.183000px;}
.y238{bottom:719.052000px;}
.y13f{bottom:721.086000px;}
.y79{bottom:721.642500px;}
.y15f{bottom:723.859500px;}
.y1b6{bottom:724.618500px;}
.y10d{bottom:724.780500px;}
.ya9{bottom:727.246500px;}
.y44{bottom:729.138000px;}
.y1e7{bottom:729.213000px;}
.yb{bottom:729.234000px;}
.y189{bottom:734.965500px;}
.y25c{bottom:735.115500px;}
.y20c{bottom:738.828000px;}
.y13e{bottom:739.018500px;}
.y78{bottom:739.575000px;}
.y15e{bottom:741.792000px;}
.y1b5{bottom:742.551000px;}
.y10c{bottom:742.713000px;}
.ya8{bottom:745.179000px;}
.y43{bottom:747.070500px;}
.y237{bottom:748.674000px;}
.ya{bottom:750.154500px;}
.y188{bottom:752.898000px;}
.y25b{bottom:753.048000px;}
.y20b{bottom:756.760500px;}
.y77{bottom:757.507500px;}
.y15d{bottom:759.724500px;}
.y10b{bottom:760.645500px;}
.y1e6{bottom:762.612000px;}
.ya7{bottom:763.111500px;}
.y42{bottom:765.003000px;}
.y236{bottom:766.606500px;}
.y187{bottom:770.830500px;}
.y9{bottom:771.220500px;}
.y20a{bottom:774.693000px;}
.y76{bottom:775.440000px;}
.y15c{bottom:777.658500px;}
.y10a{bottom:778.578000px;}
.y13d{bottom:780.264000px;}
.ya6{bottom:781.044000px;}
.y41{bottom:782.937000px;}
.y235{bottom:784.539000px;}
.y1b4{bottom:786.169500px;}
.y186{bottom:788.763000px;}
.y75{bottom:793.372500px;}
.y15b{bottom:795.591000px;}
.y109{bottom:796.512000px;}
.ya5{bottom:798.976500px;}
.y40{bottom:800.869500px;}
.y1e5{bottom:804.081000px;}
.y1b3{bottom:804.102000px;}
.y209{bottom:807.421500px;}
.y74{bottom:811.306500px;}
.y15a{bottom:813.523500px;}
.y234{bottom:814.159500px;}
.y185{bottom:814.197000px;}
.y8{bottom:814.404000px;}
.y108{bottom:814.444500px;}
.ya4{bottom:816.910500px;}
.y3f{bottom:818.802000px;}
.y1e4{bottom:822.015000px;}
.y1b2{bottom:822.034500px;}
.y73{bottom:829.239000px;}
.y184{bottom:830.367000px;}
.y25a{bottom:830.757000px;}
.y159{bottom:831.456000px;}
.y233{bottom:832.092000px;}
.y107{bottom:832.377000px;}
.y3e{bottom:836.734500px;}
.y1e3{bottom:839.947500px;}
.y1b1{bottom:839.967000px;}
.y7{bottom:843.576000px;}
.y72{bottom:847.171500px;}
.y259{bottom:848.689500px;}
.y158{bottom:849.388500px;}
.y232{bottom:850.024500px;}
.ya3{bottom:850.309500px;}
.y208{bottom:850.857000px;}
.y3d{bottom:854.667000px;}
.y1e2{bottom:857.880000px;}
.y1b0{bottom:857.899500px;}
.y71{bottom:865.104000px;}
.y258{bottom:866.622000px;}
.y157{bottom:867.321000px;}
.y106{bottom:868.242000px;}
.y3c{bottom:872.599500px;}
.y6{bottom:872.748000px;}
.y1e1{bottom:875.812500px;}
.y1af{bottom:875.832000px;}
.y183{bottom:877.585500px;}
.y231{bottom:879.646500px;}
.y70{bottom:883.036500px;}
.y207{bottom:884.256000px;}
.y156{bottom:885.255000px;}
.ya2{bottom:885.429000px;}
.y105{bottom:886.174500px;}
.y3b{bottom:890.533500px;}
.y1e0{bottom:893.745000px;}
.y1ae{bottom:893.766000px;}
.y257{bottom:896.511000px;}
.y230{bottom:897.579000px;}
.y155{bottom:903.187500px;}
.y104{bottom:904.108500px;}
.y3a{bottom:908.466000px;}
.y182{bottom:909.753000px;}
.y1df{bottom:911.677500px;}
.y1ad{bottom:911.698500px;}
.y5{bottom:913.611000px;}
.y256{bottom:914.443500px;}
.y22f{bottom:915.511500px;}
.y6f{bottom:916.437000px;}
.y154{bottom:921.120000px;}
.y103{bottom:922.041000px;}
.y206{bottom:925.726500px;}
.y39{bottom:926.398500px;}
.y181{bottom:927.685500px;}
.ya1{bottom:928.864500px;}
.y1de{bottom:929.611500px;}
.y1ac{bottom:929.631000px;}
.y153{bottom:939.052500px;}
.y102{bottom:939.973500px;}
.y205{bottom:943.659000px;}
.y38{bottom:944.331000px;}
.y22e{bottom:945.132000px;}
.y180{bottom:945.618000px;}
.ya0{bottom:946.797000px;}
.y1dd{bottom:947.544000px;}
.y1ab{bottom:947.563500px;}
.y6e{bottom:951.555000px;}
.y4{bottom:961.432500px;}
.y37{bottom:962.263500px;}
.y22d{bottom:963.064500px;}
.y17f{bottom:963.550500px;}
.y152{bottom:964.486500px;}
.y9f{bottom:964.729500px;}
.y1dc{bottom:965.476500px;}
.y1aa{bottom:965.496000px;}
.y101{bottom:973.372500px;}
.y204{bottom:977.058000px;}
.y36{bottom:980.196000px;}
.y22c{bottom:980.998500px;}
.y17e{bottom:981.483000px;}
.y9e{bottom:982.662000px;}
.y1db{bottom:983.409000px;}
.y1a9{bottom:983.430000px;}
.y6d{bottom:994.992000px;}
.y35{bottom:998.130000px;}
.y17d{bottom:999.417000px;}
.y9d{bottom:1000.594500px;}
.y1da{bottom:1001.341500px;}
.y1a8{bottom:1001.362500px;}
.y151{bottom:1002.739500px;}
.y100{bottom:1008.492000px;}
.y255{bottom:1010.085000px;}
.y22b{bottom:1010.619000px;}
.y3{bottom:1010.845500px;}
.y6c{bottom:1012.924500px;}
.y34{bottom:1016.062500px;}
.y9c{bottom:1018.528500px;}
.y1d9{bottom:1019.274000px;}
.y1a7{bottom:1019.295000px;}
.y254{bottom:1028.017500px;}
.y22a{bottom:1028.551500px;}
.y6b{bottom:1030.857000px;}
.y33{bottom:1033.995000px;}
.y9b{bottom:1036.461000px;}
.y1d8{bottom:1037.208000px;}
.y1a6{bottom:1037.227500px;}
.y2{bottom:1040.734500px;}
.y17c{bottom:1044.430500px;}
.y6a{bottom:1048.789500px;}
.y32{bottom:1051.927500px;}
.y9a{bottom:1054.393500px;}
.y1d7{bottom:1055.140500px;}
.y1a5{bottom:1055.160000px;}
.y253{bottom:1057.905000px;}
.y229{bottom:1058.172000px;}
.y17a{bottom:1062.363000px;}
.y69{bottom:1066.722000px;}
.y31{bottom:1069.860000px;}
.y99{bottom:1072.326000px;}
.y1d6{bottom:1073.073000px;}
.y252{bottom:1075.837500px;}
.y228{bottom:1076.104500px;}
.y1{bottom:1076.982000px;}
.y17b{bottom:1080.295500px;}
.y1a4{bottom:1080.594000px;}
.y30{bottom:1087.792500px;}
.y98{bottom:1090.258500px;}
.y227{bottom:1094.038500px;}
.y1a3{bottom:1096.762500px;}
.y68{bottom:1100.122500px;}
.y2f{bottom:1105.726500px;}
.y179{bottom:1105.729500px;}
.y1d5{bottom:1106.472000px;}
.y97{bottom:1108.192500px;}
.y2e{bottom:1123.659000px;}
.y2d{bottom:1141.591500px;}
.y178{bottom:1143.982500px;}
.y2c{bottom:1198.155000px;}
.h8{height:24.675533px;}
.hb{height:32.087623px;}
.he{height:32.804932px;}
.h2{height:32.900573px;}
.h4{height:33.091855px;}
.ha{height:37.013299px;}
.h5{height:41.006062px;}
.hd{height:41.125613px;}
.h9{height:41.364715px;}
.hc{height:49.637990px;}
.h7{height:51.892250px;}
.hf{height:76.987613px;}
.h11{height:76.993613px;}
.h10{height:77.232715px;}
.h6{height:85.790700px;}
.h3{height:99.275566px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:85.039500px;}
.x17{left:94.006500px;}
.x26{left:99.979500px;}
.x6{left:114.919500px;}
.x19{left:142.086000px;}
.x1f{left:171.435000px;}
.x1a{left:183.457500px;}
.x21{left:198.835500px;}
.x20{left:202.570500px;}
.x1c{left:242.965500px;}
.x16{left:244.182000px;}
.x14{left:246.625500px;}
.x13{left:254.950500px;}
.x15{left:256.690500px;}
.x12{left:263.349000px;}
.x10{left:281.422500px;}
.x3{left:287.424000px;}
.x2{left:292.750500px;}
.x5{left:301.891500px;}
.x25{left:303.277500px;}
.xb{left:307.896000px;}
.x8{left:309.405000px;}
.x11{left:321.540000px;}
.xf{left:325.687500px;}
.x9{left:334.227000px;}
.x22{left:337.545000px;}
.x1e{left:344.046000px;}
.x1b{left:346.242000px;}
.xd{left:348.192000px;}
.x1{left:355.240500px;}
.x18{left:359.662500px;}
.xa{left:364.585500px;}
.xc{left:365.803500px;}
.x24{left:378.595500px;}
.xe{left:430.272000px;}
.x7{left:434.008500px;}
.x1d{left:443.334000px;}
.x23{left:572.133000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.v3{vertical-align:31.877333pt;}
.ls3{letter-spacing:0.000000pt;}
.lse{letter-spacing:1.965953pt;}
.lsc{letter-spacing:9.457828pt;}
.ls1{letter-spacing:13.281067pt;}
.ls2{letter-spacing:13.283467pt;}
.ls0{letter-spacing:13.285043pt;}
.ls5{letter-spacing:13.708538pt;}
.lsa{letter-spacing:16.684034pt;}
.lsb{letter-spacing:18.862523pt;}
.ls9{letter-spacing:24.919783pt;}
.ls8{letter-spacing:32.464793pt;}
.ls6{letter-spacing:38.681455pt;}
.lsd{letter-spacing:43.676038pt;}
.ls7{letter-spacing:71.039980pt;}
.ls4{letter-spacing:156.744907pt;}
.wsc8{word-spacing:-183.311840pt;}
.ws1c{word-spacing:-39.850400pt;}
.wsd8{word-spacing:-31.880533pt;}
.ws1{word-spacing:-31.880400pt;}
.ws3{word-spacing:-29.754000pt;}
.ws7{word-spacing:-26.566933pt;}
.ws6{word-spacing:-21.253600pt;}
.ws5{word-spacing:-19.393867pt;}
.wsf0{word-spacing:-18.065515pt;}
.ws34{word-spacing:-17.799845pt;}
.wsf1{word-spacing:-17.746711pt;}
.ws3f{word-spacing:-17.640444pt;}
.ws56{word-spacing:-17.109105pt;}
.wsaf{word-spacing:-17.002837pt;}
.ws38{word-spacing:-16.843436pt;}
.wsd0{word-spacing:-16.790302pt;}
.ws24{word-spacing:-16.737168pt;}
.wsed{word-spacing:-16.684034pt;}
.wsd6{word-spacing:-16.418365pt;}
.ws73{word-spacing:-16.365231pt;}
.wsc1{word-spacing:-16.312097pt;}
.ws92{word-spacing:-16.258963pt;}
.ws2c{word-spacing:-16.205829pt;}
.ws5b{word-spacing:-16.152695pt;}
.ws8c{word-spacing:-15.993294pt;}
.ws57{word-spacing:-15.940267pt;}
.ws41{word-spacing:-15.780758pt;}
.ws67{word-spacing:-15.727625pt;}
.ws21{word-spacing:-15.674491pt;}
.wsa9{word-spacing:-15.621357pt;}
.ws75{word-spacing:-15.515089pt;}
.wsd7{word-spacing:-15.461955pt;}
.wsbb{word-spacing:-15.408821pt;}
.ws5f{word-spacing:-15.355687pt;}
.ws20{word-spacing:-15.249420pt;}
.ws61{word-spacing:-15.196286pt;}
.ws3e{word-spacing:-15.143152pt;}
.ws4{word-spacing:-15.097400pt;}
.ws35{word-spacing:-15.090018pt;}
.ws4e{word-spacing:-15.036884pt;}
.ws4d{word-spacing:-14.983750pt;}
.ws93{word-spacing:-14.930617pt;}
.ws99{word-spacing:-14.877483pt;}
.ws22{word-spacing:-14.771215pt;}
.ws25{word-spacing:-14.718081pt;}
.ws44{word-spacing:-14.664947pt;}
.ws28{word-spacing:-14.611813pt;}
.ws9b{word-spacing:-14.558679pt;}
.ws6f{word-spacing:-14.505546pt;}
.ws2d{word-spacing:-14.452412pt;}
.wsa7{word-spacing:-14.399278pt;}
.ws2a{word-spacing:-14.346144pt;}
.ws48{word-spacing:-14.293010pt;}
.ws27{word-spacing:-14.239876pt;}
.ws7f{word-spacing:-14.186742pt;}
.ws55{word-spacing:-14.133609pt;}
.ws1e{word-spacing:-14.027341pt;}
.ws6e{word-spacing:-13.974207pt;}
.ws31{word-spacing:-13.921073pt;}
.ws43{word-spacing:-13.867939pt;}
.ws8e{word-spacing:-13.814805pt;}
.wsb8{word-spacing:-13.761671pt;}
.ws3a{word-spacing:-13.708538pt;}
.ws71{word-spacing:-13.602270pt;}
.ws78{word-spacing:-13.549136pt;}
.wsa1{word-spacing:-13.496002pt;}
.ws60{word-spacing:-13.442868pt;}
.ws95{word-spacing:-13.389734pt;}
.wsdc{word-spacing:-13.336601pt;}
.ws2{word-spacing:-13.283467pt;}
.ws69{word-spacing:-13.230333pt;}
.ws7e{word-spacing:-13.177199pt;}
.ws8d{word-spacing:-13.124065pt;}
.wsab{word-spacing:-13.070931pt;}
.ws70{word-spacing:-13.017797pt;}
.ws79{word-spacing:-12.964663pt;}
.ws9e{word-spacing:-12.911530pt;}
.ws81{word-spacing:-12.858396pt;}
.wsb1{word-spacing:-12.805262pt;}
.ws2f{word-spacing:-12.752128pt;}
.ws63{word-spacing:-12.698994pt;}
.wsc{word-spacing:-12.672512pt;}
.ws5a{word-spacing:-12.645860pt;}
.ws74{word-spacing:-12.592726pt;}
.ws33{word-spacing:-12.539593pt;}
.ws90{word-spacing:-12.486459pt;}
.ws49{word-spacing:-12.433325pt;}
.ws3d{word-spacing:-12.380191pt;}
.ws76{word-spacing:-12.327057pt;}
.wsa4{word-spacing:-12.273923pt;}
.ws7d{word-spacing:-12.220789pt;}
.wsbe{word-spacing:-12.167655pt;}
.ws4b{word-spacing:-12.114522pt;}
.wsaa{word-spacing:-12.061388pt;}
.ws50{word-spacing:-12.008254pt;}
.ws16{word-spacing:-11.955200pt;}
.ws59{word-spacing:-11.955120pt;}
.ws52{word-spacing:-11.901986pt;}
.ws5c{word-spacing:-11.848852pt;}
.ws40{word-spacing:-11.795718pt;}
.ws91{word-spacing:-11.742585pt;}
.ws3c{word-spacing:-11.689451pt;}
.ws84{word-spacing:-11.583183pt;}
.wscc{word-spacing:-11.530049pt;}
.ws13{word-spacing:-11.476992pt;}
.ws80{word-spacing:-11.476915pt;}
.ws4c{word-spacing:-11.423781pt;}
.ws47{word-spacing:-11.370647pt;}
.ws2e{word-spacing:-11.317514pt;}
.ws32{word-spacing:-11.264380pt;}
.ws54{word-spacing:-11.211246pt;}
.ws7a{word-spacing:-11.158112pt;}
.ws9c{word-spacing:-11.104978pt;}
.ws64{word-spacing:-11.051844pt;}
.ws5e{word-spacing:-10.998710pt;}
.wsbd{word-spacing:-10.892443pt;}
.ws8{word-spacing:-10.855322pt;}
.ws4f{word-spacing:-10.786175pt;}
.wsa0{word-spacing:-10.733041pt;}
.ws36{word-spacing:-10.679907pt;}
.ws0{word-spacing:-10.626800pt;}
.wse8{word-spacing:-10.626773pt;}
.ws97{word-spacing:-10.573639pt;}
.ws14{word-spacing:-10.568397pt;}
.ws18{word-spacing:-10.520506pt;}
.ws26{word-spacing:-10.467372pt;}
.ws9a{word-spacing:-10.414238pt;}
.ws77{word-spacing:-10.361104pt;}
.ws46{word-spacing:-10.307970pt;}
.ws23{word-spacing:-10.254836pt;}
.ws7c{word-spacing:-10.201702pt;}
.ws86{word-spacing:-10.148569pt;}
.ws68{word-spacing:-10.095435pt;}
.wsa{word-spacing:-10.090189pt;}
.ws6b{word-spacing:-10.042301pt;}
.ws72{word-spacing:-9.989167pt;}
.wsac{word-spacing:-9.936033pt;}
.wsb{word-spacing:-9.898906pt;}
.wscf{word-spacing:-9.882899pt;}
.ws96{word-spacing:-9.829765pt;}
.wsa5{word-spacing:-9.776631pt;}
.wsd3{word-spacing:-9.723498pt;}
.ws2b{word-spacing:-9.617230pt;}
.ws5d{word-spacing:-9.564096pt;}
.wsb4{word-spacing:-9.510962pt;}
.wsd2{word-spacing:-9.457828pt;}
.ws11{word-spacing:-9.420698pt;}
.ws51{word-spacing:-9.351561pt;}
.wsae{word-spacing:-9.298427pt;}
.ws53{word-spacing:-9.245293pt;}
.wsb0{word-spacing:-9.139025pt;}
.wsca{word-spacing:-9.085891pt;}
.wsa3{word-spacing:-9.032757pt;}
.ws62{word-spacing:-8.979623pt;}
.wsb7{word-spacing:-8.926490pt;}
.ws30{word-spacing:-8.820222pt;}
.ws8a{word-spacing:-8.767088pt;}
.ws10{word-spacing:-8.751206pt;}
.wscd{word-spacing:-8.713954pt;}
.wse{word-spacing:-8.655565pt;}
.ws12{word-spacing:-8.607744pt;}
.ws6c{word-spacing:-8.607686pt;}
.ws8b{word-spacing:-8.554553pt;}
.ws83{word-spacing:-8.501419pt;}
.ws42{word-spacing:-8.448285pt;}
.ws1f{word-spacing:-8.395151pt;}
.ws37{word-spacing:-8.235749pt;}
.ws4a{word-spacing:-8.182615pt;}
.ws45{word-spacing:-8.129482pt;}
.wsf6{word-spacing:-8.076348pt;}
.ws39{word-spacing:-8.023214pt;}
.ws85{word-spacing:-7.970080pt;}
.wsf{word-spacing:-7.938253pt;}
.wsce{word-spacing:-7.916946pt;}
.wsb2{word-spacing:-7.863812pt;}
.ws8f{word-spacing:-7.810678pt;}
.wsec{word-spacing:-7.704411pt;}
.ws65{word-spacing:-7.651277pt;}
.ws7b{word-spacing:-7.491875pt;}
.ws88{word-spacing:-7.438741pt;}
.ws98{word-spacing:-7.385607pt;}
.ws19{word-spacing:-7.332474pt;}
.ws1a{word-spacing:-7.279340pt;}
.wse0{word-spacing:-7.226206pt;}
.ws58{word-spacing:-7.173072pt;}
.ws9{word-spacing:-7.077478pt;}
.ws1b{word-spacing:-7.013670pt;}
.wsa2{word-spacing:-6.960537pt;}
.wsc6{word-spacing:-6.854269pt;}
.ws6a{word-spacing:-6.801135pt;}
.wsb6{word-spacing:-6.748001pt;}
.ws82{word-spacing:-6.482332pt;}
.wsee{word-spacing:-6.429198pt;}
.wse9{word-spacing:-6.376064pt;}
.wsd4{word-spacing:-6.322930pt;}
.wsb3{word-spacing:-6.269796pt;}
.ws89{word-spacing:-6.216662pt;}
.ws6d{word-spacing:-6.163529pt;}
.ws3b{word-spacing:-6.110395pt;}
.wscb{word-spacing:-6.004127pt;}
.ws66{word-spacing:-5.950993pt;}
.wsa8{word-spacing:-5.897859pt;}
.ws9f{word-spacing:-5.844725pt;}
.wsba{word-spacing:-5.791591pt;}
.wsd{word-spacing:-5.690675pt;}
.wsdd{word-spacing:-5.632190pt;}
.ws94{word-spacing:-5.525922pt;}
.ws29{word-spacing:-5.472788pt;}
.ws15{word-spacing:-5.451571pt;}
.wsb5{word-spacing:-5.419654pt;}
.wsd1{word-spacing:-4.941450pt;}
.wsad{word-spacing:-4.303843pt;}
.wsc7{word-spacing:-4.091308pt;}
.wse3{word-spacing:-3.931906pt;}
.wsf7{word-spacing:-3.878772pt;}
.ws87{word-spacing:-3.506835pt;}
.wsa6{word-spacing:-3.347434pt;}
.wsd5{word-spacing:-2.922363pt;}
.wseb{word-spacing:-2.231622pt;}
.wsf5{word-spacing:-1.912819pt;}
.wse4{word-spacing:-1.594016pt;}
.wsef{word-spacing:-1.434614pt;}
.wsea{word-spacing:-0.637606pt;}
.ws1d{word-spacing:0.000000pt;}
.wse1{word-spacing:2.072221pt;}
.wse2{word-spacing:5.950993pt;}
.wsda{word-spacing:7.013670pt;}
.wsd9{word-spacing:9.776631pt;}
.wsf3{word-spacing:11.051844pt;}
.wsf2{word-spacing:11.636317pt;}
.wsdb{word-spacing:12.061388pt;}
.wsf4{word-spacing:17.109105pt;}
.wse6{word-spacing:20.669074pt;}
.wse5{word-spacing:23.432035pt;}
.ws9d{word-spacing:26.566933pt;}
.wse7{word-spacing:29.170493pt;}
.ws17{word-spacing:31.880533pt;}
.wsde{word-spacing:32.942997pt;}
.wsdf{word-spacing:44.526180pt;}
.wsb9{word-spacing:63.016766pt;}
.wsc3{word-spacing:94.418881pt;}
.wsc4{word-spacing:107.702348pt;}
.wsc5{word-spacing:107.755482pt;}
.wsc2{word-spacing:223.777311pt;}
.wsc9{word-spacing:455.357237pt;}
.wsc0{word-spacing:477.779729pt;}
.wsbf{word-spacing:537.608463pt;}
.wsbc{word-spacing:762.417853pt;}
._4b{margin-left:-156.744907pt;}
._11{margin-left:-13.283467pt;}
._6d{margin-left:-6.662985pt;}
._1c{margin-left:-5.302787pt;}
._4{margin-left:-4.408000pt;}
._3{margin-left:-3.384640pt;}
._0{margin-left:-2.125360pt;}
._7{margin-left:-1.078616pt;}
._1{width:1.487752pt;}
._6{width:2.924460pt;}
._19{width:9.723498pt;}
._16{width:11.386584pt;}
._14{width:12.698999pt;}
._1e{width:13.655412pt;}
._2{width:15.132563pt;}
._8{width:16.195243pt;}
._1a{width:17.087614pt;}
._f{width:18.012381pt;}
._13{width:19.393872pt;}
._a{width:20.600102pt;}
._c{width:22.326989pt;}
._9{width:24.048531pt;}
._18{width:25.573330pt;}
._b{width:27.226043pt;}
._15{width:28.702882pt;}
._17{width:29.632770pt;}
._25{width:30.990886pt;}
._21{width:32.039722pt;}
._e{width:32.996142pt;}
._1d{width:34.090686pt;}
._24{width:35.302404pt;}
._10{width:36.784477pt;}
._20{width:38.378601pt;}
._5{width:39.286248pt;}
._1b{width:41.550705pt;}
._23{width:43.033010pt;}
._6f{width:44.842873pt;}
._22{width:46.587520pt;}
._44{width:49.085093pt;}
._d{width:53.133867pt;}
._6c{width:59.244267pt;}
._1f{width:63.761067pt;}
._6e{width:70.880574pt;}
._2a{width:82.198092pt;}
._28{width:90.327573pt;}
._26{width:96.225433pt;}
._2b{width:101.166882pt;}
._34{width:109.987104pt;}
._48{width:121.304618pt;}
._42{width:127.255616pt;}
._2c{width:129.434099pt;}
._2e{width:138.254321pt;}
._49{width:139.901471pt;}
._35{width:147.127677pt;}
._45{width:153.238071pt;}
._41{width:169.441817pt;}
._46{width:199.783339pt;}
._3f{width:211.754403pt;}
._47{width:213.066805pt;}
._65{width:239.702817pt;}
._43{width:251.907673pt;}
._3d{width:300.365323pt;}
._3c{width:340.747071pt;}
._3e{width:403.423768pt;}
._39{width:406.967797pt;}
._6b{width:423.280322pt;}
._6a{width:435.485177pt;}
._68{width:442.817655pt;}
._64{width:454.277292pt;}
._69{width:468.155827pt;}
._3a{width:475.510490pt;}
._33{width:489.256650pt;}
._29{width:492.179012pt;}
._36{width:505.409341pt;}
._30{width:562.156320pt;}
._66{width:577.581075pt;}
._2f{width:580.700034pt;}
._38{width:583.728234pt;}
._60{width:591.326807pt;}
._37{width:593.930367pt;}
._31{width:605.014089pt;}
._61{width:607.479499pt;}
._4c{width:622.728923pt;}
._3b{width:632.292592pt;}
._5d{width:664.226478pt;}
._5c{width:682.770192pt;}
._63{width:685.798819pt;}
._4e{width:692.706230pt;}
._62{width:696.000525pt;}
._32{width:699.656162pt;}
._5e{width:707.084246pt;}
._4d{width:711.249945pt;}
._2d{width:713.534697pt;}
._67{width:734.363177pt;}
._4f{width:735.563999pt;}
._5f{width:801.726320pt;}
._51{width:803.118400pt;}
._5b{width:815.604855pt;}
._52{width:819.271092pt;}
._50{width:830.206073pt;}
._40{width:844.615945pt;}
._54{width:897.590411pt;}
._55{width:904.141814pt;}
._53{width:907.792117pt;}
._27{width:945.835955pt;}
._56{width:972.684507pt;}
._57{width:1021.232928pt;}
._58{width:1164.163020pt;}
._59{width:1267.221465pt;}
._12{width:1313.429973pt;}
._5a{width:1367.771996pt;}
._4a{width:1457.003526pt;}
.fs5{font-size:31.880533pt;}
.fs4{font-size:38.787733pt;}
.fs0{font-size:42.507200pt;}
.fs6{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs7{font-size:63.761067pt;}
.fs3{font-size:110.200000pt;}
.fs1{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:54.637333pt;}
.y67{bottom:94.488000pt;}
.y2a{bottom:96.584000pt;}
.y119{bottom:97.594667pt;}
.y203{bottom:97.853333pt;}
.yff{bottom:99.765333pt;}
.y64{bottom:103.365333pt;}
.yda{bottom:104.988000pt;}
.y96{bottom:109.853333pt;}
.y126{bottom:110.428000pt;}
.y29{bottom:112.525333pt;}
.y118{bottom:113.534667pt;}
.y202{bottom:113.793333pt;}
.y226{bottom:114.768000pt;}
.yfe{bottom:115.705333pt;}
.y63{bottom:119.305333pt;}
.yd9{bottom:120.928000pt;}
.y150{bottom:122.173333pt;}
.y66{bottom:124.177333pt;}
.y95{bottom:125.793333pt;}
.y125{bottom:126.368000pt;}
.y28{bottom:128.465333pt;}
.y135{bottom:129.400000pt;}
.y117{bottom:129.474667pt;}
.y201{bottom:129.733333pt;}
.y225{bottom:130.708000pt;}
.yfd{bottom:131.645333pt;}
.y62{bottom:135.245333pt;}
.y251{bottom:136.757333pt;}
.yd8{bottom:136.868000pt;}
.y14f{bottom:138.113333pt;}
.y14b{bottom:139.669333pt;}
.y94{bottom:141.733333pt;}
.y1d4{bottom:142.309333pt;}
.y27{bottom:144.405333pt;}
.y116{bottom:145.414667pt;}
.y200{bottom:145.673333pt;}
.yfc{bottom:147.585333pt;}
.y61{bottom:151.186667pt;}
.y250{bottom:152.698667pt;}
.yd7{bottom:152.808000pt;}
.y14e{bottom:154.053333pt;}
.y14a{bottom:155.609333pt;}
.y224{bottom:157.276000pt;}
.y93{bottom:157.673333pt;}
.y1d3{bottom:158.249333pt;}
.y115{bottom:161.356000pt;}
.y1ff{bottom:161.613333pt;}
.y124{bottom:162.610667pt;}
.y60{bottom:167.126667pt;}
.y24f{bottom:168.638667pt;}
.yd6{bottom:168.749333pt;}
.yea{bottom:169.916000pt;}
.y14d{bottom:169.993333pt;}
.y149{bottom:171.550667pt;}
.y223{bottom:173.216000pt;}
.y92{bottom:173.614667pt;}
.y26{bottom:174.093333pt;}
.y1d2{bottom:174.189333pt;}
.y13c{bottom:175.938667pt;}
.yfb{bottom:177.274667pt;}
.y114{bottom:177.296000pt;}
.y65{bottom:178.074667pt;}
.y177{bottom:179.709333pt;}
.y5f{bottom:183.066667pt;}
.yd5{bottom:184.689333pt;}
.ye9{bottom:185.856000pt;}
.y148{bottom:187.490667pt;}
.y222{bottom:189.156000pt;}
.y91{bottom:189.554667pt;}
.y1d1{bottom:190.129333pt;}
.y1fe{bottom:191.302667pt;}
.y113{bottom:193.236000pt;}
.y24e{bottom:194.968000pt;}
.y176{bottom:195.649333pt;}
.y5e{bottom:199.006667pt;}
.yd4{bottom:200.629333pt;}
.ye8{bottom:201.796000pt;}
.y147{bottom:203.430667pt;}
.y25{bottom:205.310667pt;}
.y90{bottom:205.494667pt;}
.y1d0{bottom:206.069333pt;}
.y14c{bottom:206.656000pt;}
.y112{bottom:209.176000pt;}
.y24d{bottom:210.908000pt;}
.y175{bottom:211.589333pt;}
.yfa{bottom:214.136000pt;}
.y5d{bottom:214.946667pt;}
.y221{bottom:215.722667pt;}
.yd3{bottom:216.569333pt;}
.ye7{bottom:217.736000pt;}
.y146{bottom:219.370667pt;}
.y8f{bottom:221.434667pt;}
.y1cf{bottom:222.009333pt;}
.y174{bottom:227.529333pt;}
.y1fd{bottom:228.164000pt;}
.yf9{bottom:230.076000pt;}
.y1a2{bottom:230.725333pt;}
.y5c{bottom:230.886667pt;}
.y220{bottom:231.662667pt;}
.yd2{bottom:232.509333pt;}
.ye6{bottom:233.676000pt;}
.y24c{bottom:237.237333pt;}
.y8e{bottom:237.374667pt;}
.y1ce{bottom:237.950667pt;}
.y173{bottom:243.469333pt;}
.y24{bottom:243.920000pt;}
.y1fc{bottom:244.104000pt;}
.y111{bottom:245.838667pt;}
.yf8{bottom:246.016000pt;}
.y1a1{bottom:246.665333pt;}
.y5b{bottom:246.828000pt;}
.yd1{bottom:248.449333pt;}
.ye5{bottom:249.617333pt;}
.y8d{bottom:253.316000pt;}
.y1cd{bottom:253.890667pt;}
.y145{bottom:256.033333pt;}
.y21f{bottom:258.230667pt;}
.y172{bottom:259.410667pt;}
.y1a0{bottom:262.605333pt;}
.y5a{bottom:262.768000pt;}
.y24b{bottom:263.568000pt;}
.yd0{bottom:264.390667pt;}
.ye4{bottom:265.557333pt;}
.y1fb{bottom:273.793333pt;}
.y21e{bottom:274.170667pt;}
.yf7{bottom:275.705333pt;}
.y19f{bottom:278.545333pt;}
.y59{bottom:278.708000pt;}
.y24a{bottom:279.508000pt;}
.ycf{bottom:280.330667pt;}
.ye3{bottom:281.497333pt;}
.y8c{bottom:283.004000pt;}
.y1cc{bottom:292.661333pt;}
.y19e{bottom:294.485333pt;}
.y58{bottom:294.648000pt;}
.yce{bottom:296.270667pt;}
.y171{bottom:296.546667pt;}
.ye2{bottom:297.437333pt;}
.y1cb{bottom:300.632000pt;}
.y21d{bottom:300.737333pt;}
.y249{bottom:305.837333pt;}
.y19d{bottom:310.426667pt;}
.y57{bottom:310.588000pt;}
.y1fa{bottom:310.654667pt;}
.y23{bottom:310.933333pt;}
.ycd{bottom:312.210667pt;}
.yf6{bottom:312.566667pt;}
.ye1{bottom:313.377333pt;}
.y21c{bottom:316.677333pt;}
.y170{bottom:319.154667pt;}
.y8b{bottom:319.865333pt;}
.y248{bottom:321.777333pt;}
.y134{bottom:322.113333pt;}
.y22{bottom:325.545333pt;}
.y19c{bottom:326.366667pt;}
.y56{bottom:326.528000pt;}
.y1f9{bottom:326.594667pt;}
.ycc{bottom:328.150667pt;}
.ye0{bottom:329.318667pt;}
.y1ca{bottom:331.209333pt;}
.y8a{bottom:335.805333pt;}
.y247{bottom:337.717333pt;}
.y133{bottom:338.053333pt;}
.y21{bottom:340.157333pt;}
.yf5{bottom:342.254667pt;}
.y19b{bottom:342.306667pt;}
.y55{bottom:342.469333pt;}
.y1f8{bottom:342.534667pt;}
.y21b{bottom:343.245333pt;}
.ycb{bottom:344.090667pt;}
.ydf{bottom:345.258667pt;}
.y1c9{bottom:347.150667pt;}
.y89{bottom:351.746667pt;}
.y16f{bottom:353.157333pt;}
.y132{bottom:353.993333pt;}
.y20{bottom:354.769333pt;}
.y19a{bottom:358.246667pt;}
.y54{bottom:358.409333pt;}
.y1f7{bottom:358.474667pt;}
.ybb{bottom:359.517333pt;}
.yca{bottom:360.032000pt;}
.yde{bottom:361.198667pt;}
.y246{bottom:364.048000pt;}
.y88{bottom:367.686667pt;}
.y1f{bottom:369.381333pt;}
.y1c8{bottom:369.758667pt;}
.y21a{bottom:369.812000pt;}
.y131{bottom:369.934667pt;}
.y199{bottom:374.186667pt;}
.y1f6{bottom:374.416000pt;}
.yba{bottom:375.457333pt;}
.yc9{bottom:375.972000pt;}
.ydd{bottom:377.138667pt;}
.y1c7{bottom:377.728000pt;}
.yf4{bottom:379.117333pt;}
.y245{bottom:379.988000pt;}
.y16e{bottom:383.130667pt;}
.y87{bottom:383.626667pt;}
.y1e{bottom:383.993333pt;}
.y219{bottom:385.752000pt;}
.y130{bottom:385.874667pt;}
.y53{bottom:388.097333pt;}
.y198{bottom:390.126667pt;}
.yb9{bottom:391.397333pt;}
.yc8{bottom:391.912000pt;}
.ydc{bottom:393.078667pt;}
.yf3{bottom:395.057333pt;}
.y15{bottom:398.605333pt;}
.y16d{bottom:399.072000pt;}
.y86{bottom:399.566667pt;}
.y12f{bottom:401.814667pt;}
.y1f5{bottom:404.104000pt;}
.y197{bottom:406.068000pt;}
.y244{bottom:406.317333pt;}
.yb8{bottom:407.337333pt;}
.yc7{bottom:407.852000pt;}
.y1c6{bottom:408.306667pt;}
.ydb{bottom:409.018667pt;}
.yf2{bottom:410.997333pt;}
.y14{bottom:411.224000pt;}
.y218{bottom:412.318667pt;}
.y1d{bottom:413.217333pt;}
.y16c{bottom:415.012000pt;}
.y85{bottom:415.506667pt;}
.y12e{bottom:417.754667pt;}
.y196{bottom:422.008000pt;}
.yb7{bottom:423.277333pt;}
.yc6{bottom:423.792000pt;}
.y13{bottom:423.844000pt;}
.y1c5{bottom:424.246667pt;}
.y52{bottom:424.960000pt;}
.y1c{bottom:427.828000pt;}
.y217{bottom:428.258667pt;}
.y16b{bottom:430.952000pt;}
.y84{bottom:431.446667pt;}
.y1c2{bottom:432.216000pt;}
.y243{bottom:432.646667pt;}
.y195{bottom:437.948000pt;}
.yb6{bottom:439.217333pt;}
.yc5{bottom:439.732000pt;}
.y1c4{bottom:440.186667pt;}
.yf1{bottom:440.685333pt;}
.y51{bottom:440.900000pt;}
.y1f4{bottom:440.965333pt;}
.y1b{bottom:442.440000pt;}
.y16a{bottom:446.892000pt;}
.y83{bottom:447.388000pt;}
.y12d{bottom:447.444000pt;}
.y242{bottom:448.586667pt;}
.y12{bottom:449.082667pt;}
.y216{bottom:454.826667pt;}
.yb5{bottom:455.158667pt;}
.yc4{bottom:455.673333pt;}
.y1c3{bottom:456.126667pt;}
.y50{bottom:456.840000pt;}
.y1f3{bottom:456.905333pt;}
.y1a{bottom:457.052000pt;}
.y169{bottom:462.832000pt;}
.y82{bottom:463.328000pt;}
.y241{bottom:464.528000pt;}
.y123{bottom:464.917333pt;}
.y215{bottom:470.766667pt;}
.yb4{bottom:471.098667pt;}
.yc3{bottom:471.613333pt;}
.y19{bottom:471.664000pt;}
.y4f{bottom:472.780000pt;}
.y1f2{bottom:472.846667pt;}
.yf0{bottom:477.548000pt;}
.y194{bottom:477.960000pt;}
.y1c1{bottom:478.734667pt;}
.y168{bottom:478.773333pt;}
.y122{bottom:480.857333pt;}
.y11{bottom:481.626667pt;}
.y12c{bottom:483.517333pt;}
.y18{bottom:486.276000pt;}
.y214{bottom:486.706667pt;}
.yb3{bottom:487.038667pt;}
.yc2{bottom:487.553333pt;}
.y4e{bottom:488.720000pt;}
.y1f1{bottom:488.786667pt;}
.y240{bottom:490.857333pt;}
.y81{bottom:493.016000pt;}
.yef{bottom:493.488000pt;}
.y193{bottom:493.900000pt;}
.y10{bottom:494.246667pt;}
.y1c0{bottom:494.674667pt;}
.y167{bottom:494.713333pt;}
.y121{bottom:496.797333pt;}
.y12b{bottom:499.457333pt;}
.y17{bottom:500.888000pt;}
.y1bb{bottom:502.645333pt;}
.yb2{bottom:502.978667pt;}
.yc1{bottom:503.493333pt;}
.y4d{bottom:504.660000pt;}
.y1f0{bottom:504.726667pt;}
.y23f{bottom:506.797333pt;}
.yf{bottom:506.865333pt;}
.yee{bottom:509.428000pt;}
.y192{bottom:509.840000pt;}
.y1bf{bottom:510.614667pt;}
.y166{bottom:510.653333pt;}
.y120{bottom:512.737333pt;}
.y213{bottom:513.273333pt;}
.y12a{bottom:515.397333pt;}
.y16{bottom:515.500000pt;}
.y1ba{bottom:518.585333pt;}
.yb1{bottom:518.918667pt;}
.yc0{bottom:519.433333pt;}
.ye{bottom:519.485333pt;}
.y4c{bottom:520.601333pt;}
.y1ef{bottom:520.666667pt;}
.yed{bottom:525.368000pt;}
.y191{bottom:525.780000pt;}
.y1be{bottom:526.556000pt;}
.y165{bottom:526.593333pt;}
.y11f{bottom:528.677333pt;}
.y212{bottom:529.214667pt;}
.y80{bottom:529.878667pt;}
.y13b{bottom:530.545333pt;}
.y129{bottom:531.337333pt;}
.y23e{bottom:533.126667pt;}
.y1b9{bottom:534.525333pt;}
.yb0{bottom:534.858667pt;}
.ybf{bottom:535.374667pt;}
.y4b{bottom:536.541333pt;}
.y1ee{bottom:536.606667pt;}
.y190{bottom:541.721333pt;}
.y1bd{bottom:542.496000pt;}
.y164{bottom:542.533333pt;}
.y11e{bottom:544.618667pt;}
.yd{bottom:544.724000pt;}
.y7f{bottom:545.818667pt;}
.y13a{bottom:546.486667pt;}
.y128{bottom:547.278667pt;}
.y23d{bottom:549.066667pt;}
.yaf{bottom:550.800000pt;}
.ybe{bottom:551.314667pt;}
.y4a{bottom:552.481333pt;}
.y1ed{bottom:552.548000pt;}
.yec{bottom:555.057333pt;}
.y211{bottom:555.781333pt;}
.y18f{bottom:557.661333pt;}
.y1bc{bottom:558.436000pt;}
.y163{bottom:558.473333pt;}
.y11d{bottom:560.558667pt;}
.y144{bottom:561.264000pt;}
.y7e{bottom:561.758667pt;}
.y139{bottom:562.426667pt;}
.y23c{bottom:565.008000pt;}
.yae{bottom:566.740000pt;}
.ybd{bottom:567.254667pt;}
.y49{bottom:568.421333pt;}
.y1ec{bottom:568.488000pt;}
.y210{bottom:571.721333pt;}
.y18e{bottom:573.601333pt;}
.y11c{bottom:576.498667pt;}
.y143{bottom:577.204000pt;}
.y7d{bottom:577.698667pt;}
.y138{bottom:578.366667pt;}
.y260{bottom:579.048000pt;}
.y23b{bottom:580.948000pt;}
.y1b8{bottom:581.044000pt;}
.y127{bottom:582.189333pt;}
.yad{bottom:582.680000pt;}
.y48{bottom:584.361333pt;}
.y1eb{bottom:584.428000pt;}
.y20f{bottom:587.661333pt;}
.y18d{bottom:589.541333pt;}
.y11b{bottom:592.438667pt;}
.y142{bottom:593.144000pt;}
.y7c{bottom:593.638667pt;}
.y137{bottom:594.306667pt;}
.y25f{bottom:594.988000pt;}
.y162{bottom:595.610667pt;}
.y110{bottom:596.428000pt;}
.yeb{bottom:596.701333pt;}
.yac{bottom:598.620000pt;}
.y47{bottom:600.301333pt;}
.y1ea{bottom:600.368000pt;}
.ybc{bottom:603.917333pt;}
.y18c{bottom:605.481333pt;}
.y23a{bottom:607.277333pt;}
.y141{bottom:609.085333pt;}
.y7b{bottom:609.578667pt;}
.y25e{bottom:610.929333pt;}
.y161{bottom:611.550667pt;}
.y10f{bottom:612.368000pt;}
.y20e{bottom:614.228000pt;}
.yab{bottom:614.560000pt;}
.y1b7{bottom:615.046667pt;}
.y46{bottom:616.242667pt;}
.y1e9{bottom:616.308000pt;}
.y18b{bottom:621.421333pt;}
.y239{bottom:623.217333pt;}
.y140{bottom:625.025333pt;}
.y7a{bottom:625.520000pt;}
.yc{bottom:625.753333pt;}
.y160{bottom:627.490667pt;}
.y10e{bottom:628.309333pt;}
.y11a{bottom:628.680000pt;}
.y20d{bottom:630.169333pt;}
.yaa{bottom:630.501333pt;}
.y136{bottom:630.969333pt;}
.y45{bottom:632.182667pt;}
.y1e8{bottom:632.248000pt;}
.y18a{bottom:637.362667pt;}
.y25d{bottom:637.496000pt;}
.y238{bottom:639.157333pt;}
.y13f{bottom:640.965333pt;}
.y79{bottom:641.460000pt;}
.y15f{bottom:643.430667pt;}
.y1b6{bottom:644.105333pt;}
.y10d{bottom:644.249333pt;}
.ya9{bottom:646.441333pt;}
.y44{bottom:648.122667pt;}
.y1e7{bottom:648.189333pt;}
.yb{bottom:648.208000pt;}
.y189{bottom:653.302667pt;}
.y25c{bottom:653.436000pt;}
.y20c{bottom:656.736000pt;}
.y13e{bottom:656.905333pt;}
.y78{bottom:657.400000pt;}
.y15e{bottom:659.370667pt;}
.y1b5{bottom:660.045333pt;}
.y10c{bottom:660.189333pt;}
.ya8{bottom:662.381333pt;}
.y43{bottom:664.062667pt;}
.y237{bottom:665.488000pt;}
.ya{bottom:666.804000pt;}
.y188{bottom:669.242667pt;}
.y25b{bottom:669.376000pt;}
.y20b{bottom:672.676000pt;}
.y77{bottom:673.340000pt;}
.y15d{bottom:675.310667pt;}
.y10b{bottom:676.129333pt;}
.y1e6{bottom:677.877333pt;}
.ya7{bottom:678.321333pt;}
.y42{bottom:680.002667pt;}
.y236{bottom:681.428000pt;}
.y187{bottom:685.182667pt;}
.y9{bottom:685.529333pt;}
.y20a{bottom:688.616000pt;}
.y76{bottom:689.280000pt;}
.y15c{bottom:691.252000pt;}
.y10a{bottom:692.069333pt;}
.y13d{bottom:693.568000pt;}
.ya6{bottom:694.261333pt;}
.y41{bottom:695.944000pt;}
.y235{bottom:697.368000pt;}
.y1b4{bottom:698.817333pt;}
.y186{bottom:701.122667pt;}
.y75{bottom:705.220000pt;}
.y15b{bottom:707.192000pt;}
.y109{bottom:708.010667pt;}
.ya5{bottom:710.201333pt;}
.y40{bottom:711.884000pt;}
.y1e5{bottom:714.738667pt;}
.y1b3{bottom:714.757333pt;}
.y209{bottom:717.708000pt;}
.y74{bottom:721.161333pt;}
.y15a{bottom:723.132000pt;}
.y234{bottom:723.697333pt;}
.y185{bottom:723.730667pt;}
.y8{bottom:723.914667pt;}
.y108{bottom:723.950667pt;}
.ya4{bottom:726.142667pt;}
.y3f{bottom:727.824000pt;}
.y1e4{bottom:730.680000pt;}
.y1b2{bottom:730.697333pt;}
.y73{bottom:737.101333pt;}
.y184{bottom:738.104000pt;}
.y25a{bottom:738.450667pt;}
.y159{bottom:739.072000pt;}
.y233{bottom:739.637333pt;}
.y107{bottom:739.890667pt;}
.y3e{bottom:743.764000pt;}
.y1e3{bottom:746.620000pt;}
.y1b1{bottom:746.637333pt;}
.y7{bottom:749.845333pt;}
.y72{bottom:753.041333pt;}
.y259{bottom:754.390667pt;}
.y158{bottom:755.012000pt;}
.y232{bottom:755.577333pt;}
.ya3{bottom:755.830667pt;}
.y208{bottom:756.317333pt;}
.y3d{bottom:759.704000pt;}
.y1e2{bottom:762.560000pt;}
.y1b0{bottom:762.577333pt;}
.y71{bottom:768.981333pt;}
.y258{bottom:770.330667pt;}
.y157{bottom:770.952000pt;}
.y106{bottom:771.770667pt;}
.y3c{bottom:775.644000pt;}
.y6{bottom:775.776000pt;}
.y1e1{bottom:778.500000pt;}
.y1af{bottom:778.517333pt;}
.y183{bottom:780.076000pt;}
.y231{bottom:781.908000pt;}
.y70{bottom:784.921333pt;}
.y207{bottom:786.005333pt;}
.y156{bottom:786.893333pt;}
.ya2{bottom:787.048000pt;}
.y105{bottom:787.710667pt;}
.y3b{bottom:791.585333pt;}
.y1e0{bottom:794.440000pt;}
.y1ae{bottom:794.458667pt;}
.y257{bottom:796.898667pt;}
.y230{bottom:797.848000pt;}
.y155{bottom:802.833333pt;}
.y104{bottom:803.652000pt;}
.y3a{bottom:807.525333pt;}
.y182{bottom:808.669333pt;}
.y1df{bottom:810.380000pt;}
.y1ad{bottom:810.398667pt;}
.y5{bottom:812.098667pt;}
.y256{bottom:812.838667pt;}
.y22f{bottom:813.788000pt;}
.y6f{bottom:814.610667pt;}
.y154{bottom:818.773333pt;}
.y103{bottom:819.592000pt;}
.y206{bottom:822.868000pt;}
.y39{bottom:823.465333pt;}
.y181{bottom:824.609333pt;}
.ya1{bottom:825.657333pt;}
.y1de{bottom:826.321333pt;}
.y1ac{bottom:826.338667pt;}
.y153{bottom:834.713333pt;}
.y102{bottom:835.532000pt;}
.y205{bottom:838.808000pt;}
.y38{bottom:839.405333pt;}
.y22e{bottom:840.117333pt;}
.y180{bottom:840.549333pt;}
.ya0{bottom:841.597333pt;}
.y1dd{bottom:842.261333pt;}
.y1ab{bottom:842.278667pt;}
.y6e{bottom:845.826667pt;}
.y4{bottom:854.606667pt;}
.y37{bottom:855.345333pt;}
.y22d{bottom:856.057333pt;}
.y17f{bottom:856.489333pt;}
.y152{bottom:857.321333pt;}
.y9f{bottom:857.537333pt;}
.y1dc{bottom:858.201333pt;}
.y1aa{bottom:858.218667pt;}
.y101{bottom:865.220000pt;}
.y204{bottom:868.496000pt;}
.y36{bottom:871.285333pt;}
.y22c{bottom:871.998667pt;}
.y17e{bottom:872.429333pt;}
.y9e{bottom:873.477333pt;}
.y1db{bottom:874.141333pt;}
.y1a9{bottom:874.160000pt;}
.y6d{bottom:884.437333pt;}
.y35{bottom:887.226667pt;}
.y17d{bottom:888.370667pt;}
.y9d{bottom:889.417333pt;}
.y1da{bottom:890.081333pt;}
.y1a8{bottom:890.100000pt;}
.y151{bottom:891.324000pt;}
.y100{bottom:896.437333pt;}
.y255{bottom:897.853333pt;}
.y22b{bottom:898.328000pt;}
.y3{bottom:898.529333pt;}
.y6c{bottom:900.377333pt;}
.y34{bottom:903.166667pt;}
.y9c{bottom:905.358667pt;}
.y1d9{bottom:906.021333pt;}
.y1a7{bottom:906.040000pt;}
.y254{bottom:913.793333pt;}
.y22a{bottom:914.268000pt;}
.y6b{bottom:916.317333pt;}
.y33{bottom:919.106667pt;}
.y9b{bottom:921.298667pt;}
.y1d8{bottom:921.962667pt;}
.y1a6{bottom:921.980000pt;}
.y2{bottom:925.097333pt;}
.y17c{bottom:928.382667pt;}
.y6a{bottom:932.257333pt;}
.y32{bottom:935.046667pt;}
.y9a{bottom:937.238667pt;}
.y1d7{bottom:937.902667pt;}
.y1a5{bottom:937.920000pt;}
.y253{bottom:940.360000pt;}
.y229{bottom:940.597333pt;}
.y17a{bottom:944.322667pt;}
.y69{bottom:948.197333pt;}
.y31{bottom:950.986667pt;}
.y99{bottom:953.178667pt;}
.y1d6{bottom:953.842667pt;}
.y252{bottom:956.300000pt;}
.y228{bottom:956.537333pt;}
.y1{bottom:957.317333pt;}
.y17b{bottom:960.262667pt;}
.y1a4{bottom:960.528000pt;}
.y30{bottom:966.926667pt;}
.y98{bottom:969.118667pt;}
.y227{bottom:972.478667pt;}
.y1a3{bottom:974.900000pt;}
.y68{bottom:977.886667pt;}
.y2f{bottom:982.868000pt;}
.y179{bottom:982.870667pt;}
.y1d5{bottom:983.530667pt;}
.y97{bottom:985.060000pt;}
.y2e{bottom:998.808000pt;}
.y2d{bottom:1014.748000pt;}
.y178{bottom:1016.873333pt;}
.y2c{bottom:1065.026667pt;}
.h8{height:21.933807pt;}
.hb{height:28.522331pt;}
.he{height:29.159939pt;}
.h2{height:29.244954pt;}
.h4{height:29.414982pt;}
.ha{height:32.900710pt;}
.h5{height:36.449833pt;}
.hd{height:36.556100pt;}
.h9{height:36.768636pt;}
.hc{height:44.122658pt;}
.h7{height:46.126445pt;}
.hf{height:68.433434pt;}
.h11{height:68.438767pt;}
.h10{height:68.651302pt;}
.h6{height:76.258400pt;}
.h3{height:88.244947pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:75.590667pt;}
.x17{left:83.561333pt;}
.x26{left:88.870667pt;}
.x6{left:102.150667pt;}
.x19{left:126.298667pt;}
.x1f{left:152.386667pt;}
.x1a{left:163.073333pt;}
.x21{left:176.742667pt;}
.x20{left:180.062667pt;}
.x1c{left:215.969333pt;}
.x16{left:217.050667pt;}
.x14{left:219.222667pt;}
.x13{left:226.622667pt;}
.x15{left:228.169333pt;}
.x12{left:234.088000pt;}
.x10{left:250.153333pt;}
.x3{left:255.488000pt;}
.x2{left:260.222667pt;}
.x5{left:268.348000pt;}
.x25{left:269.580000pt;}
.xb{left:273.685333pt;}
.x8{left:275.026667pt;}
.x11{left:285.813333pt;}
.xf{left:289.500000pt;}
.x9{left:297.090667pt;}
.x22{left:300.040000pt;}
.x1e{left:305.818667pt;}
.x1b{left:307.770667pt;}
.xd{left:309.504000pt;}
.x1{left:315.769333pt;}
.x18{left:319.700000pt;}
.xa{left:324.076000pt;}
.xc{left:325.158667pt;}
.x24{left:336.529333pt;}
.xe{left:382.464000pt;}
.x7{left:385.785333pt;}
.x1d{left:394.074667pt;}
.x23{left:508.562667pt;}
}




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