
    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_4209ac23a79a0695f3477448.woff')format("woff");}.ff1{font-family:ff1;line-height:0.729000;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_6b05b33f5cb28f8dd6928a12.woff')format("woff");}.ff2{font-family:ff2;line-height:0.716000;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_943fed9dabde635d6b82d3be.woff')format("woff");}.ff3{font-family:ff3;line-height:0.901000;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_3748e0ae46ad7b0045828f12.woff')format("woff");}.ff4{font-family:ff4;line-height:0.874000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_0dbcc50b5cbea732de465546.woff')format("woff");}.ff5{font-family:ff5;line-height:0.719000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e49209c51c4d372dea3e2ef4.woff')format("woff");}.ff6{font-family:ff6;line-height:0.696000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_457c5b69fb60a400290697d3.woff')format("woff");}.ff7{font-family:ff7;line-height:0.902000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6d3fd2ea2790f67eb36d31a9.woff')format("woff");}.ff8{font-family:ff8;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_da53c002674a085d755a173d.woff')format("woff");}.ff9{font-family:ff9;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_687714a558516e3fa91b0f46.woff')format("woff");}.ffa{font-family:ffa;line-height:0.902000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_b74abc532f420d80fee933df.woff')format("woff");}.ffb{font-family:ffb;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ec97917495795b21ec55b8ab.woff')format("woff");}.ffc{font-family:ffc;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_3586510d8032596eac0f51db.woff')format("woff");}.ffd{font-family:ffd;line-height:0.703000;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_1a7fec0b6e7a354c4e8f7883.woff')format("woff");}.ffe{font-family:ffe;line-height:0.923000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.034000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:26.394479px;}
