
    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_5c9690796096136a7d384e5f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_41a0ccdb883419ad3cc53fd6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_9c37a34917e1bee2a673a933.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_8c6c1ce7a50005417f85a48a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_425e583b6f9283f37b078fdf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.897000;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_570fb762568746adbdbf8b63.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.890000;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_c7b11f9a80213f356bc7c0d6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.843000;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_67e1e2e4a2f7ff7d2cd39bf8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_4c045d67aa0f6f7f61416d24.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.875000;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_803ee75603a56df6019219eb.woff2')format("woff");}.ffa{font-family:ffa;line-height:2.399000;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_06175a2f11f709b4af724d8b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.732000;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_f4999da3c6bb96d7ce80a285.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_aeb9fb35101b18f76d6760bc.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_f619f96d9570790539c9386f.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_50cc1a35fd9116d0c644f1a4.woff2')format("woff");}.fff{font-family:fff;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_1a15cae1904a9bfe9f7cabb5.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_b8096a1147e73c74de2b4bbd.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.234000;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;}
.m3{transform:matrix(0.000000,-0.249997,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249997,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249997,0.250000,0.000000,0,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);}
.m2{transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250003,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);}
.v7{vertical-align:-97.074000px;}
.vb{vertical-align:-35.658082px;}
.v2{vertical-align:-21.696000px;}
.v3{vertical-align:-17.358000px;}
.vc{vertical-align:-12.372000px;}
.v4{vertical-align:-9.162000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:9.162000px;}
.v1{vertical-align:21.696000px;}
.va{vertical-align:40.470000px;}
.v6{vertical-align:84.312000px;}
.v9{vertical-align:110.574000px;}
.v8{vertical-align:125.316000px;}
.ls1e{letter-spacing:-2.340000px;}
.ls1f{letter-spacing:-0.420000px;}
.ls20{letter-spacing:-0.276000px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.003938px;}
.lsd{letter-spacing:0.004200px;}
.ls23{letter-spacing:0.005100px;}
.ls15{letter-spacing:0.834000px;}
.ls13{letter-spacing:0.840000px;}
.ls17{letter-spacing:1.164000px;}
.ls1{letter-spacing:2.987100px;}
.ls3{letter-spacing:2.989200px;}
.ls37{letter-spacing:2.993100px;}
.lsc{letter-spacing:4.188017px;}
.ls29{letter-spacing:4.965254px;}
.ls3e{letter-spacing:6.017137px;}
.ls3d{letter-spacing:6.059700px;}
.ls28{letter-spacing:6.564538px;}
.ls40{letter-spacing:6.599137px;}
.ls11{letter-spacing:6.633313px;}
.ls3f{letter-spacing:6.641700px;}
.ls39{letter-spacing:8.526538px;}
.ls38{letter-spacing:8.572200px;}
.lsb{letter-spacing:8.726383px;}
.lsa{letter-spacing:8.913269px;}
.ls2d{letter-spacing:8.928538px;}
.ls2c{letter-spacing:8.986200px;}
.ls26{letter-spacing:10.254538px;}
.ls3b{letter-spacing:10.536538px;}
.ls3a{letter-spacing:10.582200px;}
.ls5{letter-spacing:10.734538px;}
.ls27{letter-spacing:11.802538px;}
.ls3c{letter-spacing:12.222538px;}
.ls33{letter-spacing:12.761137px;}
.ls19{letter-spacing:13.012513px;}
.ls4{letter-spacing:13.164538px;}
.ls9{letter-spacing:13.281997px;}
.ls6{letter-spacing:13.282200px;}
.ls2b{letter-spacing:13.286400px;}
.ls36{letter-spacing:13.914538px;}
.ls35{letter-spacing:13.920538px;}
.ls25{letter-spacing:14.628538px;}
.ls21{letter-spacing:14.976394px;}
.ls2{letter-spacing:15.114538px;}
.ls2e{letter-spacing:16.212538px;}
.ls30{letter-spacing:16.295100px;}
.ls2f{letter-spacing:16.350538px;}
.ls2a{letter-spacing:16.776538px;}
.ls1c{letter-spacing:16.853700px;}
.ls1b{letter-spacing:16.853983px;}
.ls1d{letter-spacing:16.854034px;}
.ls32{letter-spacing:17.574538px;}
.ls14{letter-spacing:18.391817px;}
.ls31{letter-spacing:18.396538px;}
.ls24{letter-spacing:18.425100px;}
.ls22{letter-spacing:18.898784px;}
.ls18{letter-spacing:19.077034px;}
.ls7{letter-spacing:22.250400px;}
.ls34{letter-spacing:22.985100px;}
.ls8{letter-spacing:23.672383px;}
.ls41{letter-spacing:24.268894px;}
.ls1a{letter-spacing:24.755404px;}
.ls10{letter-spacing:32.694538px;}
.ls16{letter-spacing:34.284900px;}
.lsf{letter-spacing:150.959100px;}
.ls12{letter-spacing:240.020338px;}
.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;}
}
.ws3e{word-spacing:-59.775600px;}
.ws3{word-spacing:-44.233800px;}
.ws0{word-spacing:-18.984000px;}
.ws41{word-spacing:-15.777900px;}
.ws65{word-spacing:-15.003138px;}
.ws4{word-spacing:-14.943900px;}
.ws49{word-spacing:-14.523900px;}
.ws25{word-spacing:-11.955150px;}
.ws2{word-spacing:-11.058450px;}
.wsd3{word-spacing:-4.977300px;}
.ws1b{word-spacing:-4.973100px;}
.ws93{word-spacing:-4.969567px;}
.ws94{word-spacing:-4.961375px;}
.wsc9{word-spacing:-3.347434px;}
.ws2b{word-spacing:-3.048556px;}
.ws26{word-spacing:-2.821415px;}
.ws16{word-spacing:-2.809453px;}
.ws35{word-spacing:-2.689902px;}
.wsdc{word-spacing:-2.630126px;}
.wsb6{word-spacing:-2.510575px;}
.wsae{word-spacing:-2.343209px;}
.wsf8{word-spacing:-2.331248px;}
.ws9d{word-spacing:-2.295389px;}
.wsc2{word-spacing:-2.271473px;}
.wsf1{word-spacing:-2.151922px;}
.wsa5{word-spacing:-1.912819px;}
.wsa1{word-spacing:-1.817183px;}
.ws96{word-spacing:-1.793268px;}
.ws8d{word-spacing:-1.733492px;}
.wsd5{word-spacing:-1.673717px;}
.ws36{word-spacing:-1.613941px;}
.ws39{word-spacing:-1.554166px;}
.wscc{word-spacing:-1.434618px;}
.ws73{word-spacing:-1.374839px;}
.wsa6{word-spacing:-1.315063px;}
.wsa0{word-spacing:-1.291156px;}
.ws5d{word-spacing:-1.255288px;}
.ws85{word-spacing:-1.195515px;}
.ws58{word-spacing:-1.195512px;}
.wsa{word-spacing:-1.135736px;}
.ws8a{word-spacing:-1.075961px;}
.ws2a{word-spacing:-1.016185px;}
.ws29{word-spacing:-0.956410px;}
.wsda{word-spacing:-0.896634px;}
.wscd{word-spacing:-0.860771px;}
.wsb4{word-spacing:-0.836858px;}
.ws95{word-spacing:-0.777083px;}
.wsfc{word-spacing:-0.765130px;}
.ws7b{word-spacing:-0.717307px;}
.wsf3{word-spacing:-0.657532px;}
.wsed{word-spacing:-0.621668px;}
.ws50{word-spacing:-0.597756px;}
.ws9e{word-spacing:-0.526027px;}
.wsa4{word-spacing:-0.358654px;}
.ws23{word-spacing:-0.334744px;}
.wsc4{word-spacing:-0.298878px;}
.ws24{word-spacing:-0.286924px;}
.ws8{word-spacing:-0.239102px;}
.ws2e{word-spacing:-0.179327px;}
.ws2f{word-spacing:-0.119551px;}
.ws34{word-spacing:-0.059776px;}
.wsee{word-spacing:-0.047821px;}
.ws77{word-spacing:-0.044234px;}
.ws3d{word-spacing:-0.002117px;}
.ws1{word-spacing:0.000000px;}
.ws3b{word-spacing:0.059776px;}
.wsab{word-spacing:0.119551px;}
.wsd0{word-spacing:0.179327px;}
.ws69{word-spacing:0.239103px;}
.wsc8{word-spacing:0.298878px;}
.ws6b{word-spacing:0.334744px;}
.ws9{word-spacing:0.358654px;}
.ws5b{word-spacing:0.478205px;}
.wsbf{word-spacing:0.478206px;}
.ws28{word-spacing:0.526027px;}
.ws32{word-spacing:0.537980px;}
.ws30{word-spacing:0.597756px;}
.ws79{word-spacing:0.657532px;}
.ws78{word-spacing:0.717307px;}
.ws31{word-spacing:0.777083px;}
.ws9c{word-spacing:0.860771px;}
.ws5{word-spacing:0.896634px;}
.wsdd{word-spacing:0.956410px;}
.ws1d{word-spacing:1.075961px;}
.ws7e{word-spacing:1.135736px;}
.wse3{word-spacing:1.195512px;}
.wsd4{word-spacing:1.208621px;}
.wsd{word-spacing:1.255288px;}
.wsd2{word-spacing:1.315063px;}
.ws38{word-spacing:1.374839px;}
.ws9f{word-spacing:1.386797px;}
.wsc6{word-spacing:1.434614px;}
.wsf2{word-spacing:1.494390px;}
.ws3a{word-spacing:1.554166px;}
.wsa2{word-spacing:1.578080px;}
.ws4f{word-spacing:1.613941px;}
.ws4e{word-spacing:1.673717px;}
.ws4c{word-spacing:1.756567px;}
.wsdb{word-spacing:1.793268px;}
.ws44{word-spacing:1.805683px;}
.ws45{word-spacing:1.806076px;}
.ws4a{word-spacing:1.808150px;}
.ws3f{word-spacing:1.821485px;}
.ws40{word-spacing:1.824692px;}
.wsac{word-spacing:1.853044px;}
.ws4b{word-spacing:1.867926px;}
.ws5e{word-spacing:1.912819px;}
.ws62{word-spacing:1.972595px;}
.wsfb{word-spacing:2.056286px;}
.ws8c{word-spacing:2.092146px;}
.wsd8{word-spacing:2.211697px;}
.ws7a{word-spacing:2.391024px;}
.ws80{word-spacing:2.510575px;}
.ws1f{word-spacing:2.570351px;}
.ws84{word-spacing:2.630133px;}
.ws83{word-spacing:2.677954px;}
.wsb5{word-spacing:2.689902px;}
.ws76{word-spacing:2.749678px;}
.ws46{word-spacing:2.803309px;}
.ws47{word-spacing:2.806292px;}
.ws48{word-spacing:2.807801px;}
.wsc1{word-spacing:2.809453px;}
.ws7c{word-spacing:2.929004px;}
.ws9b{word-spacing:2.964877px;}
.ws7d{word-spacing:2.988780px;}
.ws97{word-spacing:3.048556px;}
.wscb{word-spacing:3.156160px;}
.ws2c{word-spacing:3.227882px;}
.wsad{word-spacing:3.287658px;}
.ws1c{word-spacing:3.347434px;}
.ws1a{word-spacing:3.407209px;}
.ws56{word-spacing:3.526760px;}
.ws27{word-spacing:3.586545px;}
.wsa9{word-spacing:3.825638px;}
.ws33{word-spacing:3.885414px;}
.wsce{word-spacing:3.921289px;}
.ws6{word-spacing:4.004965px;}
.ws87{word-spacing:4.016930px;}
.ws72{word-spacing:4.064741px;}
.ws7{word-spacing:4.124516px;}
.ws68{word-spacing:4.160392px;}
.wsc5{word-spacing:4.184292px;}
.wsba{word-spacing:4.244068px;}
.ws17{word-spacing:4.303843px;}
.wsca{word-spacing:4.423394px;}
.ws99{word-spacing:4.542946px;}
.ws82{word-spacing:4.590778px;}
.wsaa{word-spacing:4.602721px;}
.wseb{word-spacing:4.638598px;}
.ws10{word-spacing:4.662497px;}
.wsd6{word-spacing:4.722272px;}
.wsf9{word-spacing:4.782048px;}
.ws37{word-spacing:4.841824px;}
.ws81{word-spacing:4.961375px;}
.ws74{word-spacing:5.021150px;}
.ws6a{word-spacing:5.021163px;}
.ws61{word-spacing:5.080926px;}
.ws60{word-spacing:5.140702px;}
.ws98{word-spacing:5.200477px;}
.wsbc{word-spacing:5.260253px;}
.ws92{word-spacing:5.320028px;}
.ws8e{word-spacing:5.379804px;}
.wsa7{word-spacing:5.499355px;}
.ws86{word-spacing:5.499369px;}
.ws7f{word-spacing:5.559131px;}
.ws2d{word-spacing:5.618906px;}
.wsb0{word-spacing:5.738458px;}
.wsc0{word-spacing:5.798233px;}
.ws9a{word-spacing:5.881934px;}
.ws1e{word-spacing:5.977560px;}
.ws5a{word-spacing:6.037336px;}
.ws20{word-spacing:6.097111px;}
.wsd7{word-spacing:6.156887px;}
.ws6e{word-spacing:6.336214px;}
.ws5c{word-spacing:6.395989px;}
.ws89{word-spacing:6.455765px;}
.wsb7{word-spacing:6.515540px;}
.wscf{word-spacing:6.551422px;}
.wsb3{word-spacing:6.575316px;}
.ws3c{word-spacing:6.590836px;}
.ws5f{word-spacing:6.754643px;}
.wsfa{word-spacing:6.790525px;}
.wsbb{word-spacing:6.814418px;}
.ws13{word-spacing:6.874194px;}
.ws11{word-spacing:6.933970px;}
.ws8f{word-spacing:6.993745px;}
.ws8b{word-spacing:7.053521px;}
.wsd1{word-spacing:7.113296px;}
.ws15{word-spacing:7.173072px;}
.wsec{word-spacing:7.173090px;}
.wsb1{word-spacing:7.292623px;}
.wsaf{word-spacing:7.507834px;}
.ws91{word-spacing:7.591501px;}
.wsbd{word-spacing:7.651296px;}
.ws6c{word-spacing:7.770828px;}
.wsc7{word-spacing:7.830604px;}
.ws59{word-spacing:7.890379px;}
.wsc{word-spacing:8.189257px;}
.ws18{word-spacing:8.368584px;}
.ws57{word-spacing:8.488135px;}
.wsd9{word-spacing:8.607686px;}
.ws6f{word-spacing:8.667462px;}
.wsea{word-spacing:8.727238px;}
.wsf{word-spacing:8.846789px;}
.wsa8{word-spacing:8.906564px;}
.wsef{word-spacing:9.085891px;}
.wse{word-spacing:9.145667px;}
.ws51{word-spacing:9.205442px;}
.wsc3{word-spacing:9.265218px;}
.wsf7{word-spacing:9.324994px;}
.wse5{word-spacing:9.504320px;}
.ws90{word-spacing:9.683647px;}
.wsb2{word-spacing:9.803198px;}
.ws70{word-spacing:9.862974px;}
.ws19{word-spacing:9.982525px;}
.wse6{word-spacing:10.042301px;}
.wsbe{word-spacing:10.137967px;}
.wsdf{word-spacing:10.161852px;}
.wse9{word-spacing:10.221628px;}
.ws71{word-spacing:10.580281px;}
.ws66{word-spacing:10.670681px;}
.wsb8{word-spacing:10.699832px;}
.wse8{word-spacing:11.058486px;}
.ws12{word-spacing:11.536691px;}
.ws21{word-spacing:11.907329px;}
.ws22{word-spacing:11.920644px;}
.ws52{word-spacing:12.014896px;}
.wsb9{word-spacing:12.134447px;}
.wsde{word-spacing:12.253998px;}
.ws14{word-spacing:12.313774px;}
.ws6d{word-spacing:12.433325px;}
.wse4{word-spacing:12.911530px;}
.wse0{word-spacing:13.389734px;}
.ws55{word-spacing:13.808164px;}
.wsf0{word-spacing:14.047266px;}
.wsf4{word-spacing:14.226593px;}
.wsa3{word-spacing:14.405920px;}
.ws75{word-spacing:14.884124px;}
.ws53{word-spacing:14.943900px;}
.ws64{word-spacing:14.949651px;}
.ws42{word-spacing:16.319717px;}
.ws43{word-spacing:16.379492px;}
.ws4d{word-spacing:17.872904px;}
.ws67{word-spacing:18.153173px;}
.ws88{word-spacing:19.307519px;}
.wse1{word-spacing:20.204153px;}
.ws54{word-spacing:20.921460px;}
.wse2{word-spacing:21.280114px;}
.wsf6{word-spacing:24.209118px;}
.wsf5{word-spacing:25.583957px;}
.wsb{word-spacing:29.828024px;}
.wse7{word-spacing:33.773214px;}
.ws63{word-spacing:185.751864px;}
._24{margin-left:-18.937578px;}
._21{margin-left:-14.976394px;}
._22{margin-left:-11.078597px;}
._23{margin-left:-9.271101px;}
._2{margin-left:-7.353600px;}
._c{margin-left:-6.072906px;}
._3{margin-left:-4.284000px;}
._16{margin-left:-3.119696px;}
._1{margin-left:-1.996800px;}
._f{width:1.676774px;}
._e{width:3.983754px;}
._0{width:5.587200px;}
._26{width:6.783501px;}
._2c{width:7.794129px;}
._27{width:8.800518px;}
._14{width:10.332378px;}
._2a{width:11.333558px;}
._17{width:12.337979px;}
._10{width:13.561196px;}
._d{width:15.052090px;}
._4{width:16.880924px;}
._12{width:18.052231px;}
._7{width:19.725948px;}
._5{width:21.021168px;}
._28{width:22.134142px;}
._a{width:23.611362px;}
._1c{width:24.986201px;}
._9{width:26.002386px;}
._29{width:27.156724px;}
._11{width:28.273859px;}
._2b{width:29.397221px;}
._25{width:30.470614px;}
._6{width:31.506103px;}
._2e{width:32.586503px;}
._15{width:33.677868px;}
._18{width:35.539567px;}
._13{width:36.690853px;}
._1d{width:38.579467px;}
._b{width:40.169203px;}
._1a{width:43.397086px;}
._8{width:45.309944px;}
._19{width:46.888276px;}
._2d{width:55.854616px;}
._1b{width:59.248985px;}
._2f{width:81.438572px;}
._20{width:209.669523px;}
._1e{width:227.520628px;}
._1f{width:232.134115px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:26.743562px;}
.fsd{font-size:32.448855px;}
.fsa{font-size:34.231759px;}
.fs6{font-size:35.865600px;}
.fsc{font-size:38.510729px;}
.fsb{font-size:38.511135px;}
.fs5{font-size:44.233800px;}
.fs7{font-size:47.820600px;}
.fs4{font-size:59.775600px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:84.000000px;}
.fs8{font-size:86.076600px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y93{bottom:4.100576px;}
.yc{bottom:8.040000px;}
.y8a{bottom:19.522697px;}
.y8b{bottom:27.902346px;}
.y16{bottom:55.635000px;}
.y1c{bottom:69.510000px;}
.y92{bottom:69.800593px;}
.y15{bottom:77.715000px;}
.y8c{bottom:77.823661px;}
.y1b{bottom:91.590000px;}
.yc9{bottom:94.929000px;}
.y14{bottom:99.795000px;}
.y1a{bottom:113.670000px;}
.y99{bottom:118.206439px;}
.y72{bottom:121.828491px;}
.y4e{bottom:121.828500px;}
.y121{bottom:124.416000px;}
.y8d{bottom:127.744976px;}
.y98{bottom:128.101557px;}
.y10{bottom:133.935000px;}
.y19{bottom:135.750000px;}
.y91{bottom:137.194368px;}
.y97{bottom:137.996675px;}
.y120{bottom:138.613500px;}
.y71{bottom:139.760991px;}
.yad{bottom:139.761000px;}
.y4d{bottom:140.364000px;}
.y90{bottom:147.713502px;}
.y96{bottom:147.891792px;}
.y4c{bottom:150.738000px;}
.y11f{bottom:152.809500px;}
.y17{bottom:154.950000px;}
.yf{bottom:156.015000px;}
.y70{bottom:157.693491px;}
.yac{bottom:157.693500px;}
.y95{bottom:157.786910px;}
.y18{bottom:157.830000px;}
.y8f{bottom:158.232636px;}
.y4b{bottom:164.935500px;}
.y11e{bottom:167.007000px;}
.y94{bottom:167.682028px;}
.y4a{bottom:169.275000px;}
.y6f{bottom:175.625991px;}
.yab{bottom:175.626000px;}
.y8e{bottom:177.666291px;}
.y49{bottom:183.988500px;}
.yaa{bottom:193.558500px;}
.y6e{bottom:193.559991px;}
.yd5{bottom:193.560000px;}
.y48{bottom:194.362500px;}
.y47{bottom:208.560000px;}
.y6d{bottom:211.492491px;}
.ya9{bottom:211.492500px;}
.y46{bottom:212.899500px;}
.y45{bottom:227.613000px;}
.ya8{bottom:229.425000px;}
.y68{bottom:234.189000px;}
.y44{bottom:237.987000px;}
.y6b{bottom:238.411491px;}
.y6a{bottom:238.411500px;}
.ya7{bottom:247.357500px;}
.y6c{bottom:248.662491px;}
.y67{bottom:248.662500px;}
.y43{bottom:256.522500px;}
.y69{bottom:258.780000px;}
.ya6{bottom:265.290000px;}
.ye8{bottom:266.784000px;}
.yd4{bottom:267.558000px;}
.y144{bottom:271.267500px;}
.ya5{bottom:283.222500px;}
.y143{bottom:285.465000px;}
.y66{bottom:287.578500px;}
.y42{bottom:293.893500px;}
.y142{bottom:299.661000px;}
.ye7{bottom:300.697500px;}
.yc8{bottom:301.155000px;}
.ya4{bottom:301.156500px;}
.y65{bottom:305.511000px;}
.y41{bottom:311.826000px;}
.y141{bottom:313.858500px;}
.ye6{bottom:318.630000px;}
.ya3{bottom:319.089000px;}
.y64{bottom:323.443500px;}
.yd3{bottom:327.202500px;}
.y140{bottom:328.054500px;}
.y40{bottom:329.758500px;}
.ye5{bottom:336.562500px;}
.ya2{bottom:337.021500px;}
.y63{bottom:341.376000px;}
.yd2{bottom:341.398500px;}
.y13f{bottom:342.252000px;}
.ya{bottom:344.680500px;}
.y3f{bottom:347.692500px;}
.ye4{bottom:354.495000px;}
.ya1{bottom:354.954000px;}
.yd1{bottom:355.596000px;}
.y13e{bottom:356.448000px;}
.y62{bottom:359.310000px;}
.y3e{bottom:365.625000px;}
.yd0{bottom:369.792000px;}
.y13d{bottom:370.645500px;}
.ye3{bottom:372.427500px;}
.ya0{bottom:372.886500px;}
.y61{bottom:377.242500px;}
.y3d{bottom:383.557500px;}
.ycf{bottom:383.989500px;}
.y13c{bottom:384.841500px;}
.yd{bottom:386.490000px;}
.ye2{bottom:390.360000px;}
.yc7{bottom:390.819000px;}
.y60{bottom:395.175000px;}
.y9{bottom:395.689500px;}
.yce{bottom:398.185500px;}
.y13b{bottom:399.039000px;}
.y3c{bottom:401.490000px;}
.ye1{bottom:408.294000px;}
.yf6{bottom:408.751500px;}
.ycd{bottom:412.383000px;}
.y5f{bottom:413.107500px;}
.y13a{bottom:413.235000px;}
.yc6{bottom:413.718000px;}
.y9f{bottom:419.403000px;}
.y3b{bottom:419.422500px;}
.y11d{bottom:423.690000px;}
.ye0{bottom:426.226500px;}
.ycc{bottom:426.579000px;}
.yf5{bottom:426.685500px;}
.y139{bottom:427.432500px;}
.y5e{bottom:431.040000px;}
.yc5{bottom:431.650500px;}
.y9e{bottom:433.600500px;}
.yb{bottom:434.850000px;}
.y3a{bottom:437.355000px;}
.ycb{bottom:440.776500px;}
.y11c{bottom:441.622500px;}
.y138{bottom:441.628500px;}
.ydf{bottom:444.159000px;}
.yf4{bottom:444.618000px;}
.y8{bottom:446.698500px;}
.y9d{bottom:447.796500px;}
.y5d{bottom:448.972500px;}
.yca{bottom:454.972500px;}
.y39{bottom:455.289000px;}
.y137{bottom:455.826000px;}
.y11b{bottom:459.555000px;}
.y9c{bottom:461.994000px;}
.yde{bottom:462.091500px;}
.yf3{bottom:462.550500px;}
.y5c{bottom:466.906500px;}
.y136{bottom:470.022000px;}
.y38{bottom:473.221500px;}
.y9b{bottom:476.190000px;}
.y11a{bottom:477.487500px;}
.ydd{bottom:480.024000px;}
.yf2{bottom:480.483000px;}
.y135{bottom:484.219500px;}
.y5b{bottom:484.839000px;}
.y11{bottom:488.055000px;}
.yc4{bottom:488.658000px;}
.y9a{bottom:490.387500px;}
.y37{bottom:491.154000px;}
.y119{bottom:495.420000px;}
.y7{bottom:497.707500px;}
.ydc{bottom:497.956500px;}
.yf1{bottom:498.415500px;}
.y5a{bottom:502.771500px;}
.yc3{bottom:502.854000px;}
.y36{bottom:509.086500px;}
.y134{bottom:512.613000px;}
.y118{bottom:513.354000px;}
.ydb{bottom:515.890500px;}
.yf0{bottom:516.349500px;}
.yc2{bottom:517.051500px;}
.y89{bottom:519.531140px;}
.y59{bottom:520.704000px;}
.y133{bottom:526.809000px;}
.y35{bottom:527.019000px;}
.yc1{bottom:531.247500px;}
.y117{bottom:531.286500px;}
.yda{bottom:533.823000px;}
.yef{bottom:534.282000px;}
.y12{bottom:538.230000px;}
.y58{bottom:538.636500px;}
.y132{bottom:541.006500px;}
.y34{bottom:544.953000px;}
.yc0{bottom:545.445000px;}
.y6{bottom:548.716500px;}
.y116{bottom:549.219000px;}
.yd9{bottom:551.755500px;}
.yee{bottom:552.214500px;}
.y131{bottom:555.202500px;}
.y57{bottom:556.570500px;}
.ybf{bottom:559.641000px;}
.y33{bottom:562.885500px;}
.y115{bottom:567.151500px;}
.y130{bottom:569.400000px;}
.y103{bottom:570.147000px;}
.ybe{bottom:573.838500px;}
.y56{bottom:574.503000px;}
.yed{bottom:579.571500px;}
.y32{bottom:580.818000px;}
.y12f{bottom:583.596000px;}
.y114{bottom:585.084000px;}
.yd8{bottom:585.672000px;}
.y102{bottom:588.079500px;}
.y1d{bottom:589.605000px;}
.y55{bottom:592.435500px;}
.y12e{bottom:597.793500px;}
.y31{bottom:598.750500px;}
.y5{bottom:599.725500px;}
.yd7{bottom:599.868000px;}
.y113{bottom:603.016500px;}
.y101{bottom:606.012000px;}
.y54{bottom:610.368000px;}
.y12d{bottom:611.989500px;}
.yd6{bottom:614.065500px;}
.y30{bottom:616.683000px;}
.y112{bottom:620.950500px;}
.y12c{bottom:626.187000px;}
.y53{bottom:628.300500px;}
.ye{bottom:631.920000px;}
.y2f{bottom:634.615500px;}
.y111{bottom:638.883000px;}
.y100{bottom:640.122000px;}
.y12b{bottom:640.383000px;}
.yec{bottom:642.310500px;}
.y52{bottom:646.233000px;}
.y2e{bottom:652.549500px;}
.yff{bottom:654.318000px;}
.y12a{bottom:654.580500px;}
.yeb{bottom:656.508000px;}
.y110{bottom:656.815500px;}
.y51{bottom:664.167000px;}
.yfe{bottom:668.515500px;}
.y2d{bottom:670.482000px;}
.yea{bottom:670.705500px;}
.y10f{bottom:674.748000px;}
.y50{bottom:682.099500px;}
.y129{bottom:682.227000px;}
.yfd{bottom:682.711500px;}
.ye9{bottom:684.901500px;}
.y2c{bottom:688.414500px;}
.y10e{bottom:692.680500px;}
.yfc{bottom:696.909000px;}
.y4f{bottom:700.032000px;}
.yfb{bottom:711.105000px;}
.y2b{bottom:717.964500px;}
.y10d{bottom:723.744000px;}
.yfa{bottom:725.302500px;}
.y128{bottom:727.059000px;}
.yf9{bottom:739.498500px;}
.y127{bottom:744.991500px;}
.y88{bottom:749.475000px;}
.yf8{bottom:753.696000px;}
.y126{bottom:762.924000px;}
.y87{bottom:767.407500px;}
.y10c{bottom:768.258000px;}
.y2a{bottom:769.618350px;}
.y4{bottom:778.225500px;}
.y125{bottom:780.856500px;}
.y86{bottom:785.340000px;}
.y10b{bottom:786.190500px;}
.y29{bottom:787.550850px;}
.y124{bottom:798.789000px;}
.y85{bottom:803.272500px;}
.y10a{bottom:804.123000px;}
.y28{bottom:805.483350px;}
.y13{bottom:815.670000px;}
.y123{bottom:816.723000px;}
.y84{bottom:821.205000px;}
.y27{bottom:823.415850px;}
.ybd{bottom:825.205500px;}
.y109{bottom:833.799000px;}
.y83{bottom:839.137500px;}
.y26{bottom:841.350000px;}
.ybc{bottom:843.139500px;}
.y122{bottom:848.104500px;}
.y108{bottom:851.731500px;}
.y82{bottom:857.071500px;}
.y25{bottom:859.282500px;}
.ybb{bottom:861.072000px;}
.y107{bottom:869.664000px;}
.y81{bottom:875.004000px;}
.y24{bottom:877.215000px;}
.yba{bottom:879.004500px;}
.y106{bottom:887.596500px;}
.y80{bottom:892.936500px;}
.y23{bottom:895.147500px;}
.yb9{bottom:896.937000px;}
.y105{bottom:905.529000px;}
.y3{bottom:905.716500px;}
.y7f{bottom:910.869000px;}
.yb8{bottom:914.869500px;}
.y22{bottom:922.047000px;}
.y7e{bottom:928.801500px;}
.yb7{bottom:932.802000px;}
.y104{bottom:935.205000px;}
.y7d{bottom:946.735500px;}
.yb6{bottom:950.736000px;}
.y2{bottom:964.228500px;}
.y7c{bottom:964.668000px;}
.yb5{bottom:968.668500px;}
.y7b{bottom:982.600500px;}
.yb4{bottom:986.601000px;}
.y1{bottom:989.716500px;}
.y7a{bottom:1000.533000px;}
.yb3{bottom:1004.533500px;}
.y79{bottom:1018.465500px;}
.y21{bottom:1021.723500px;}
.yb2{bottom:1022.466000px;}
.y78{bottom:1036.398000px;}
.y20{bottom:1039.656000px;}
.yb1{bottom:1040.398500px;}
.yf7{bottom:1054.330500px;}
.y77{bottom:1054.332000px;}
.yb0{bottom:1058.332500px;}
.y76{bottom:1072.264500px;}
.yaf{bottom:1076.265000px;}
.y1f{bottom:1084.488000px;}
.y75{bottom:1090.197000px;}
.yae{bottom:1094.197500px;}
.y74{bottom:1108.129500px;}
.y1e{bottom:1111.386000px;}
.y73{bottom:1126.062000px;}
.h10{height:24.675533px;}
.he{height:26.899200px;}
.h1b{height:27.488167px;}
.h16{height:30.211685px;}
.hf{height:32.900573px;}
.h4{height:33.000000px;}
.h11{height:33.134573px;}
.h12{height:33.140573px;}
.h1f{height:33.352309px;}
.h1c{height:35.184854px;}
.h22{height:35.865450px;}
.h1e{height:39.582961px;}
.h1d{height:39.583379px;}
.h21{height:40.826735px;}
.hd{height:41.125613px;}
.hc{height:41.304940px;}
.h13{height:41.425613px;}
.h14{height:44.831700px;}
.h19{height:44.951251px;}
.hb{height:52.128854px;}
.ha{height:54.871350px;}
.h20{height:54.877350px;}
.h3{height:58.406250px;}
.h9{height:59.221114px;}
.h2{height:66.750000px;}
.h5{height:67.740234px;}
.h18{height:81.595613px;}
.h15{height:86.703024px;}
.h7{height:115.215000px;}
.h17{height:141.006854px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.h1a{height:187.204867px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.wa{width:374.414048px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.w9{width:892.914000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.x27{left:9.895222px;}
.x25{left:13.550214px;}
.x24{left:17.294353px;}
.x23{left:21.038491px;}
.x26{left:50.278427px;}
.x22{left:55.092319px;}
.xe{left:56.419500px;}
.x21{left:57.496500px;}
.xc{left:64.440000px;}
.xf{left:71.364000px;}
.x10{left:72.708000px;}
.x11{left:77.938500px;}
.x30{left:86.307000px;}
.x28{left:94.494916px;}
.xa{left:100.452000px;}
.x16{left:105.901500px;}
.x12{left:118.704000px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.x17{left:130.959000px;}
.x5{left:174.105000px;}
.x2{left:191.040000px;}
.x7{left:200.715000px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.x29{left:270.112825px;}
.x14{left:280.029000px;}
.x2a{left:288.120347px;}
.x15{left:305.086500px;}
.x13{left:314.946000px;}
.xd{left:320.779500px;}
.xb{left:377.724000px;}
.x2d{left:442.720500px;}
.x18{left:459.906000px;}
.x32{left:465.883500px;}
.x2e{left:467.010000px;}
.x2f{left:471.802500px;}
.x2b{left:474.850500px;}
.x34{left:487.296000px;}
.x2c{left:489.793500px;}
.x19{left:491.409000px;}
.x33{left:512.532000px;}
.x1a{left:537.348150px;}
.x1b{left:590.431650px;}
.x1c{left:604.315650px;}
.x1d{left:639.516000px;}
.x1e{left:721.534500px;}
.x1f{left:737.014481px;}
.x31{left:746.437500px;}
.x20{left:754.912481px;}
@media print{
.v7{vertical-align:-86.288000pt;}
.vb{vertical-align:-31.696073pt;}
.v2{vertical-align:-19.285333pt;}
.v3{vertical-align:-15.429333pt;}
.vc{vertical-align:-10.997333pt;}
.v4{vertical-align:-8.144000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:8.144000pt;}
.v1{vertical-align:19.285333pt;}
.va{vertical-align:35.973333pt;}
.v6{vertical-align:74.944000pt;}
.v9{vertical-align:98.288000pt;}
.v8{vertical-align:111.392000pt;}
.ls1e{letter-spacing:-2.080000pt;}
.ls1f{letter-spacing:-0.373333pt;}
.ls20{letter-spacing:-0.245333pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.003501pt;}
.lsd{letter-spacing:0.003733pt;}
.ls23{letter-spacing:0.004533pt;}
.ls15{letter-spacing:0.741333pt;}
.ls13{letter-spacing:0.746667pt;}
.ls17{letter-spacing:1.034667pt;}
.ls1{letter-spacing:2.655200pt;}
.ls3{letter-spacing:2.657067pt;}
.ls37{letter-spacing:2.660533pt;}
.lsc{letter-spacing:3.722682pt;}
.ls29{letter-spacing:4.413559pt;}
.ls3e{letter-spacing:5.348567pt;}
.ls3d{letter-spacing:5.386400pt;}
.ls28{letter-spacing:5.835145pt;}
.ls40{letter-spacing:5.865900pt;}
.ls11{letter-spacing:5.896278pt;}
.ls3f{letter-spacing:5.903733pt;}
.ls39{letter-spacing:7.579145pt;}
.ls38{letter-spacing:7.619733pt;}
.lsb{letter-spacing:7.756785pt;}
.lsa{letter-spacing:7.922906pt;}
.ls2d{letter-spacing:7.936479pt;}
.ls2c{letter-spacing:7.987733pt;}
.ls26{letter-spacing:9.115145pt;}
.ls3b{letter-spacing:9.365812pt;}
.ls3a{letter-spacing:9.406400pt;}
.ls5{letter-spacing:9.541812pt;}
.ls27{letter-spacing:10.491145pt;}
.ls3c{letter-spacing:10.864479pt;}
.ls33{letter-spacing:11.343233pt;}
.ls19{letter-spacing:11.566678pt;}
.ls4{letter-spacing:11.701812pt;}
.ls9{letter-spacing:11.806220pt;}
.ls6{letter-spacing:11.806400pt;}
.ls2b{letter-spacing:11.810133pt;}
.ls36{letter-spacing:12.368479pt;}
.ls35{letter-spacing:12.373812pt;}
.ls25{letter-spacing:13.003145pt;}
.ls21{letter-spacing:13.312351pt;}
.ls2{letter-spacing:13.435145pt;}
.ls2e{letter-spacing:14.411145pt;}
.ls30{letter-spacing:14.484533pt;}
.ls2f{letter-spacing:14.533812pt;}
.ls2a{letter-spacing:14.912479pt;}
.ls1c{letter-spacing:14.981067pt;}
.ls1b{letter-spacing:14.981318pt;}
.ls1d{letter-spacing:14.981363pt;}
.ls32{letter-spacing:15.621812pt;}
.ls14{letter-spacing:16.348282pt;}
.ls31{letter-spacing:16.352479pt;}
.ls24{letter-spacing:16.377867pt;}
.ls22{letter-spacing:16.798919pt;}
.ls18{letter-spacing:16.957363pt;}
.ls7{letter-spacing:19.778133pt;}
.ls34{letter-spacing:20.431200pt;}
.ls8{letter-spacing:21.042118pt;}
.ls41{letter-spacing:21.572350pt;}
.ls1a{letter-spacing:22.004803pt;}
.ls10{letter-spacing:29.061812pt;}
.ls16{letter-spacing:30.475467pt;}
.lsf{letter-spacing:134.185867pt;}
.ls12{letter-spacing:213.351412pt;}
.ws3e{word-spacing:-53.133867pt;}
.ws3{word-spacing:-39.318933pt;}
.ws0{word-spacing:-16.874667pt;}
.ws41{word-spacing:-14.024800pt;}
.ws65{word-spacing:-13.336123pt;}
.ws4{word-spacing:-13.283467pt;}
.ws49{word-spacing:-12.910133pt;}
.ws25{word-spacing:-10.626800pt;}
.ws2{word-spacing:-9.829733pt;}
.wsd3{word-spacing:-4.424267pt;}
.ws1b{word-spacing:-4.420533pt;}
.ws93{word-spacing:-4.417393pt;}
.ws94{word-spacing:-4.410111pt;}
.wsc9{word-spacing:-2.975497pt;}
.ws2b{word-spacing:-2.709827pt;}
.ws26{word-spacing:-2.507925pt;}
.ws16{word-spacing:-2.497292pt;}
.ws35{word-spacing:-2.391024pt;}
.wsdc{word-spacing:-2.337890pt;}
.wsb6{word-spacing:-2.231622pt;}
.wsae{word-spacing:-2.082853pt;}
.wsf8{word-spacing:-2.072221pt;}
.ws9d{word-spacing:-2.040346pt;}
.wsc2{word-spacing:-2.019087pt;}
.wsf1{word-spacing:-1.912819pt;}
.wsa5{word-spacing:-1.700284pt;}
.wsa1{word-spacing:-1.615274pt;}
.ws96{word-spacing:-1.594016pt;}
.ws8d{word-spacing:-1.540882pt;}
.wsd5{word-spacing:-1.487748pt;}
.ws36{word-spacing:-1.434614pt;}
.ws39{word-spacing:-1.381481pt;}
.wscc{word-spacing:-1.275216pt;}
.ws73{word-spacing:-1.222079pt;}
.wsa6{word-spacing:-1.168945pt;}
.wsa0{word-spacing:-1.147694pt;}
.ws5d{word-spacing:-1.115811pt;}
.ws85{word-spacing:-1.062680pt;}
.ws58{word-spacing:-1.062677pt;}
.wsa{word-spacing:-1.009543pt;}
.ws8a{word-spacing:-0.956410pt;}
.ws2a{word-spacing:-0.903276pt;}
.ws29{word-spacing:-0.850142pt;}
.wsda{word-spacing:-0.797008pt;}
.wscd{word-spacing:-0.765130pt;}
.wsb4{word-spacing:-0.743874pt;}
.ws95{word-spacing:-0.690740pt;}
.wsfc{word-spacing:-0.680115pt;}
.ws7b{word-spacing:-0.637606pt;}
.wsf3{word-spacing:-0.584473pt;}
.wsed{word-spacing:-0.552594pt;}
.ws50{word-spacing:-0.531339pt;}
.ws9e{word-spacing:-0.467579pt;}
.wsa4{word-spacing:-0.318803pt;}
.ws23{word-spacing:-0.297550pt;}
.wsc4{word-spacing:-0.265669pt;}
.ws24{word-spacing:-0.255043pt;}
.ws8{word-spacing:-0.212535pt;}
.ws2e{word-spacing:-0.159402pt;}
.ws2f{word-spacing:-0.106268pt;}
.ws34{word-spacing:-0.053134pt;}
.wsee{word-spacing:-0.042507pt;}
.ws77{word-spacing:-0.039319pt;}
.ws3d{word-spacing:-0.001882pt;}
.ws1{word-spacing:0.000000pt;}
.ws3b{word-spacing:0.053134pt;}
.wsab{word-spacing:0.106268pt;}
.wsd0{word-spacing:0.159402pt;}
.ws69{word-spacing:0.212536pt;}
.wsc8{word-spacing:0.265669pt;}
.ws6b{word-spacing:0.297550pt;}
.ws9{word-spacing:0.318803pt;}
.ws5b{word-spacing:0.425071pt;}
.wsbf{word-spacing:0.425072pt;}
.ws28{word-spacing:0.467579pt;}
.ws32{word-spacing:0.478205pt;}
.ws30{word-spacing:0.531339pt;}
.ws79{word-spacing:0.584473pt;}
.ws78{word-spacing:0.637606pt;}
.ws31{word-spacing:0.690740pt;}
.ws9c{word-spacing:0.765130pt;}
.ws5{word-spacing:0.797008pt;}
.wsdd{word-spacing:0.850142pt;}
.ws1d{word-spacing:0.956410pt;}
.ws7e{word-spacing:1.009543pt;}
.wse3{word-spacing:1.062677pt;}
.wsd4{word-spacing:1.074330pt;}
.wsd{word-spacing:1.115811pt;}
.wsd2{word-spacing:1.168945pt;}
.ws38{word-spacing:1.222079pt;}
.ws9f{word-spacing:1.232709pt;}
.wsc6{word-spacing:1.275213pt;}
.wsf2{word-spacing:1.328347pt;}
.ws3a{word-spacing:1.381481pt;}
.wsa2{word-spacing:1.402738pt;}
.ws4f{word-spacing:1.434614pt;}
.ws4e{word-spacing:1.487748pt;}
.ws4c{word-spacing:1.561393pt;}
.wsdb{word-spacing:1.594016pt;}
.ws44{word-spacing:1.605052pt;}
.ws45{word-spacing:1.605401pt;}
.ws4a{word-spacing:1.607245pt;}
.ws3f{word-spacing:1.619098pt;}
.ws40{word-spacing:1.621949pt;}
.wsac{word-spacing:1.647150pt;}
.ws4b{word-spacing:1.660379pt;}
.ws5e{word-spacing:1.700284pt;}
.ws62{word-spacing:1.753418pt;}
.wsfb{word-spacing:1.827810pt;}
.ws8c{word-spacing:1.859685pt;}
.wsd8{word-spacing:1.965953pt;}
.ws7a{word-spacing:2.125355pt;}
.ws80{word-spacing:2.231622pt;}
.ws1f{word-spacing:2.284756pt;}
.ws84{word-spacing:2.337896pt;}
.ws83{word-spacing:2.380403pt;}
.wsb5{word-spacing:2.391024pt;}
.ws76{word-spacing:2.444158pt;}
.ws46{word-spacing:2.491830pt;}
.ws47{word-spacing:2.494482pt;}
.ws48{word-spacing:2.495823pt;}
.wsc1{word-spacing:2.497292pt;}
.ws7c{word-spacing:2.603559pt;}
.ws9b{word-spacing:2.635446pt;}
.ws7d{word-spacing:2.656693pt;}
.ws97{word-spacing:2.709827pt;}
.wscb{word-spacing:2.805475pt;}
.ws2c{word-spacing:2.869229pt;}
.wsad{word-spacing:2.922363pt;}
.ws1c{word-spacing:2.975497pt;}
.ws1a{word-spacing:3.028630pt;}
.ws56{word-spacing:3.134898pt;}
.ws27{word-spacing:3.188040pt;}
.wsa9{word-spacing:3.400567pt;}
.ws33{word-spacing:3.453701pt;}
.wsce{word-spacing:3.485590pt;}
.ws6{word-spacing:3.559969pt;}
.ws87{word-spacing:3.570605pt;}
.ws72{word-spacing:3.613103pt;}
.ws7{word-spacing:3.666237pt;}
.ws68{word-spacing:3.698126pt;}
.wsc5{word-spacing:3.719371pt;}
.wsba{word-spacing:3.772505pt;}
.ws17{word-spacing:3.825638pt;}
.wsca{word-spacing:3.931906pt;}
.ws99{word-spacing:4.038174pt;}
.ws82{word-spacing:4.080691pt;}
.wsaa{word-spacing:4.091308pt;}
.wseb{word-spacing:4.123198pt;}
.ws10{word-spacing:4.144442pt;}
.wsd6{word-spacing:4.197575pt;}
.wsf9{word-spacing:4.250709pt;}
.ws37{word-spacing:4.303843pt;}
.ws81{word-spacing:4.410111pt;}
.ws74{word-spacing:4.463245pt;}
.ws6a{word-spacing:4.463256pt;}
.ws61{word-spacing:4.516379pt;}
.ws60{word-spacing:4.569513pt;}
.ws98{word-spacing:4.622646pt;}
.wsbc{word-spacing:4.675780pt;}
.ws92{word-spacing:4.728914pt;}
.ws8e{word-spacing:4.782048pt;}
.wsa7{word-spacing:4.888316pt;}
.ws86{word-spacing:4.888328pt;}
.ws7f{word-spacing:4.941450pt;}
.ws2d{word-spacing:4.994583pt;}
.wsb0{word-spacing:5.100851pt;}
.wsc0{word-spacing:5.153985pt;}
.ws9a{word-spacing:5.228386pt;}
.ws1e{word-spacing:5.313387pt;}
.ws5a{word-spacing:5.366521pt;}
.ws20{word-spacing:5.419654pt;}
.wsd7{word-spacing:5.472788pt;}
.ws6e{word-spacing:5.632190pt;}
.ws5c{word-spacing:5.685324pt;}
.ws89{word-spacing:5.738458pt;}
.wsb7{word-spacing:5.791591pt;}
.wscf{word-spacing:5.823486pt;}
.wsb3{word-spacing:5.844725pt;}
.ws3c{word-spacing:5.858521pt;}
.ws5f{word-spacing:6.004127pt;}
.wsfa{word-spacing:6.036022pt;}
.wsbb{word-spacing:6.057261pt;}
.ws13{word-spacing:6.110395pt;}
.ws11{word-spacing:6.163529pt;}
.ws8f{word-spacing:6.216662pt;}
.ws8b{word-spacing:6.269796pt;}
.wsd1{word-spacing:6.322930pt;}
.ws15{word-spacing:6.376064pt;}
.wsec{word-spacing:6.376080pt;}
.wsb1{word-spacing:6.482332pt;}
.wsaf{word-spacing:6.673630pt;}
.ws91{word-spacing:6.748001pt;}
.wsbd{word-spacing:6.801152pt;}
.ws6c{word-spacing:6.907403pt;}
.wsc7{word-spacing:6.960537pt;}
.ws59{word-spacing:7.013670pt;}
.wsc{word-spacing:7.279340pt;}
.ws18{word-spacing:7.438741pt;}
.ws57{word-spacing:7.545009pt;}
.wsd9{word-spacing:7.651277pt;}
.ws6f{word-spacing:7.704411pt;}
.wsea{word-spacing:7.757545pt;}
.wsf{word-spacing:7.863812pt;}
.wsa8{word-spacing:7.916946pt;}
.wsef{word-spacing:8.076348pt;}
.wse{word-spacing:8.129482pt;}
.ws51{word-spacing:8.182615pt;}
.wsc3{word-spacing:8.235749pt;}
.wsf7{word-spacing:8.288883pt;}
.wse5{word-spacing:8.448285pt;}
.ws90{word-spacing:8.607686pt;}
.wsb2{word-spacing:8.713954pt;}
.ws70{word-spacing:8.767088pt;}
.ws19{word-spacing:8.873356pt;}
.wse6{word-spacing:8.926490pt;}
.wsbe{word-spacing:9.011526pt;}
.wsdf{word-spacing:9.032757pt;}
.wse9{word-spacing:9.085891pt;}
.ws71{word-spacing:9.404694pt;}
.ws66{word-spacing:9.485050pt;}
.wsb8{word-spacing:9.510962pt;}
.wse8{word-spacing:9.829765pt;}
.ws12{word-spacing:10.254836pt;}
.ws21{word-spacing:10.584293pt;}
.ws22{word-spacing:10.596128pt;}
.ws52{word-spacing:10.679907pt;}
.wsb9{word-spacing:10.786175pt;}
.wsde{word-spacing:10.892443pt;}
.ws14{word-spacing:10.945577pt;}
.ws6d{word-spacing:11.051844pt;}
.wse4{word-spacing:11.476915pt;}
.wse0{word-spacing:11.901986pt;}
.ws55{word-spacing:12.273923pt;}
.wsf0{word-spacing:12.486459pt;}
.wsf4{word-spacing:12.645860pt;}
.wsa3{word-spacing:12.805262pt;}
.ws75{word-spacing:13.230333pt;}
.ws53{word-spacing:13.283467pt;}
.ws64{word-spacing:13.288579pt;}
.ws42{word-spacing:14.506415pt;}
.ws43{word-spacing:14.559549pt;}
.ws4d{word-spacing:15.887026pt;}
.ws67{word-spacing:16.136154pt;}
.ws88{word-spacing:17.162239pt;}
.wse1{word-spacing:17.959247pt;}
.ws54{word-spacing:18.596853pt;}
.wse2{word-spacing:18.915657pt;}
.wsf6{word-spacing:21.519216pt;}
.wsf5{word-spacing:22.741295pt;}
.wsb{word-spacing:26.513799pt;}
.wse7{word-spacing:30.020635pt;}
.ws63{word-spacing:165.112768pt;}
._24{margin-left:-16.833403pt;}
._21{margin-left:-13.312351pt;}
._22{margin-left:-9.847642pt;}
._23{margin-left:-8.240979pt;}
._2{margin-left:-6.536533pt;}
._c{margin-left:-5.398139pt;}
._3{margin-left:-3.808000pt;}
._16{margin-left:-2.773063pt;}
._1{margin-left:-1.774933pt;}
._f{width:1.490466pt;}
._e{width:3.541115pt;}
._0{width:4.966400pt;}
._26{width:6.029779pt;}
._2c{width:6.928114pt;}
._27{width:7.822682pt;}
._14{width:9.184336pt;}
._2a{width:10.074274pt;}
._17{width:10.967092pt;}
._10{width:12.054397pt;}
._d{width:13.379636pt;}
._4{width:15.005266pt;}
._12{width:16.046428pt;}
._7{width:17.534176pt;}
._5{width:18.685483pt;}
._28{width:19.674793pt;}
._a{width:20.987877pt;}
._1c{width:22.209956pt;}
._9{width:23.113232pt;}
._29{width:24.139310pt;}
._11{width:25.132319pt;}
._2b{width:26.130863pt;}
._25{width:27.084990pt;}
._6{width:28.005425pt;}
._2e{width:28.965780pt;}
._15{width:29.935883pt;}
._18{width:31.590726pt;}
._13{width:32.614092pt;}
._1d{width:34.292860pt;}
._b{width:35.705958pt;}
._1a{width:38.575187pt;}
._8{width:40.275506pt;}
._19{width:41.678467pt;}
._2d{width:49.648547pt;}
._1b{width:52.665764pt;}
._2f{width:72.389842pt;}
._20{width:186.372909pt;}
._1e{width:202.240558pt;}
._1f{width:206.341435pt;}
.fs9{font-size:23.772055pt;}
.fsd{font-size:28.843426pt;}
.fsa{font-size:30.428230pt;}
.fs6{font-size:31.880533pt;}
.fsc{font-size:34.231759pt;}
.fsb{font-size:34.232120pt;}
.fs5{font-size:39.318933pt;}
.fs7{font-size:42.507200pt;}
.fs4{font-size:53.133867pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:74.666667pt;}
.fs8{font-size:76.512533pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y93{bottom:3.644957pt;}
.yc{bottom:7.146667pt;}
.y8a{bottom:17.353508pt;}
.y8b{bottom:24.802085pt;}
.y16{bottom:49.453333pt;}
.y1c{bottom:61.786667pt;}
.y92{bottom:62.044971pt;}
.y15{bottom:69.080000pt;}
.y8c{bottom:69.176588pt;}
.y1b{bottom:81.413333pt;}
.yc9{bottom:84.381333pt;}
.y14{bottom:88.706667pt;}
.y1a{bottom:101.040000pt;}
.y99{bottom:105.072390pt;}
.y72{bottom:108.291992pt;}
.y4e{bottom:108.292000pt;}
.y121{bottom:110.592000pt;}
.y8d{bottom:113.551090pt;}
.y98{bottom:113.868051pt;}
.y10{bottom:119.053333pt;}
.y19{bottom:120.666667pt;}
.y91{bottom:121.950549pt;}
.y97{bottom:122.663711pt;}
.y120{bottom:123.212000pt;}
.y71{bottom:124.231992pt;}
.yad{bottom:124.232000pt;}
.y4d{bottom:124.768000pt;}
.y90{bottom:131.300891pt;}
.y96{bottom:131.459371pt;}
.y4c{bottom:133.989333pt;}
.y11f{bottom:135.830667pt;}
.y17{bottom:137.733333pt;}
.yf{bottom:138.680000pt;}
.y70{bottom:140.171992pt;}
.yac{bottom:140.172000pt;}
.y95{bottom:140.255031pt;}
.y18{bottom:140.293333pt;}
.y8f{bottom:140.651232pt;}
.y4b{bottom:146.609333pt;}
.y11e{bottom:148.450667pt;}
.y94{bottom:149.050692pt;}
.y4a{bottom:150.466667pt;}
.y6f{bottom:156.111992pt;}
.yab{bottom:156.112000pt;}
.y8e{bottom:157.925592pt;}
.y49{bottom:163.545333pt;}
.yaa{bottom:172.052000pt;}
.y6e{bottom:172.053325pt;}
.yd5{bottom:172.053333pt;}
.y48{bottom:172.766667pt;}
.y47{bottom:185.386667pt;}
.y6d{bottom:187.993325pt;}
.ya9{bottom:187.993333pt;}
.y46{bottom:189.244000pt;}
.y45{bottom:202.322667pt;}
.ya8{bottom:203.933333pt;}
.y68{bottom:208.168000pt;}
.y44{bottom:211.544000pt;}
.y6b{bottom:211.921325pt;}
.y6a{bottom:211.921333pt;}
.ya7{bottom:219.873333pt;}
.y6c{bottom:221.033325pt;}
.y67{bottom:221.033333pt;}
.y43{bottom:228.020000pt;}
.y69{bottom:230.026667pt;}
.ya6{bottom:235.813333pt;}
.ye8{bottom:237.141333pt;}
.yd4{bottom:237.829333pt;}
.y144{bottom:241.126667pt;}
.ya5{bottom:251.753333pt;}
.y143{bottom:253.746667pt;}
.y66{bottom:255.625333pt;}
.y42{bottom:261.238667pt;}
.y142{bottom:266.365333pt;}
.ye7{bottom:267.286667pt;}
.yc8{bottom:267.693333pt;}
.ya4{bottom:267.694667pt;}
.y65{bottom:271.565333pt;}
.y41{bottom:277.178667pt;}
.y141{bottom:278.985333pt;}
.ye6{bottom:283.226667pt;}
.ya3{bottom:283.634667pt;}
.y64{bottom:287.505333pt;}
.yd3{bottom:290.846667pt;}
.y140{bottom:291.604000pt;}
.y40{bottom:293.118667pt;}
.ye5{bottom:299.166667pt;}
.ya2{bottom:299.574667pt;}
.y63{bottom:303.445333pt;}
.yd2{bottom:303.465333pt;}
.y13f{bottom:304.224000pt;}
.ya{bottom:306.382667pt;}
.y3f{bottom:309.060000pt;}
.ye4{bottom:315.106667pt;}
.ya1{bottom:315.514667pt;}
.yd1{bottom:316.085333pt;}
.y13e{bottom:316.842667pt;}
.y62{bottom:319.386667pt;}
.y3e{bottom:325.000000pt;}
.yd0{bottom:328.704000pt;}
.y13d{bottom:329.462667pt;}
.ye3{bottom:331.046667pt;}
.ya0{bottom:331.454667pt;}
.y61{bottom:335.326667pt;}
.y3d{bottom:340.940000pt;}
.ycf{bottom:341.324000pt;}
.y13c{bottom:342.081333pt;}
.yd{bottom:343.546667pt;}
.ye2{bottom:346.986667pt;}
.yc7{bottom:347.394667pt;}
.y60{bottom:351.266667pt;}
.y9{bottom:351.724000pt;}
.yce{bottom:353.942667pt;}
.y13b{bottom:354.701333pt;}
.y3c{bottom:356.880000pt;}
.ye1{bottom:362.928000pt;}
.yf6{bottom:363.334667pt;}
.ycd{bottom:366.562667pt;}
.y5f{bottom:367.206667pt;}
.y13a{bottom:367.320000pt;}
.yc6{bottom:367.749333pt;}
.y9f{bottom:372.802667pt;}
.y3b{bottom:372.820000pt;}
.y11d{bottom:376.613333pt;}
.ye0{bottom:378.868000pt;}
.ycc{bottom:379.181333pt;}
.yf5{bottom:379.276000pt;}
.y139{bottom:379.940000pt;}
.y5e{bottom:383.146667pt;}
.yc5{bottom:383.689333pt;}
.y9e{bottom:385.422667pt;}
.yb{bottom:386.533333pt;}
.y3a{bottom:388.760000pt;}
.ycb{bottom:391.801333pt;}
.y11c{bottom:392.553333pt;}
.y138{bottom:392.558667pt;}
.ydf{bottom:394.808000pt;}
.yf4{bottom:395.216000pt;}
.y8{bottom:397.065333pt;}
.y9d{bottom:398.041333pt;}
.y5d{bottom:399.086667pt;}
.yca{bottom:404.420000pt;}
.y39{bottom:404.701333pt;}
.y137{bottom:405.178667pt;}
.y11b{bottom:408.493333pt;}
.y9c{bottom:410.661333pt;}
.yde{bottom:410.748000pt;}
.yf3{bottom:411.156000pt;}
.y5c{bottom:415.028000pt;}
.y136{bottom:417.797333pt;}
.y38{bottom:420.641333pt;}
.y9b{bottom:423.280000pt;}
.y11a{bottom:424.433333pt;}
.ydd{bottom:426.688000pt;}
.yf2{bottom:427.096000pt;}
.y135{bottom:430.417333pt;}
.y5b{bottom:430.968000pt;}
.y11{bottom:433.826667pt;}
.yc4{bottom:434.362667pt;}
.y9a{bottom:435.900000pt;}
.y37{bottom:436.581333pt;}
.y119{bottom:440.373333pt;}
.y7{bottom:442.406667pt;}
.ydc{bottom:442.628000pt;}
.yf1{bottom:443.036000pt;}
.y5a{bottom:446.908000pt;}
.yc3{bottom:446.981333pt;}
.y36{bottom:452.521333pt;}
.y134{bottom:455.656000pt;}
.y118{bottom:456.314667pt;}
.ydb{bottom:458.569333pt;}
.yf0{bottom:458.977333pt;}
.yc2{bottom:459.601333pt;}
.y89{bottom:461.805458pt;}
.y59{bottom:462.848000pt;}
.y133{bottom:468.274667pt;}
.y35{bottom:468.461333pt;}
.yc1{bottom:472.220000pt;}
.y117{bottom:472.254667pt;}
.yda{bottom:474.509333pt;}
.yef{bottom:474.917333pt;}
.y12{bottom:478.426667pt;}
.y58{bottom:478.788000pt;}
.y132{bottom:480.894667pt;}
.y34{bottom:484.402667pt;}
.yc0{bottom:484.840000pt;}
.y6{bottom:487.748000pt;}
.y116{bottom:488.194667pt;}
.yd9{bottom:490.449333pt;}
.yee{bottom:490.857333pt;}
.y131{bottom:493.513333pt;}
.y57{bottom:494.729333pt;}
.ybf{bottom:497.458667pt;}
.y33{bottom:500.342667pt;}
.y115{bottom:504.134667pt;}
.y130{bottom:506.133333pt;}
.y103{bottom:506.797333pt;}
.ybe{bottom:510.078667pt;}
.y56{bottom:510.669333pt;}
.yed{bottom:515.174667pt;}
.y32{bottom:516.282667pt;}
.y12f{bottom:518.752000pt;}
.y114{bottom:520.074667pt;}
.yd8{bottom:520.597333pt;}
.y102{bottom:522.737333pt;}
.y1d{bottom:524.093333pt;}
.y55{bottom:526.609333pt;}
.y12e{bottom:531.372000pt;}
.y31{bottom:532.222667pt;}
.y5{bottom:533.089333pt;}
.yd7{bottom:533.216000pt;}
.y113{bottom:536.014667pt;}
.y101{bottom:538.677333pt;}
.y54{bottom:542.549333pt;}
.y12d{bottom:543.990667pt;}
.yd6{bottom:545.836000pt;}
.y30{bottom:548.162667pt;}
.y112{bottom:551.956000pt;}
.y12c{bottom:556.610667pt;}
.y53{bottom:558.489333pt;}
.ye{bottom:561.706667pt;}
.y2f{bottom:564.102667pt;}
.y111{bottom:567.896000pt;}
.y100{bottom:568.997333pt;}
.y12b{bottom:569.229333pt;}
.yec{bottom:570.942667pt;}
.y52{bottom:574.429333pt;}
.y2e{bottom:580.044000pt;}
.yff{bottom:581.616000pt;}
.y12a{bottom:581.849333pt;}
.yeb{bottom:583.562667pt;}
.y110{bottom:583.836000pt;}
.y51{bottom:590.370667pt;}
.yfe{bottom:594.236000pt;}
.y2d{bottom:595.984000pt;}
.yea{bottom:596.182667pt;}
.y10f{bottom:599.776000pt;}
.y50{bottom:606.310667pt;}
.y129{bottom:606.424000pt;}
.yfd{bottom:606.854667pt;}
.ye9{bottom:608.801333pt;}
.y2c{bottom:611.924000pt;}
.y10e{bottom:615.716000pt;}
.yfc{bottom:619.474667pt;}
.y4f{bottom:622.250667pt;}
.yfb{bottom:632.093333pt;}
.y2b{bottom:638.190667pt;}
.y10d{bottom:643.328000pt;}
.yfa{bottom:644.713333pt;}
.y128{bottom:646.274667pt;}
.yf9{bottom:657.332000pt;}
.y127{bottom:662.214667pt;}
.y88{bottom:666.200000pt;}
.yf8{bottom:669.952000pt;}
.y126{bottom:678.154667pt;}
.y87{bottom:682.140000pt;}
.y10c{bottom:682.896000pt;}
.y2a{bottom:684.105200pt;}
.y4{bottom:691.756000pt;}
.y125{bottom:694.094667pt;}
.y86{bottom:698.080000pt;}
.y10b{bottom:698.836000pt;}
.y29{bottom:700.045200pt;}
.y124{bottom:710.034667pt;}
.y85{bottom:714.020000pt;}
.y10a{bottom:714.776000pt;}
.y28{bottom:715.985200pt;}
.y13{bottom:725.040000pt;}
.y123{bottom:725.976000pt;}
.y84{bottom:729.960000pt;}
.y27{bottom:731.925200pt;}
.ybd{bottom:733.516000pt;}
.y109{bottom:741.154667pt;}
.y83{bottom:745.900000pt;}
.y26{bottom:747.866667pt;}
.ybc{bottom:749.457333pt;}
.y122{bottom:753.870667pt;}
.y108{bottom:757.094667pt;}
.y82{bottom:761.841333pt;}
.y25{bottom:763.806667pt;}
.ybb{bottom:765.397333pt;}
.y107{bottom:773.034667pt;}
.y81{bottom:777.781333pt;}
.y24{bottom:779.746667pt;}
.yba{bottom:781.337333pt;}
.y106{bottom:788.974667pt;}
.y80{bottom:793.721333pt;}
.y23{bottom:795.686667pt;}
.yb9{bottom:797.277333pt;}
.y105{bottom:804.914667pt;}
.y3{bottom:805.081333pt;}
.y7f{bottom:809.661333pt;}
.yb8{bottom:813.217333pt;}
.y22{bottom:819.597333pt;}
.y7e{bottom:825.601333pt;}
.yb7{bottom:829.157333pt;}
.y104{bottom:831.293333pt;}
.y7d{bottom:841.542667pt;}
.yb6{bottom:845.098667pt;}
.y2{bottom:857.092000pt;}
.y7c{bottom:857.482667pt;}
.yb5{bottom:861.038667pt;}
.y7b{bottom:873.422667pt;}
.yb4{bottom:876.978667pt;}
.y1{bottom:879.748000pt;}
.y7a{bottom:889.362667pt;}
.yb3{bottom:892.918667pt;}
.y79{bottom:905.302667pt;}
.y21{bottom:908.198667pt;}
.yb2{bottom:908.858667pt;}
.y78{bottom:921.242667pt;}
.y20{bottom:924.138667pt;}
.yb1{bottom:924.798667pt;}
.yf7{bottom:937.182667pt;}
.y77{bottom:937.184000pt;}
.yb0{bottom:940.740000pt;}
.y76{bottom:953.124000pt;}
.yaf{bottom:956.680000pt;}
.y1f{bottom:963.989333pt;}
.y75{bottom:969.064000pt;}
.yae{bottom:972.620000pt;}
.y74{bottom:985.004000pt;}
.y1e{bottom:987.898667pt;}
.y73{bottom:1000.944000pt;}
.h10{height:21.933807pt;}
.he{height:23.910400pt;}
.h1b{height:24.433926pt;}
.h16{height:26.854831pt;}
.hf{height:29.244954pt;}
.h4{height:29.333333pt;}
.h11{height:29.452954pt;}
.h12{height:29.458287pt;}
.h1f{height:29.646497pt;}
.h1c{height:31.275426pt;}
.h22{height:31.880400pt;}
.h1e{height:35.184854pt;}
.h1d{height:35.185225pt;}
.h21{height:36.290431pt;}
.hd{height:36.556100pt;}
.hc{height:36.715502pt;}
.h13{height:36.822767pt;}
.h14{height:39.850400pt;}
.h19{height:39.956668pt;}
.hb{height:46.336759pt;}
.ha{height:48.774533pt;}
.h20{height:48.779867pt;}
.h3{height:51.916667pt;}
.h9{height:52.640990pt;}
.h2{height:59.333333pt;}
.h5{height:60.213542pt;}
.h18{height:72.529434pt;}
.h15{height:77.069355pt;}
.h7{height:102.413333pt;}
.h17{height:125.339426pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.h1a{height:166.404326pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.wa{width:332.812487pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.w9{width:793.701333pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.x27{left:8.795753pt;}
.x25{left:12.044635pt;}
.x24{left:15.372758pt;}
.x23{left:18.700881pt;}
.x26{left:44.691935pt;}
.x22{left:48.970950pt;}
.xe{left:50.150667pt;}
.x21{left:51.108000pt;}
.xc{left:57.280000pt;}
.xf{left:63.434667pt;}
.x10{left:64.629333pt;}
.x11{left:69.278667pt;}
.x30{left:76.717333pt;}
.x28{left:83.995481pt;}
.xa{left:89.290667pt;}
.x16{left:94.134667pt;}
.x12{left:105.514667pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.x17{left:116.408000pt;}
.x5{left:154.760000pt;}
.x2{left:169.813333pt;}
.x7{left:178.413333pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.x29{left:240.100289pt;}
.x14{left:248.914667pt;}
.x2a{left:256.106975pt;}
.x15{left:271.188000pt;}
.x13{left:279.952000pt;}
.xd{left:285.137333pt;}
.xb{left:335.754667pt;}
.x2d{left:393.529333pt;}
.x18{left:408.805333pt;}
.x32{left:414.118667pt;}
.x2e{left:415.120000pt;}
.x2f{left:419.380000pt;}
.x2b{left:422.089333pt;}
.x34{left:433.152000pt;}
.x2c{left:435.372000pt;}
.x19{left:436.808000pt;}
.x33{left:455.584000pt;}
.x1a{left:477.642800pt;}
.x1b{left:524.828133pt;}
.x1c{left:537.169467pt;}
.x1d{left:568.458667pt;}
.x1e{left:641.364000pt;}
.x1f{left:655.123983pt;}
.x31{left:663.500000pt;}
.x20{left:671.033316pt;}
}




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