.ls2{letter-spacing:34.789645px;}
.ls4{letter-spacing:35.118328px;}
.ls1{letter-spacing:35.865600px;}
.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;}
}
.ws12{word-spacing:-55.726250px;}
.ws23{word-spacing:-52.901760px;}
.ws20{word-spacing:-40.277069px;}
.ws6e{word-spacing:-35.112422px;}
.wsce{word-spacing:-19.188096px;}
.wsc3{word-spacing:-19.116365px;}
.wse0{word-spacing:-19.044634px;}
.ws38{word-spacing:-18.972902px;}
.ws39{word-spacing:-18.901171px;}
.ws66{word-spacing:-18.685978px;}
.ws1b{word-spacing:-18.644278px;}
.ws63{word-spacing:-18.542515px;}
.ws5a{word-spacing:-18.540986px;}
.wsa3{word-spacing:-18.399053px;}
.ws85{word-spacing:-18.255590px;}
.ws7c{word-spacing:-17.968666px;}
.wsb7{word-spacing:-17.896934px;}
.ws14{word-spacing:-17.681741px;}
.ws9c{word-spacing:-17.538278px;}
.ws78{word-spacing:-17.466547px;}
.ws68{word-spacing:-17.394816px;}
.ws97{word-spacing:-17.323085px;}
.ws74{word-spacing:-17.036160px;}
.wsbb{word-spacing:-16.892698px;}
.ws99{word-spacing:-16.820966px;}
.ws92{word-spacing:-16.749235px;}
.ws1{word-spacing:-16.692052px;}
.ws60{word-spacing:-16.605773px;}
.ws2c{word-spacing:-16.534042px;}
.ws86{word-spacing:-16.390579px;}
.ws18{word-spacing:-16.175386px;}
.ws57{word-spacing:-15.816730px;}
.ws81{word-spacing:-15.744998px;}
.ws16{word-spacing:-15.673267px;}
.ws42{word-spacing:-15.601536px;}
.wsa2{word-spacing:-15.529805px;}
.wsa9{word-spacing:-15.458074px;}
.ws5c{word-spacing:-15.386342px;}
.ws6c{word-spacing:-15.242880px;}
.ws75{word-spacing:-14.955955px;}
.ws8d{word-spacing:-14.884224px;}
.wscb{word-spacing:-14.812493px;}
.ws9d{word-spacing:-14.669030px;}
.wsbd{word-spacing:-14.597299px;}
.ws89{word-spacing:-14.534753px;}
.ws5f{word-spacing:-14.525568px;}
.wsf{word-spacing:-14.310374px;}
.ws56{word-spacing:-14.238643px;}
.ws95{word-spacing:-14.095181px;}
.ws84{word-spacing:-13.879987px;}
.wsaa{word-spacing:-13.808256px;}
.wsc2{word-spacing:-13.736525px;}
.wsaf{word-spacing:-13.664794px;}
.wsac{word-spacing:-13.593062px;}
.ws3d{word-spacing:-13.521331px;}
.ws15{word-spacing:-13.449600px;}
.ws1a{word-spacing:-13.442427px;}
.wsa8{word-spacing:-13.377869px;}
.ws19{word-spacing:-13.306138px;}
.ws67{word-spacing:-13.234406px;}
.ws40{word-spacing:-13.162675px;}
.wsc5{word-spacing:-13.090944px;}
.ws4e{word-spacing:-12.947482px;}
.wsa4{word-spacing:-12.804019px;}
.ws71{word-spacing:-12.732288px;}
.ws6f{word-spacing:-12.660557px;}
.ws48{word-spacing:-12.588826px;}
.ws53{word-spacing:-12.517094px;}
.ws17{word-spacing:-12.301901px;}
.ws41{word-spacing:-12.230170px;}
.ws44{word-spacing:-12.158438px;}
.ws3f{word-spacing:-12.086707px;}
.wsb1{word-spacing:-11.943245px;}
.ws13{word-spacing:-11.871514px;}
.ws4b{word-spacing:-11.799782px;}
.wsb{word-spacing:-11.728051px;}
.ws76{word-spacing:-11.656320px;}
.wsa6{word-spacing:-11.584589px;}
.ws98{word-spacing:-11.512858px;}
.wsbc{word-spacing:-11.441126px;}
.ws2f{word-spacing:-11.369395px;}
.ws7e{word-spacing:-11.225933px;}
.ws73{word-spacing:-11.154202px;}
.wsc7{word-spacing:-11.082470px;}
.wsc1{word-spacing:-11.010739px;}
.wsc0{word-spacing:-10.939008px;}
.wsbf{word-spacing:-10.867277px;}
.wsc{word-spacing:-10.652083px;}
.ws34{word-spacing:-10.580352px;}
.ws70{word-spacing:-10.508621px;}
.ws31{word-spacing:-10.436890px;}
.ws29{word-spacing:-10.365158px;}
.ws45{word-spacing:-10.293427px;}
.wscf{word-spacing:-10.149965px;}
.wsa1{word-spacing:-10.006502px;}
.ws2b{word-spacing:-9.863040px;}
.ws79{word-spacing:-9.791309px;}
.wsa7{word-spacing:-9.719578px;}
.ws4c{word-spacing:-9.647846px;}
.ws94{word-spacing:-9.576115px;}
.wsb0{word-spacing:-9.504384px;}
.wsb9{word-spacing:-9.360922px;}
.ws6d{word-spacing:-9.217459px;}
.ws47{word-spacing:-9.145728px;}
.wsd1{word-spacing:-9.073997px;}
.ws32{word-spacing:-9.002266px;}
.wsc6{word-spacing:-8.930534px;}
.ws8e{word-spacing:-8.858803px;}
.ws8f{word-spacing:-8.571878px;}
.ws7a{word-spacing:-8.500147px;}
.wsd{word-spacing:-8.428416px;}
.ws82{word-spacing:-8.421243px;}
.ws4a{word-spacing:-8.356685px;}
.ws43{word-spacing:-8.141491px;}
.ws58{word-spacing:-8.069760px;}
.ws8{word-spacing:-7.998029px;}
.wsbe{word-spacing:-7.926298px;}
.wsa{word-spacing:-7.854566px;}
.wsde{word-spacing:-7.782835px;}
.ws8c{word-spacing:-7.711104px;}
.wsad{word-spacing:-7.639373px;}
.ws64{word-spacing:-7.567642px;}
.ws8b{word-spacing:-7.495910px;}
.ws90{word-spacing:-7.424179px;}
.ws83{word-spacing:-7.352448px;}
.ws2d{word-spacing:-7.280717px;}
.ws11{word-spacing:-7.208986px;}
.ws3a{word-spacing:-7.137254px;}
.ws3c{word-spacing:-6.993792px;}
.ws5d{word-spacing:-6.922061px;}
.ws4f{word-spacing:-6.850330px;}
.ws55{word-spacing:-6.706867px;}
.ws3e{word-spacing:-6.635136px;}
.ws77{word-spacing:-6.563405px;}
.ws93{word-spacing:-6.419942px;}
.ws33{word-spacing:-6.276480px;}
.ws4d{word-spacing:-6.204749px;}
.ws52{word-spacing:-6.133018px;}
.ws28{word-spacing:-5.774362px;}
.wsc4{word-spacing:-5.702630px;}
.ws2e{word-spacing:-5.630899px;}
.ws35{word-spacing:-5.487437px;}
.ws9{word-spacing:-5.415706px;}
.ws36{word-spacing:-5.343974px;}
.ws69{word-spacing:-5.272243px;}
.ws37{word-spacing:-5.057050px;}
.wsa0{word-spacing:-4.985318px;}
.ws96{word-spacing:-4.841856px;}
.wsda{word-spacing:-4.770125px;}
.wse{word-spacing:-4.698394px;}
.wsba{word-spacing:-4.626662px;}
.ws6b{word-spacing:-4.411469px;}
.ws7f{word-spacing:-4.268006px;}
.ws30{word-spacing:-4.052813px;}
.wsca{word-spacing:-3.837619px;}
.wsc8{word-spacing:-3.694157px;}
.ws59{word-spacing:-3.478963px;}
.ws5e{word-spacing:-3.263770px;}
.wsb8{word-spacing:-3.192038px;}
.ws10{word-spacing:-3.120307px;}
.ws80{word-spacing:-3.048576px;}
.ws61{word-spacing:-2.976845px;}
.ws26{word-spacing:-2.833382px;}
.ws9b{word-spacing:-2.761651px;}
.ws46{word-spacing:-2.546458px;}
.ws49{word-spacing:-2.402995px;}
.ws9e{word-spacing:-2.259533px;}
.wscc{word-spacing:-2.116070px;}
.ws91{word-spacing:-1.900877px;}
.ws72{word-spacing:-1.829146px;}
.ws62{word-spacing:-1.757414px;}
.wsd2{word-spacing:-1.327027px;}
.ws2a{word-spacing:-1.183565px;}
.wsae{word-spacing:-1.040102px;}
.wscd{word-spacing:-0.968371px;}
.wsdc{word-spacing:-0.824909px;}
.wsc9{word-spacing:-0.681446px;}
.ws7d{word-spacing:-0.609715px;}
.wsa5{word-spacing:-0.394522px;}
.ws51{word-spacing:-0.322790px;}
.ws27{word-spacing:-0.251059px;}
.ws7b{word-spacing:-0.107597px;}
.ws5{word-spacing:-0.086077px;}
.ws88{word-spacing:-0.071731px;}
.wsd0{word-spacing:-0.035866px;}
.ws7{word-spacing:0.000000px;}
.ws1f{word-spacing:0.753178px;}
.ws6a{word-spacing:2.187802px;}
.wsd9{word-spacing:2.618189px;}
.wsd3{word-spacing:3.407232px;}
.wsd6{word-spacing:7.065523px;}
.ws8a{word-spacing:20.509459px;}
.ws9f{word-spacing:22.362332px;}
.wse1{word-spacing:23.025715px;}
.wsb6{word-spacing:23.318054px;}
.wsb3{word-spacing:23.323459px;}
.wsb5{word-spacing:23.323757px;}
.wsb4{word-spacing:23.329162px;}
.ws65{word-spacing:23.355827px;}
.wsab{word-spacing:23.356404px;}
.ws9a{word-spacing:23.361827px;}
.wsb2{word-spacing:23.362404px;}
.ws87{word-spacing:23.804650px;}
.ws54{word-spacing:24.316877px;}
.ws1e{word-spacing:24.646840px;}
.wse2{word-spacing:25.034189px;}
.wse3{word-spacing:25.134542px;}
.ws6{word-spacing:27.200395px;}
.ws4{word-spacing:27.211479px;}
.wsdf{word-spacing:29.696717px;}
.wsd5{word-spacing:29.768448px;}
.wsdb{word-spacing:31.346534px;}
.ws3b{word-spacing:31.418178px;}
.ws5b{word-spacing:31.504255px;}
.wsd7{word-spacing:33.068083px;}
.ws3{word-spacing:33.742262px;}
.wsdd{word-spacing:35.004826px;}
.ws24{word-spacing:35.112422px;}
.ws50{word-spacing:35.506944px;}
.wsd8{word-spacing:38.160998px;}
.wsd4{word-spacing:38.950042px;}
.ws0{word-spacing:40.787775px;}
.ws2{word-spacing:51.755465px;}
.ws25{word-spacing:55.726250px;}
.ws1d{word-spacing:2010.309919px;}
.ws21{word-spacing:2148.033823px;}
.ws22{word-spacing:2301.682053px;}
.ws1c{word-spacing:2332.241810px;}
._1e{margin-left:-41.747558px;}
._20{margin-left:-37.874074px;}
._1c{margin-left:-35.865600px;}
._1f{margin-left:-33.857126px;}
._35{margin-left:-15.145190px;}
._28{margin-left:-13.270272px;}
._1d{margin-left:-11.692186px;}
._0{margin-left:-9.794025px;}
._1{margin-left:-8.366684px;}
._a{margin-left:-6.518917px;}
._3{margin-left:-4.572182px;}
._2{margin-left:-2.788895px;}
._4{margin-left:-1.084590px;}
._9{width:1.012859px;}
._5{width:2.717164px;}
._6{width:3.945216px;}
._21{width:9.611981px;}
._36{width:12.400876px;}
._34{width:17.924178px;}
._c{width:19.966810px;}
._32{width:21.941125px;}
._11{width:23.384371px;}
._7{width:24.451717px;}
._2c{width:25.742879px;}
._33{width:27.679621px;}
._30{width:29.329439px;}
._2b{width:30.405407px;}
._29{width:31.561728px;}
._b{width:33.059461px;}
._8{width:35.148288px;}
._2a{width:36.717752px;}
._18{width:37.721989px;}
._31{width:43.497371px;}
._16{width:50.713958px;}
._24{width:53.941862px;}
._14{width:55.950336px;}
._19{width:57.376338px;}
._1a{width:60.604242px;}
._22{width:62.836531px;}
._e{width:64.988467px;}
._23{width:66.638285px;}
._2d{width:70.224845px;}
._10{width:71.802931px;}
._12{width:72.950630px;}
._2f{width:94.684920px;}
._13{width:101.714842px;}
._27{width:106.879488px;}
._2e{width:111.452500px;}
._17{width:1166.825564px;}
._15{width:1604.403128px;}
._f{width:1947.789005px;}
._d{width:2131.707802px;}
._26{width:2149.353677px;}
._25{width:2167.286477px;}
._1b{width:2276.030976px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:47.820600px;}
.fs4{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs1{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.fs2{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y28{bottom:36.880500px;}
.y113{bottom:81.712500px;}
.y85{bottom:84.540000px;}
.y137{bottom:85.024500px;}
.ybf{bottom:90.097500px;}
.y164{bottom:101.349000px;}
.y112{bottom:103.381500px;}
.y104{bottom:105.114000px;}
.y84{bottom:106.209000px;}
.y136{bottom:106.693500px;}
.ybe{bottom:111.766500px;}
.y120{bottom:112.017000px;}
.y163{bottom:123.018000px;}
.y111{bottom:125.050500px;}
.y103{bottom:126.783000px;}
.y83{bottom:127.878000px;}
.y135{bottom:128.362500px;}
.ybd{bottom:133.435500px;}
.y11f{bottom:133.686000px;}
.y162{bottom:144.687000px;}
.y196{bottom:144.997500px;}
.y110{bottom:146.718000px;}
.y102{bottom:148.452000px;}
.y82{bottom:149.547000px;}
.y134{bottom:150.031500px;}
.y11e{bottom:155.355000px;}
.y19c{bottom:158.496000px;}
.y161{bottom:166.356000px;}
.ybc{bottom:166.683000px;}
.y10f{bottom:168.387000px;}
.yd4{bottom:169.296000px;}
.y101{bottom:170.121000px;}
.y81{bottom:171.216000px;}
.y133{bottom:171.700500px;}
.ye{bottom:178.474500px;}
.y19b{bottom:180.165000px;}
.y160{bottom:188.025000px;}
.yd3{bottom:190.963500px;}
.y100{bottom:191.788500px;}
.y80{bottom:192.883500px;}
.y132{bottom:193.369500px;}
.y19a{bottom:201.834000px;}
.yd{bottom:205.374000px;}
.y15f{bottom:209.694000px;}
.yff{bottom:213.457500px;}
.y7f{bottom:214.552500px;}
.y131{bottom:215.037000px;}
.ya{bottom:216.003000px;}
.y10e{bottom:216.495000px;}
.y1a0{bottom:219.820500px;}
.ybb{bottom:225.169500px;}
.y15e{bottom:231.361500px;}
.yfe{bottom:235.126500px;}
.y7e{bottom:236.221500px;}
.y130{bottom:236.706000px;}
.y10d{bottom:238.164000px;}
.y19f{bottom:241.488000px;}
.y198{bottom:241.579500px;}
.y9{bottom:242.902500px;}
.yba{bottom:246.838500px;}
.y15d{bottom:253.030500px;}
.yc{bottom:253.531500px;}
.yfd{bottom:256.795500px;}
.y7d{bottom:257.890500px;}
.y12f{bottom:258.375000px;}
.y10c{bottom:259.833000px;}
.y15c{bottom:274.699500px;}
.y9a{bottom:278.442000px;}
.yfc{bottom:278.464500px;}
.y7c{bottom:279.559500px;}
.y12e{bottom:280.044000px;}
.yb{bottom:280.431000px;}
.yfb{bottom:300.133500px;}
.y7b{bottom:301.228500px;}
.y12d{bottom:301.713000px;}
.y15b{bottom:307.947000px;}
.y7a{bottom:322.896000px;}
.y12c{bottom:323.380500px;}
.y5a{bottom:339.900000px;}
.y79{bottom:344.565000px;}
.y12b{bottom:345.049500px;}
.yfa{bottom:349.224000px;}
.yab{bottom:355.123500px;}
.y15a{bottom:359.934000px;}
.y59{bottom:361.569000px;}
.y78{bottom:366.234000px;}
.y12a{bottom:366.718500px;}
.yf9{bottom:370.893000px;}
.yaa{bottom:376.792500px;}
.y3f{bottom:379.404000px;}
.y159{bottom:381.601500px;}
.y58{bottom:383.238000px;}
.y77{bottom:387.903000px;}
.y129{bottom:388.387500px;}
.yf8{bottom:392.562000px;}
.ya9{bottom:398.461500px;}
.y3e{bottom:401.071500px;}
.y158{bottom:403.270500px;}
.y128{bottom:410.056500px;}
.ya8{bottom:420.130500px;}
.y76{bottom:421.150500px;}
.y3d{bottom:422.740500px;}
.y8{bottom:424.332000px;}
.y157{bottom:424.939500px;}
.y57{bottom:426.166500px;}
.y127{bottom:431.725500px;}
.ya7{bottom:441.798000px;}
.y3c{bottom:444.409500px;}
.y156{bottom:446.608500px;}
.y56{bottom:447.835500px;}
.y17b{bottom:451.720500px;}
.y126{bottom:453.393000px;}
.y27{bottom:456.454500px;}
.y194{bottom:461.095500px;}
.ya6{bottom:463.467000px;}
.y155{bottom:468.277500px;}
.y7{bottom:469.164000px;}
.y55{bottom:469.504500px;}
.y75{bottom:473.136000px;}
.y17a{bottom:473.389500px;}
.y26{bottom:478.122000px;}
.y193{bottom:482.763000px;}
.y3b{bottom:483.633000px;}
.ya5{bottom:485.136000px;}
.y125{bottom:486.640500px;}
.y154{bottom:489.946500px;}
.y54{bottom:491.172000px;}
.y74{bottom:494.805000px;}
.y179{bottom:495.058500px;}
.y25{bottom:499.791000px;}
.y192{bottom:504.432000px;}
.ya4{bottom:506.805000px;}
.y153{bottom:511.614000px;}
.y53{bottom:512.841000px;}
.y73{bottom:516.474000px;}
.y178{bottom:516.727500px;}
.y3a{bottom:522.856500px;}
.ya3{bottom:528.474000px;}
.y24{bottom:529.963500px;}
.y191{bottom:532.276500px;}
.y152{bottom:533.283000px;}
.y72{bottom:538.143000px;}
.y177{bottom:538.396500px;}
.y124{bottom:545.128500px;}
.y11d{bottom:547.338000px;}
.ya2{bottom:550.143000px;}
.y23{bottom:551.632500px;}
.y151{bottom:554.952000px;}
.y52{bottom:555.769500px;}
.y71{bottom:559.812000px;}
.y176{bottom:560.064000px;}
.y190{bottom:560.119500px;}
.yec{bottom:561.127500px;}
.y39{bottom:562.080000px;}
.yb9{bottom:564.472500px;}
.y123{bottom:566.797500px;}
.y11c{bottom:569.007000px;}
.y13e{bottom:569.097000px;}
.ya1{bottom:571.810500px;}
.y150{bottom:576.621000px;}
.y51{bottom:577.438500px;}
.y70{bottom:581.481000px;}
.y175{bottom:581.733000px;}
.y18f{bottom:581.788500px;}
.y22{bottom:581.805000px;}
.yeb{bottom:582.796500px;}
.yb8{bottom:586.141500px;}
.y99{bottom:586.593000px;}
.y122{bottom:588.465000px;}
.y11b{bottom:590.676000px;}
.y13d{bottom:590.766000px;}
.ya0{bottom:593.479500px;}
.y14f{bottom:598.290000px;}
.y50{bottom:599.107500px;}
.y38{bottom:601.303500px;}
.y6f{bottom:603.148500px;}
.y174{bottom:603.402000px;}
.y18e{bottom:603.457500px;}
.y21{bottom:603.474000px;}
.yea{bottom:604.465500px;}
.y195{bottom:604.471500px;}
.yd2{bottom:607.540500px;}
.yb7{bottom:607.810500px;}
.y6{bottom:607.947000px;}
.y98{bottom:608.262000px;}
.y121{bottom:610.134000px;}
.y11a{bottom:612.345000px;}
.y13c{bottom:612.433500px;}
.y9f{bottom:615.148500px;}
.y14e{bottom:619.959000px;}
.y4f{bottom:620.776500px;}
.y10b{bottom:621.289500px;}
.y37{bottom:622.972500px;}
.y6e{bottom:624.817500px;}
.y173{bottom:625.071000px;}
.y18d{bottom:625.126500px;}
.y20{bottom:625.143000px;}
.ye9{bottom:626.133000px;}
.yd1{bottom:629.208000px;}
.yb6{bottom:629.479500px;}
.y97{bottom:629.931000px;}
.y119{bottom:634.012500px;}
.y13b{bottom:634.102500px;}
.y9e{bottom:636.817500px;}
.y5{bottom:640.824000px;}
.y14d{bottom:641.626500px;}
.y4e{bottom:642.445500px;}
.y10a{bottom:642.957000px;}
.y36{bottom:644.641500px;}
.y6d{bottom:646.486500px;}
.y199{bottom:646.731000px;}
.y172{bottom:646.740000px;}
.ye8{bottom:647.802000px;}
.yd0{bottom:650.877000px;}
.yb5{bottom:651.147000px;}
.y96{bottom:651.598500px;}
.y18c{bottom:652.971000px;}
.y13a{bottom:655.771500px;}
.y19e{bottom:661.594500px;}
.y14c{bottom:663.295500px;}
.y4d{bottom:664.113000px;}
.y1f{bottom:664.566000px;}
.y109{bottom:664.626000px;}
.y35{bottom:666.310500px;}
.y118{bottom:667.260000px;}
.y6c{bottom:668.155500px;}
.y171{bottom:668.407500px;}
.ye7{bottom:669.471000px;}
.y9d{bottom:670.065000px;}
.ycf{bottom:672.546000px;}
.yb4{bottom:672.816000px;}
.y95{bottom:673.267500px;}
.y4{bottom:673.701000px;}
.y18b{bottom:674.638500px;}
.y139{bottom:677.440500px;}
.y14b{bottom:684.964500px;}
.y4c{bottom:685.782000px;}
.y108{bottom:686.295000px;}
.y6b{bottom:689.824500px;}
.y170{bottom:690.076500px;}
.ye6{bottom:691.140000px;}
.yce{bottom:694.215000px;}
.y94{bottom:694.936500px;}
.y18a{bottom:696.307500px;}
.y138{bottom:699.109500px;}
.y197{bottom:701.053500px;}
.yb3{bottom:702.988500px;}
.y34{bottom:705.534000px;}
.y3{bottom:706.578000px;}
.y14a{bottom:706.633500px;}
.y6a{bottom:711.493500px;}
.y16f{bottom:711.745500px;}
.ye5{bottom:712.809000px;}
.y93{bottom:716.605500px;}
.y189{bottom:724.152000px;}
.ycd{bottom:724.387500px;}
.y1e{bottom:724.459500px;}
.yb2{bottom:724.657500px;}
.y117{bottom:725.748000px;}
.y33{bottom:727.203000px;}
.y149{bottom:728.302500px;}
.y9c{bottom:728.551500px;}
.y4b{bottom:728.710500px;}
.y69{bottom:733.161000px;}
.y16e{bottom:733.414500px;}
.y107{bottom:734.403000px;}
.ye4{bottom:734.478000px;}
.y92{bottom:738.274500px;}
.y188{bottom:745.821000px;}
.ycc{bottom:746.056500px;}
.y1d{bottom:746.128500px;}
.yb1{bottom:746.326500px;}
.y116{bottom:747.417000px;}
.y32{bottom:748.872000px;}
.y148{bottom:749.970000px;}
.y9b{bottom:750.220500px;}
.y4a{bottom:750.379500px;}
.yf7{bottom:751.411500px;}
.y2{bottom:752.211000px;}
.y68{bottom:754.830000px;}
.y16d{bottom:755.083500px;}
.y106{bottom:756.072000px;}
.ye3{bottom:756.145500px;}
.y91{bottom:759.942000px;}
.y187{bottom:767.490000px;}
.ycb{bottom:767.725500px;}
.y1c{bottom:767.797500px;}
.yb0{bottom:767.995500px;}
.y115{bottom:769.084500px;}
.y31{bottom:770.539500px;}
.y147{bottom:771.639000px;}
.y49{bottom:772.048500px;}
.yf6{bottom:773.080500px;}
.y67{bottom:776.499000px;}
.y16c{bottom:776.752500px;}
.y105{bottom:777.739500px;}
.ye2{bottom:777.814500px;}
.y90{bottom:781.611000px;}
.yca{bottom:789.393000px;}
.y1b{bottom:789.465000px;}
.yaf{bottom:789.664500px;}
.y114{bottom:790.753500px;}
.y146{bottom:793.308000px;}
.y48{bottom:793.717500px;}
.yf5{bottom:794.749500px;}
.y186{bottom:795.333000px;}
.y66{bottom:798.168000px;}
.y16b{bottom:798.420000px;}
.ye1{bottom:799.483500px;}
.y8f{bottom:803.280000px;}
.y30{bottom:809.763000px;}
.yc9{bottom:811.062000px;}
.yae{bottom:811.332000px;}
.y145{bottom:814.977000px;}
.y47{bottom:815.386500px;}
.yf4{bottom:816.418500px;}
.y185{bottom:817.002000px;}
.y1a{bottom:819.637500px;}
.y65{bottom:819.837000px;}
.y16a{bottom:820.089000px;}
.ye0{bottom:821.152500px;}
.y8e{bottom:824.949000px;}
.y1{bottom:827.607000px;}
.y2f{bottom:831.432000px;}
.yc8{bottom:832.731000px;}
.yad{bottom:833.001000px;}
.y144{bottom:836.646000px;}
.y46{bottom:837.054000px;}
.yf3{bottom:838.087500px;}
.y19{bottom:841.306500px;}
.y64{bottom:841.506000px;}
.y169{bottom:841.758000px;}
.ydf{bottom:842.821500px;}
.y184{bottom:844.846500px;}
.y8d{bottom:846.618000px;}
.y2e{bottom:853.101000px;}
.yc7{bottom:854.400000px;}
.yac{bottom:854.670000px;}
.y143{bottom:858.315000px;}
.y45{bottom:858.723000px;}
.yf2{bottom:859.755000px;}
.y18{bottom:862.975500px;}
.y63{bottom:863.173500px;}
.y168{bottom:863.427000px;}
.yde{bottom:864.490500px;}
.y183{bottom:866.514000px;}
.y8c{bottom:868.287000px;}
.yc6{bottom:876.069000px;}
.y142{bottom:879.982500px;}
.y44{bottom:880.392000px;}
.yf1{bottom:881.424000px;}
.y17{bottom:884.644500px;}
.y62{bottom:884.842500px;}
.y167{bottom:885.096000px;}
.ydd{bottom:886.158000px;}
.y182{bottom:888.183000px;}
.y8b{bottom:889.954500px;}
.y2d{bottom:892.324500px;}
.yc5{bottom:897.738000px;}
.y141{bottom:901.651500px;}
.y43{bottom:902.061000px;}
.yf0{bottom:903.093000px;}
.y16{bottom:906.313500px;}
.y61{bottom:906.511500px;}
.y166{bottom:906.765000px;}
.ydc{bottom:907.827000px;}
.y181{bottom:909.852000px;}
.y2c{bottom:913.993500px;}
.yc4{bottom:919.405500px;}
.y8a{bottom:923.202000px;}
.y140{bottom:923.320500px;}
.y42{bottom:923.730000px;}
.yef{bottom:924.762000px;}
.y60{bottom:928.180500px;}
.ydb{bottom:929.496000px;}
.y2b{bottom:935.662500px;}
.y15{bottom:936.486000px;}
.y180{bottom:937.696500px;}
.yc3{bottom:941.074500px;}
.y13f{bottom:944.989500px;}
.y165{bottom:946.186500px;}
.yee{bottom:946.431000px;}
.y5f{bottom:949.849500px;}
.yda{bottom:951.165000px;}
.y14{bottom:958.155000px;}
.y17f{bottom:959.365500px;}
.yc2{bottom:962.743500px;}
.y41{bottom:966.658500px;}
.y89{bottom:967.855500px;}
.y5e{bottom:971.517000px;}
.yd9{bottom:972.834000px;}
.y2a{bottom:974.886000px;}
.yed{bottom:979.678500px;}
.y17e{bottom:981.033000px;}
.yc1{bottom:984.412500px;}
.y13{bottom:988.327500px;}
.y5d{bottom:993.186000px;}
.yd8{bottom:994.501500px;}
.y17d{bottom:1002.702000px;}
.yc0{bottom:1006.081500px;}
.y12{bottom:1009.995000px;}
.y29{bottom:1014.109500px;}
.y5c{bottom:1014.855000px;}
.yd7{bottom:1016.170500px;}
.y88{bottom:1027.749000px;}
.y11{bottom:1031.664000px;}
.yd6{bottom:1037.839500px;}
.y17c{bottom:1042.125000px;}
.y5b{bottom:1048.102500px;}
.y87{bottom:1049.418000px;}
.y10{bottom:1053.333000px;}
.yd5{bottom:1059.508500px;}
.y19d{bottom:1065.856500px;}
.y86{bottom:1071.087000px;}
.yf{bottom:1092.756000px;}
.y40{bottom:1154.550000px;}
.hb{height:49.853184px;}
.h9{height:50.283571px;}
.h8{height:53.870131px;}
.ha{height:57.882520px;}
.h5{height:59.048959px;}
.h6{height:60.426194px;}
.h3{height:72.407972px;}
.h7{height:72.511265px;}
.h2{height:88.766100px;}
.h4{height:104.254543px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:106.299000px;}
.x1e{left:108.007500px;}
.x4{left:110.848500px;}
.x1d{left:112.036500px;}
.x17{left:114.798000px;}
.x25{left:116.448000px;}
.xf{left:119.916000px;}
.x7{left:121.389000px;}
.x1c{left:124.719000px;}
.x2c{left:125.997000px;}
.x23{left:127.644000px;}
.x9{left:131.539500px;}
.xe{left:132.631500px;}
.x3{left:133.639500px;}
.x19{left:136.933500px;}
.x2f{left:141.711000px;}
.x8{left:148.350000px;}
.x14{left:149.451000px;}
.x1{left:158.110500px;}
.x13{left:173.394000px;}
.x2b{left:176.964000px;}
.x2e{left:223.056000px;}
.x21{left:261.049500px;}
.x18{left:276.369000px;}
.x6{left:287.919000px;}
.x2d{left:295.924500px;}
.x22{left:321.768000px;}
.x2{left:325.627500px;}
.x2a{left:337.624500px;}
.x1f{left:341.322000px;}
.x26{left:359.218500px;}
.x20{left:364.777500px;}
.x5{left:373.462500px;}
.x24{left:380.236500px;}
.x1a{left:387.588000px;}
.x15{left:397.524000px;}
.x16{left:496.023000px;}
.xc{left:571.074000px;}
.x12{left:592.900500px;}
.xb{left:602.545500px;}
.xa{left:636.495000px;}
.x11{left:666.751500px;}
.x10{left:706.743000px;}
.x28{left:718.831500px;}
.x27{left:722.784000px;}
.x1b{left:746.775000px;}
.x29{left:748.336500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.141333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:23.461759pt;}
.ls2{letter-spacing:30.924129pt;}
.ls4{letter-spacing:31.216292pt;}
.ls1{letter-spacing:31.880533pt;}
.ws12{word-spacing:-49.534444pt;}
.ws23{word-spacing:-47.023787pt;}
.ws20{word-spacing:-35.801839pt;}
.ws6e{word-spacing:-31.211042pt;}
.wsce{word-spacing:-17.056085pt;}
.wsc3{word-spacing:-16.992324pt;}
.wse0{word-spacing:-16.928563pt;}
.ws38{word-spacing:-16.864802pt;}
.ws39{word-spacing:-16.801041pt;}
.ws66{word-spacing:-16.609758pt;}
.ws1b{word-spacing:-16.572692pt;}
.ws63{word-spacing:-16.482236pt;}
.ws5a{word-spacing:-16.480876pt;}
.wsa3{word-spacing:-16.354714pt;}
.ws85{word-spacing:-16.227191pt;}
.ws7c{word-spacing:-15.972147pt;}
.wsb7{word-spacing:-15.908386pt;}
.ws14{word-spacing:-15.717103pt;}
.ws9c{word-spacing:-15.589581pt;}
.ws78{word-spacing:-15.525820pt;}
.ws68{word-spacing:-15.462059pt;}
.ws97{word-spacing:-15.398298pt;}
.ws74{word-spacing:-15.143253pt;}
.wsbb{word-spacing:-15.015731pt;}
.ws99{word-spacing:-14.951970pt;}
.ws92{word-spacing:-14.888209pt;}
.ws1{word-spacing:-14.837379pt;}
.ws60{word-spacing:-14.760687pt;}
.ws2c{word-spacing:-14.696926pt;}
.ws86{word-spacing:-14.569404pt;}
.ws18{word-spacing:-14.378121pt;}
.ws57{word-spacing:-14.059315pt;}
.ws81{word-spacing:-13.995554pt;}
.ws16{word-spacing:-13.931793pt;}
.ws42{word-spacing:-13.868032pt;}
.wsa2{word-spacing:-13.804271pt;}
.wsa9{word-spacing:-13.740510pt;}
.ws5c{word-spacing:-13.676749pt;}
.ws6c{word-spacing:-13.549227pt;}
.ws75{word-spacing:-13.294182pt;}
.ws8d{word-spacing:-13.230421pt;}
.wscb{word-spacing:-13.166660pt;}
.ws9d{word-spacing:-13.039138pt;}
.wsbd{word-spacing:-12.975377pt;}
.ws89{word-spacing:-12.919781pt;}
.ws5f{word-spacing:-12.911616pt;}
.wsf{word-spacing:-12.720333pt;}
.ws56{word-spacing:-12.656572pt;}
.ws95{word-spacing:-12.529050pt;}
.ws84{word-spacing:-12.337766pt;}
.wsaa{word-spacing:-12.274005pt;}
.wsc2{word-spacing:-12.210244pt;}
.wsaf{word-spacing:-12.146483pt;}
.wsac{word-spacing:-12.082722pt;}
.ws3d{word-spacing:-12.018961pt;}
.ws15{word-spacing:-11.955200pt;}
.ws1a{word-spacing:-11.948824pt;}
.wsa8{word-spacing:-11.891439pt;}
.ws19{word-spacing:-11.827678pt;}
.ws67{word-spacing:-11.763917pt;}
.ws40{word-spacing:-11.700156pt;}
.wsc5{word-spacing:-11.636395pt;}
.ws4e{word-spacing:-11.508873pt;}
.wsa4{word-spacing:-11.381350pt;}
.ws71{word-spacing:-11.317589pt;}
.ws6f{word-spacing:-11.253828pt;}
.ws48{word-spacing:-11.190067pt;}
.ws53{word-spacing:-11.126306pt;}
.ws17{word-spacing:-10.935023pt;}
.ws41{word-spacing:-10.871262pt;}
.ws44{word-spacing:-10.807501pt;}
.ws3f{word-spacing:-10.743740pt;}
.wsb1{word-spacing:-10.616218pt;}
.ws13{word-spacing:-10.552457pt;}
.ws4b{word-spacing:-10.488695pt;}
.wsb{word-spacing:-10.424934pt;}
.ws76{word-spacing:-10.361173pt;}
.wsa6{word-spacing:-10.297412pt;}
.ws98{word-spacing:-10.233651pt;}
.wsbc{word-spacing:-10.169890pt;}
.ws2f{word-spacing:-10.106129pt;}
.ws7e{word-spacing:-9.978607pt;}
.ws73{word-spacing:-9.914846pt;}
.wsc7{word-spacing:-9.851085pt;}
.wsc1{word-spacing:-9.787324pt;}
.wsc0{word-spacing:-9.723563pt;}
.wsbf{word-spacing:-9.659802pt;}
.wsc{word-spacing:-9.468518pt;}
.ws34{word-spacing:-9.404757pt;}
.ws70{word-spacing:-9.340996pt;}
.ws31{word-spacing:-9.277235pt;}
.ws29{word-spacing:-9.213474pt;}
.ws45{word-spacing:-9.149713pt;}
.wscf{word-spacing:-9.022191pt;}
.wsa1{word-spacing:-8.894669pt;}
.ws2b{word-spacing:-8.767147pt;}
.ws79{word-spacing:-8.703386pt;}
.wsa7{word-spacing:-8.639625pt;}
.ws4c{word-spacing:-8.575863pt;}
.ws94{word-spacing:-8.512102pt;}
.wsb0{word-spacing:-8.448341pt;}
.wsb9{word-spacing:-8.320819pt;}
.ws6d{word-spacing:-8.193297pt;}
.ws47{word-spacing:-8.129536pt;}
.wsd1{word-spacing:-8.065775pt;}
.ws32{word-spacing:-8.002014pt;}
.wsc6{word-spacing:-7.938253pt;}
.ws8e{word-spacing:-7.874492pt;}
.ws8f{word-spacing:-7.619447pt;}
.ws7a{word-spacing:-7.555686pt;}
.wsd{word-spacing:-7.491925pt;}
.ws82{word-spacing:-7.485549pt;}
.ws4a{word-spacing:-7.428164pt;}
.ws43{word-spacing:-7.236881pt;}
.ws58{word-spacing:-7.173120pt;}
.ws8{word-spacing:-7.109359pt;}
.wsbe{word-spacing:-7.045598pt;}
.wsa{word-spacing:-6.981837pt;}
.wsde{word-spacing:-6.918076pt;}
.ws8c{word-spacing:-6.854315pt;}
.wsad{word-spacing:-6.790554pt;}
.ws64{word-spacing:-6.726793pt;}
.ws8b{word-spacing:-6.663031pt;}
.ws90{word-spacing:-6.599270pt;}
.ws83{word-spacing:-6.535509pt;}
.ws2d{word-spacing:-6.471748pt;}
.ws11{word-spacing:-6.407987pt;}
.ws3a{word-spacing:-6.344226pt;}
.ws3c{word-spacing:-6.216704pt;}
.ws5d{word-spacing:-6.152943pt;}
.ws4f{word-spacing:-6.089182pt;}
.ws55{word-spacing:-5.961660pt;}
.ws3e{word-spacing:-5.897899pt;}
.ws77{word-spacing:-5.834138pt;}
.ws93{word-spacing:-5.706615pt;}
.ws33{word-spacing:-5.579093pt;}
.ws4d{word-spacing:-5.515332pt;}
.ws52{word-spacing:-5.451571pt;}
.ws28{word-spacing:-5.132766pt;}
.wsc4{word-spacing:-5.069005pt;}
.ws2e{word-spacing:-5.005244pt;}
.ws35{word-spacing:-4.877722pt;}
.ws9{word-spacing:-4.813961pt;}
.ws36{word-spacing:-4.750199pt;}
.ws69{word-spacing:-4.686438pt;}
.ws37{word-spacing:-4.495155pt;}
.wsa0{word-spacing:-4.431394pt;}
.ws96{word-spacing:-4.303872pt;}
.wsda{word-spacing:-4.240111pt;}
.wse{word-spacing:-4.176350pt;}
.wsba{word-spacing:-4.112589pt;}
.ws6b{word-spacing:-3.921306pt;}
.ws7f{word-spacing:-3.793783pt;}
.ws30{word-spacing:-3.602500pt;}
.wsca{word-spacing:-3.411217pt;}
.wsc8{word-spacing:-3.283695pt;}
.ws59{word-spacing:-3.092412pt;}
.ws5e{word-spacing:-2.901129pt;}
.wsb8{word-spacing:-2.837367pt;}
.ws10{word-spacing:-2.773606pt;}
.ws80{word-spacing:-2.709845pt;}
.ws61{word-spacing:-2.646084pt;}
.ws26{word-spacing:-2.518562pt;}
.ws9b{word-spacing:-2.454801pt;}
.ws46{word-spacing:-2.263518pt;}
.ws49{word-spacing:-2.135996pt;}
.ws9e{word-spacing:-2.008474pt;}
.wscc{word-spacing:-1.880951pt;}
.ws91{word-spacing:-1.689668pt;}
.ws72{word-spacing:-1.625907pt;}
.ws62{word-spacing:-1.562146pt;}
.wsd2{word-spacing:-1.179580pt;}
.ws2a{word-spacing:-1.052058pt;}
.wsae{word-spacing:-0.924535pt;}
.wscd{word-spacing:-0.860774pt;}
.wsdc{word-spacing:-0.733252pt;}
.wsc9{word-spacing:-0.605730pt;}
.ws7d{word-spacing:-0.541969pt;}
.wsa5{word-spacing:-0.350686pt;}
.ws51{word-spacing:-0.286925pt;}
.ws27{word-spacing:-0.223164pt;}
.ws7b{word-spacing:-0.095642pt;}
.ws5{word-spacing:-0.076513pt;}
.ws88{word-spacing:-0.063761pt;}
.wsd0{word-spacing:-0.031881pt;}
.ws7{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.669491pt;}
.ws6a{word-spacing:1.944713pt;}
.wsd9{word-spacing:2.327279pt;}
.wsd3{word-spacing:3.028651pt;}
.wsd6{word-spacing:6.280465pt;}
.ws8a{word-spacing:18.230630pt;}
.ws9f{word-spacing:19.877629pt;}
.wse1{word-spacing:20.467302pt;}
.wsb6{word-spacing:20.727159pt;}
.wsb3{word-spacing:20.731964pt;}
.wsb5{word-spacing:20.732228pt;}
.wsb4{word-spacing:20.737033pt;}
.ws65{word-spacing:20.760735pt;}
.wsab{word-spacing:20.761248pt;}
.ws9a{word-spacing:20.766068pt;}
.wsb2{word-spacing:20.766582pt;}
.ws87{word-spacing:21.159689pt;}
.ws54{word-spacing:21.615002pt;}
.ws1e{word-spacing:21.908303pt;}
.wse2{word-spacing:22.252612pt;}
.wse3{word-spacing:22.341815pt;}
.ws6{word-spacing:24.178129pt;}
.ws4{word-spacing:24.187981pt;}
.wsdf{word-spacing:26.397082pt;}
.wsd5{word-spacing:26.460843pt;}
.wsdb{word-spacing:27.863586pt;}
.ws3b{word-spacing:27.927269pt;}
.ws5b{word-spacing:28.003782pt;}
.wsd7{word-spacing:29.393852pt;}
.ws3{word-spacing:29.993122pt;}
.wsdd{word-spacing:31.115401pt;}
.ws24{word-spacing:31.211042pt;}
.ws50{word-spacing:31.561728pt;}
.wsd8{word-spacing:33.920887pt;}
.wsd4{word-spacing:34.622259pt;}
.ws0{word-spacing:36.255800pt;}
.ws2{word-spacing:46.004858pt;}
.ws25{word-spacing:49.534444pt;}
.ws1d{word-spacing:1786.942150pt;}
.ws21{word-spacing:1909.363398pt;}
.ws22{word-spacing:2045.939603pt;}
.ws1c{word-spacing:2073.103831pt;}
._1e{margin-left:-37.108941pt;}
._20{margin-left:-33.665843pt;}
._1c{margin-left:-31.880533pt;}
._1f{margin-left:-30.095223pt;}
._35{margin-left:-13.462391pt;}
._28{margin-left:-11.795797pt;}
._1d{margin-left:-10.393054pt;}
._0{margin-left:-8.705800pt;}
._1{margin-left:-7.437053pt;}
._a{margin-left:-5.794593pt;}
._3{margin-left:-4.064162pt;}
._2{margin-left:-2.479018pt;}
._4{margin-left:-0.964080pt;}
._9{width:0.900319pt;}
._5{width:2.415257pt;}
._6{width:3.506859pt;}
._21{width:8.543983pt;}
._36{width:11.023001pt;}
._34{width:15.932603pt;}
._c{width:17.748275pt;}
._32{width:19.503222pt;}
._11{width:20.786108pt;}
._7{width:21.734860pt;}
._2c{width:22.882559pt;}
._33{width:24.604108pt;}
._30{width:26.070612pt;}
._2b{width:27.027028pt;}
._29{width:28.054869pt;}
._b{width:29.386188pt;}
._8{width:31.242923pt;}
._2a{width:32.638002pt;}
._18{width:33.530657pt;}
._31{width:38.664330pt;}
._16{width:45.079074pt;}
._24{width:47.948322pt;}
._14{width:49.733632pt;}
._19{width:51.001189pt;}
._1a{width:53.870437pt;}
._22{width:55.854694pt;}
._e{width:57.767526pt;}
._23{width:59.234031pt;}
._2d{width:62.422084pt;}
._10{width:63.824828pt;}
._12{width:64.845005pt;}
._2f{width:84.164373pt;}
._13{width:90.413193pt;}
._27{width:95.003989pt;}
._2e{width:99.068889pt;}
._17{width:1037.178279pt;}
._15{width:1426.136114pt;}
._f{width:1731.368004pt;}
._d{width:1894.851379pt;}
._26{width:1910.536602pt;}
._25{width:1926.476868pt;}
._1b{width:2023.138645pt;}
.fs5{font-size:42.507200pt;}
.fs4{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs1{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.fs2{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:32.782667pt;}
.y113{bottom:72.633333pt;}
.y85{bottom:75.146667pt;}
.y137{bottom:75.577333pt;}
.ybf{bottom:80.086667pt;}
.y164{bottom:90.088000pt;}
.y112{bottom:91.894667pt;}
.y104{bottom:93.434667pt;}
.y84{bottom:94.408000pt;}
.y136{bottom:94.838667pt;}
.ybe{bottom:99.348000pt;}
.y120{bottom:99.570667pt;}
.y163{bottom:109.349333pt;}
.y111{bottom:111.156000pt;}
.y103{bottom:112.696000pt;}
.y83{bottom:113.669333pt;}
.y135{bottom:114.100000pt;}
.ybd{bottom:118.609333pt;}
.y11f{bottom:118.832000pt;}
.y162{bottom:128.610667pt;}
.y196{bottom:128.886667pt;}
.y110{bottom:130.416000pt;}
.y102{bottom:131.957333pt;}
.y82{bottom:132.930667pt;}
.y134{bottom:133.361333pt;}
.y11e{bottom:138.093333pt;}
.y19c{bottom:140.885333pt;}
.y161{bottom:147.872000pt;}
.ybc{bottom:148.162667pt;}
.y10f{bottom:149.677333pt;}
.yd4{bottom:150.485333pt;}
.y101{bottom:151.218667pt;}
.y81{bottom:152.192000pt;}
.y133{bottom:152.622667pt;}
.ye{bottom:158.644000pt;}
.y19b{bottom:160.146667pt;}
.y160{bottom:167.133333pt;}
.yd3{bottom:169.745333pt;}
.y100{bottom:170.478667pt;}
.y80{bottom:171.452000pt;}
.y132{bottom:171.884000pt;}
.y19a{bottom:179.408000pt;}
.yd{bottom:182.554667pt;}
.y15f{bottom:186.394667pt;}
.yff{bottom:189.740000pt;}
.y7f{bottom:190.713333pt;}
.y131{bottom:191.144000pt;}
.ya{bottom:192.002667pt;}
.y10e{bottom:192.440000pt;}
.y1a0{bottom:195.396000pt;}
.ybb{bottom:200.150667pt;}
.y15e{bottom:205.654667pt;}
.yfe{bottom:209.001333pt;}
.y7e{bottom:209.974667pt;}
.y130{bottom:210.405333pt;}
.y10d{bottom:211.701333pt;}
.y19f{bottom:214.656000pt;}
.y198{bottom:214.737333pt;}
.y9{bottom:215.913333pt;}
.yba{bottom:219.412000pt;}
.y15d{bottom:224.916000pt;}
.yc{bottom:225.361333pt;}
.yfd{bottom:228.262667pt;}
.y7d{bottom:229.236000pt;}
.y12f{bottom:229.666667pt;}
.y10c{bottom:230.962667pt;}
.y15c{bottom:244.177333pt;}
.y9a{bottom:247.504000pt;}
.yfc{bottom:247.524000pt;}
.y7c{bottom:248.497333pt;}
.y12e{bottom:248.928000pt;}
.yb{bottom:249.272000pt;}
.yfb{bottom:266.785333pt;}
.y7b{bottom:267.758667pt;}
.y12d{bottom:268.189333pt;}
.y15b{bottom:273.730667pt;}
.y7a{bottom:287.018667pt;}
.y12c{bottom:287.449333pt;}
.y5a{bottom:302.133333pt;}
.y79{bottom:306.280000pt;}
.y12b{bottom:306.710667pt;}
.yfa{bottom:310.421333pt;}
.yab{bottom:315.665333pt;}
.y15a{bottom:319.941333pt;}
.y59{bottom:321.394667pt;}
.y78{bottom:325.541333pt;}
.y12a{bottom:325.972000pt;}
.yf9{bottom:329.682667pt;}
.yaa{bottom:334.926667pt;}
.y3f{bottom:337.248000pt;}
.y159{bottom:339.201333pt;}
.y58{bottom:340.656000pt;}
.y77{bottom:344.802667pt;}
.y129{bottom:345.233333pt;}
.yf8{bottom:348.944000pt;}
.ya9{bottom:354.188000pt;}
.y3e{bottom:356.508000pt;}
.y158{bottom:358.462667pt;}
.y128{bottom:364.494667pt;}
.ya8{bottom:373.449333pt;}
.y76{bottom:374.356000pt;}
.y3d{bottom:375.769333pt;}
.y8{bottom:377.184000pt;}
.y157{bottom:377.724000pt;}
.y57{bottom:378.814667pt;}
.y127{bottom:383.756000pt;}
.ya7{bottom:392.709333pt;}
.y3c{bottom:395.030667pt;}
.y156{bottom:396.985333pt;}
.y56{bottom:398.076000pt;}
.y17b{bottom:401.529333pt;}
.y126{bottom:403.016000pt;}
.y27{bottom:405.737333pt;}
.y194{bottom:409.862667pt;}
.ya6{bottom:411.970667pt;}
.y155{bottom:416.246667pt;}
.y7{bottom:417.034667pt;}
.y55{bottom:417.337333pt;}
.y75{bottom:420.565333pt;}
.y17a{bottom:420.790667pt;}
.y26{bottom:424.997333pt;}
.y193{bottom:429.122667pt;}
.y3b{bottom:429.896000pt;}
.ya5{bottom:431.232000pt;}
.y125{bottom:432.569333pt;}
.y154{bottom:435.508000pt;}
.y54{bottom:436.597333pt;}
.y74{bottom:439.826667pt;}
.y179{bottom:440.052000pt;}
.y25{bottom:444.258667pt;}
.y192{bottom:448.384000pt;}
.ya4{bottom:450.493333pt;}
.y153{bottom:454.768000pt;}
.y53{bottom:455.858667pt;}
.y73{bottom:459.088000pt;}
.y178{bottom:459.313333pt;}
.y3a{bottom:464.761333pt;}
.ya3{bottom:469.754667pt;}
.y24{bottom:471.078667pt;}
.y191{bottom:473.134667pt;}
.y152{bottom:474.029333pt;}
.y72{bottom:478.349333pt;}
.y177{bottom:478.574667pt;}
.y124{bottom:484.558667pt;}
.y11d{bottom:486.522667pt;}
.ya2{bottom:489.016000pt;}
.y23{bottom:490.340000pt;}
.y151{bottom:493.290667pt;}
.y52{bottom:494.017333pt;}
.y71{bottom:497.610667pt;}
.y176{bottom:497.834667pt;}
.y190{bottom:497.884000pt;}
.yec{bottom:498.780000pt;}
.y39{bottom:499.626667pt;}
.yb9{bottom:501.753333pt;}
.y123{bottom:503.820000pt;}
.y11c{bottom:505.784000pt;}
.y13e{bottom:505.864000pt;}
.ya1{bottom:508.276000pt;}
.y150{bottom:512.552000pt;}
.y51{bottom:513.278667pt;}
.y70{bottom:516.872000pt;}
.y175{bottom:517.096000pt;}
.y18f{bottom:517.145333pt;}
.y22{bottom:517.160000pt;}
.yeb{bottom:518.041333pt;}
.yb8{bottom:521.014667pt;}
.y99{bottom:521.416000pt;}
.y122{bottom:523.080000pt;}
.y11b{bottom:525.045333pt;}
.y13d{bottom:525.125333pt;}
.ya0{bottom:527.537333pt;}
.y14f{bottom:531.813333pt;}
.y50{bottom:532.540000pt;}
.y38{bottom:534.492000pt;}
.y6f{bottom:536.132000pt;}
.y174{bottom:536.357333pt;}
.y18e{bottom:536.406667pt;}
.y21{bottom:536.421333pt;}
.yea{bottom:537.302667pt;}
.y195{bottom:537.308000pt;}
.yd2{bottom:540.036000pt;}
.yb7{bottom:540.276000pt;}
.y6{bottom:540.397333pt;}
.y98{bottom:540.677333pt;}
.y121{bottom:542.341333pt;}
.y11a{bottom:544.306667pt;}
.y13c{bottom:544.385333pt;}
.y9f{bottom:546.798667pt;}
.y14e{bottom:551.074667pt;}
.y4f{bottom:551.801333pt;}
.y10b{bottom:552.257333pt;}
.y37{bottom:553.753333pt;}
.y6e{bottom:555.393333pt;}
.y173{bottom:555.618667pt;}
.y18d{bottom:555.668000pt;}
.y20{bottom:555.682667pt;}
.ye9{bottom:556.562667pt;}
.yd1{bottom:559.296000pt;}
.yb6{bottom:559.537333pt;}
.y97{bottom:559.938667pt;}
.y119{bottom:563.566667pt;}
.y13b{bottom:563.646667pt;}
.y9e{bottom:566.060000pt;}
.y5{bottom:569.621333pt;}
.y14d{bottom:570.334667pt;}
.y4e{bottom:571.062667pt;}
.y10a{bottom:571.517333pt;}
.y36{bottom:573.014667pt;}
.y6d{bottom:574.654667pt;}
.y199{bottom:574.872000pt;}
.y172{bottom:574.880000pt;}
.ye8{bottom:575.824000pt;}
.yd0{bottom:578.557333pt;}
.yb5{bottom:578.797333pt;}
.y96{bottom:579.198667pt;}
.y18c{bottom:580.418667pt;}
.y13a{bottom:582.908000pt;}
.y19e{bottom:588.084000pt;}
.y14c{bottom:589.596000pt;}
.y4d{bottom:590.322667pt;}
.y1f{bottom:590.725333pt;}
.y109{bottom:590.778667pt;}
.y35{bottom:592.276000pt;}
.y118{bottom:593.120000pt;}
.y6c{bottom:593.916000pt;}
.y171{bottom:594.140000pt;}
.ye7{bottom:595.085333pt;}
.y9d{bottom:595.613333pt;}
.ycf{bottom:597.818667pt;}
.yb4{bottom:598.058667pt;}
.y95{bottom:598.460000pt;}
.y4{bottom:598.845333pt;}
.y18b{bottom:599.678667pt;}
.y139{bottom:602.169333pt;}
.y14b{bottom:608.857333pt;}
.y4c{bottom:609.584000pt;}
.y108{bottom:610.040000pt;}
.y6b{bottom:613.177333pt;}
.y170{bottom:613.401333pt;}
.ye6{bottom:614.346667pt;}
.yce{bottom:617.080000pt;}
.y94{bottom:617.721333pt;}
.y18a{bottom:618.940000pt;}
.y138{bottom:621.430667pt;}
.y197{bottom:623.158667pt;}
.yb3{bottom:624.878667pt;}
.y34{bottom:627.141333pt;}
.y3{bottom:628.069333pt;}
.y14a{bottom:628.118667pt;}
.y6a{bottom:632.438667pt;}
.y16f{bottom:632.662667pt;}
.ye5{bottom:633.608000pt;}
.y93{bottom:636.982667pt;}
.y189{bottom:643.690667pt;}
.ycd{bottom:643.900000pt;}
.y1e{bottom:643.964000pt;}
.yb2{bottom:644.140000pt;}
.y117{bottom:645.109333pt;}
.y33{bottom:646.402667pt;}
.y149{bottom:647.380000pt;}
.y9c{bottom:647.601333pt;}
.y4b{bottom:647.742667pt;}
.y69{bottom:651.698667pt;}
.y16e{bottom:651.924000pt;}
.y107{bottom:652.802667pt;}
.ye4{bottom:652.869333pt;}
.y92{bottom:656.244000pt;}
.y188{bottom:662.952000pt;}
.ycc{bottom:663.161333pt;}
.y1d{bottom:663.225333pt;}
.yb1{bottom:663.401333pt;}
.y116{bottom:664.370667pt;}
.y32{bottom:665.664000pt;}
.y148{bottom:666.640000pt;}
.y9b{bottom:666.862667pt;}
.y4a{bottom:667.004000pt;}
.yf7{bottom:667.921333pt;}
.y2{bottom:668.632000pt;}
.y68{bottom:670.960000pt;}
.y16d{bottom:671.185333pt;}
.y106{bottom:672.064000pt;}
.ye3{bottom:672.129333pt;}
.y91{bottom:675.504000pt;}
.y187{bottom:682.213333pt;}
.ycb{bottom:682.422667pt;}
.y1c{bottom:682.486667pt;}
.yb0{bottom:682.662667pt;}
.y115{bottom:683.630667pt;}
.y31{bottom:684.924000pt;}
.y147{bottom:685.901333pt;}
.y49{bottom:686.265333pt;}
.yf6{bottom:687.182667pt;}
.y67{bottom:690.221333pt;}
.y16c{bottom:690.446667pt;}
.y105{bottom:691.324000pt;}
.ye2{bottom:691.390667pt;}
.y90{bottom:694.765333pt;}
.yca{bottom:701.682667pt;}
.y1b{bottom:701.746667pt;}
.yaf{bottom:701.924000pt;}
.y114{bottom:702.892000pt;}
.y146{bottom:705.162667pt;}
.y48{bottom:705.526667pt;}
.yf5{bottom:706.444000pt;}
.y186{bottom:706.962667pt;}
.y66{bottom:709.482667pt;}
.y16b{bottom:709.706667pt;}
.ye1{bottom:710.652000pt;}
.y8f{bottom:714.026667pt;}
.y30{bottom:719.789333pt;}
.yc9{bottom:720.944000pt;}
.yae{bottom:721.184000pt;}
.y145{bottom:724.424000pt;}
.y47{bottom:724.788000pt;}
.yf4{bottom:725.705333pt;}
.y185{bottom:726.224000pt;}
.y1a{bottom:728.566667pt;}
.y65{bottom:728.744000pt;}
.y16a{bottom:728.968000pt;}
.ye0{bottom:729.913333pt;}
.y8e{bottom:733.288000pt;}
.y1{bottom:735.650667pt;}
.y2f{bottom:739.050667pt;}
.yc8{bottom:740.205333pt;}
.yad{bottom:740.445333pt;}
.y144{bottom:743.685333pt;}
.y46{bottom:744.048000pt;}
.yf3{bottom:744.966667pt;}
.y19{bottom:747.828000pt;}
.y64{bottom:748.005333pt;}
.y169{bottom:748.229333pt;}
.ydf{bottom:749.174667pt;}
.y184{bottom:750.974667pt;}
.y8d{bottom:752.549333pt;}
.y2e{bottom:758.312000pt;}
.yc7{bottom:759.466667pt;}
.yac{bottom:759.706667pt;}
.y143{bottom:762.946667pt;}
.y45{bottom:763.309333pt;}
.yf2{bottom:764.226667pt;}
.y18{bottom:767.089333pt;}
.y63{bottom:767.265333pt;}
.y168{bottom:767.490667pt;}
.yde{bottom:768.436000pt;}
.y183{bottom:770.234667pt;}
.y8c{bottom:771.810667pt;}
.yc6{bottom:778.728000pt;}
.y142{bottom:782.206667pt;}
.y44{bottom:782.570667pt;}
.yf1{bottom:783.488000pt;}
.y17{bottom:786.350667pt;}
.y62{bottom:786.526667pt;}
.y167{bottom:786.752000pt;}
.ydd{bottom:787.696000pt;}
.y182{bottom:789.496000pt;}
.y8b{bottom:791.070667pt;}
.y2d{bottom:793.177333pt;}
.yc5{bottom:797.989333pt;}
.y141{bottom:801.468000pt;}
.y43{bottom:801.832000pt;}
.yf0{bottom:802.749333pt;}
.y16{bottom:805.612000pt;}
.y61{bottom:805.788000pt;}
.y166{bottom:806.013333pt;}
.ydc{bottom:806.957333pt;}
.y181{bottom:808.757333pt;}
.y2c{bottom:812.438667pt;}
.yc4{bottom:817.249333pt;}
.y8a{bottom:820.624000pt;}
.y140{bottom:820.729333pt;}
.y42{bottom:821.093333pt;}
.yef{bottom:822.010667pt;}
.y60{bottom:825.049333pt;}
.ydb{bottom:826.218667pt;}
.y2b{bottom:831.700000pt;}
.y15{bottom:832.432000pt;}
.y180{bottom:833.508000pt;}
.yc3{bottom:836.510667pt;}
.y13f{bottom:839.990667pt;}
.y165{bottom:841.054667pt;}
.yee{bottom:841.272000pt;}
.y5f{bottom:844.310667pt;}
.yda{bottom:845.480000pt;}
.y14{bottom:851.693333pt;}
.y17f{bottom:852.769333pt;}
.yc2{bottom:855.772000pt;}
.y41{bottom:859.252000pt;}
.y89{bottom:860.316000pt;}
.y5e{bottom:863.570667pt;}
.yd9{bottom:864.741333pt;}
.y2a{bottom:866.565333pt;}
.yed{bottom:870.825333pt;}
.y17e{bottom:872.029333pt;}
.yc1{bottom:875.033333pt;}
.y13{bottom:878.513333pt;}
.y5d{bottom:882.832000pt;}
.yd8{bottom:884.001333pt;}
.y17d{bottom:891.290667pt;}
.yc0{bottom:894.294667pt;}
.y12{bottom:897.773333pt;}
.y29{bottom:901.430667pt;}
.y5c{bottom:902.093333pt;}
.yd7{bottom:903.262667pt;}
.y88{bottom:913.554667pt;}
.y11{bottom:917.034667pt;}
.yd6{bottom:922.524000pt;}
.y17c{bottom:926.333333pt;}
.y5b{bottom:931.646667pt;}
.y87{bottom:932.816000pt;}
.y10{bottom:936.296000pt;}
.yd5{bottom:941.785333pt;}
.y19d{bottom:947.428000pt;}
.y86{bottom:952.077333pt;}
.yf{bottom:971.338667pt;}
.y40{bottom:1026.266667pt;}
.hb{height:44.313941pt;}
.h9{height:44.696508pt;}
.h8{height:47.884561pt;}
.ha{height:51.451129pt;}
.h5{height:52.487964pt;}
.h6{height:53.712173pt;}
.h3{height:64.362642pt;}
.h7{height:64.454458pt;}
.h2{height:78.903200pt;}
.h4{height:92.670705pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:94.488000pt;}
.x1e{left:96.006667pt;}
.x4{left:98.532000pt;}
.x1d{left:99.588000pt;}
.x17{left:102.042667pt;}
.x25{left:103.509333pt;}
.xf{left:106.592000pt;}
.x7{left:107.901333pt;}
.x1c{left:110.861333pt;}
.x2c{left:111.997333pt;}
.x23{left:113.461333pt;}
.x9{left:116.924000pt;}
.xe{left:117.894667pt;}
.x3{left:118.790667pt;}
.x19{left:121.718667pt;}
.x2f{left:125.965333pt;}
.x8{left:131.866667pt;}
.x14{left:132.845333pt;}
.x1{left:140.542667pt;}
.x13{left:154.128000pt;}
.x2b{left:157.301333pt;}
.x2e{left:198.272000pt;}
.x21{left:232.044000pt;}
.x18{left:245.661333pt;}
.x6{left:255.928000pt;}
.x2d{left:263.044000pt;}
.x22{left:286.016000pt;}
.x2{left:289.446667pt;}
.x2a{left:300.110667pt;}
.x1f{left:303.397333pt;}
.x26{left:319.305333pt;}
.x20{left:324.246667pt;}
.x5{left:331.966667pt;}
.x24{left:337.988000pt;}
.x1a{left:344.522667pt;}
.x15{left:353.354667pt;}
.x16{left:440.909333pt;}
.xc{left:507.621333pt;}
.x12{left:527.022667pt;}
.xb{left:535.596000pt;}
.xa{left:565.773333pt;}
.x11{left:592.668000pt;}
.x10{left:628.216000pt;}
.x28{left:638.961333pt;}
.x27{left:642.474667pt;}
.x1b{left:663.800000pt;}
.x29{left:665.188000pt;}
}




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