
    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_17f89680de4cfb5a5c36db6f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_766984d0210c787ceb2fd03f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.900000;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_6128a2e990dea3e24cf14893.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.889000;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_63b1f88cd9dd1bec28be5fd7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.967773;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_f6d6690c7eb36a078674f873.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.936523;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_636e16b704c520de594fb996.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.967773;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_d00ebc5171b668d1e84bbd38.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.967773;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_2e24ad768639dc260d51593e.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_205ae29a06c77b732a3185ae.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.299000;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_ec8ecff635315a4cc98b88a8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666000;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_ed40b96189983fce4daf03ba.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.699000;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_a8abb53a8ca93fd80fb937aa.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.959000;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_f1bac042351b13ff1c31746b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.948000;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v4{vertical-align:-8.964000px;}
.v3{vertical-align:-3.293852px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:8.964000px;}
.v1{vertical-align:21.696000px;}
.ls4{letter-spacing:0.000000px;}
.lse{letter-spacing:0.003634px;}
.ls13{letter-spacing:0.004200px;}
.ls2a{letter-spacing:0.004280px;}
.ls2f{letter-spacing:0.161510px;}
.ls5{letter-spacing:0.177634px;}
.ls1c{letter-spacing:0.178766px;}
.ls29{letter-spacing:0.183634px;}
.ls25{letter-spacing:0.478200px;}
.ls1a{letter-spacing:1.011634px;}
.ls18{letter-spacing:1.017634px;}
.ls1f{letter-spacing:2.388925px;}
.ls2{letter-spacing:2.789100px;}
.ls17{letter-spacing:3.120007px;}
.ls12{letter-spacing:3.126007px;}
.ls24{letter-spacing:3.581675px;}
.ls31{letter-spacing:5.782670px;}
.ls9{letter-spacing:5.997004px;}
.lsd{letter-spacing:6.590338px;}
.lsa{letter-spacing:6.596338px;}
.ls21{letter-spacing:8.162338px;}
.ls2d{letter-spacing:8.256538px;}
.ls15{letter-spacing:8.658538px;}
.ls20{letter-spacing:8.754538px;}
.ls30{letter-spacing:8.760538px;}
.ls27{letter-spacing:9.036538px;}
.ls28{letter-spacing:9.078538px;}
.ls32{letter-spacing:9.149604px;}
.ls14{letter-spacing:9.717634px;}
.ls1e{letter-spacing:10.626538px;}
.ls3{letter-spacing:10.963200px;}
.ls33{letter-spacing:13.400400px;}
.ls2c{letter-spacing:13.512538px;}
.ls2b{letter-spacing:13.564280px;}
.ls19{letter-spacing:14.889269px;}
.ls1d{letter-spacing:15.124766px;}
.ls1b{letter-spacing:15.957634px;}
.ls16{letter-spacing:15.981269px;}
.ls11{letter-spacing:16.210766px;}
.ls6{letter-spacing:16.604400px;}
.lsb{letter-spacing:17.355269px;}
.ls1{letter-spacing:17.735100px;}
.ls22{letter-spacing:17.831100px;}
.lsf{letter-spacing:18.561634px;}
.lsc{letter-spacing:18.567634px;}
.ls23{letter-spacing:18.575100px;}
.ls2e{letter-spacing:19.167634px;}
.ls8{letter-spacing:21.476383px;}
.ls7{letter-spacing:23.409004px;}
.ls10{letter-spacing:24.132007px;}
.ls26{letter-spacing:25.652100px;}
.ls0{letter-spacing:32.681100px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc8{word-spacing:-17.932800px;}
.ws2{word-spacing:-14.943900px;}
.ws8{word-spacing:-13.449600px;}
.ws29{word-spacing:-11.826432px;}
.ws4b{word-spacing:-7.112681px;}
.ws8f{word-spacing:-6.711466px;}
.wsa3{word-spacing:-6.643500px;}
.ws4d{word-spacing:-6.565552px;}
.ws4e{word-spacing:-5.471293px;}
.wsb8{word-spacing:-4.651500px;}
.wsb6{word-spacing:-4.650900px;}
.ws2c{word-spacing:-4.465267px;}
.ws7d{word-spacing:-3.466985px;}
.ws8d{word-spacing:-3.287658px;}
.ws93{word-spacing:-3.168107px;}
.ws59{word-spacing:-3.108331px;}
.wsd{word-spacing:-3.012710px;}
.ws8e{word-spacing:-2.929004px;}
.ws7c{word-spacing:-2.809453px;}
.ws48{word-spacing:-2.582312px;}
.ws94{word-spacing:-2.570351px;}
.ws7a{word-spacing:-2.450800px;}
.wsd5{word-spacing:-2.420928px;}
.wsd2{word-spacing:-2.313331px;}
.ws60{word-spacing:-2.211697px;}
.ws9c{word-spacing:-2.151922px;}
.ws72{word-spacing:-2.032370px;}
.wsa{word-spacing:-1.990541px;}
.wsb{word-spacing:-1.829146px;}
.ws80{word-spacing:-1.793268px;}
.wsc{word-spacing:-1.775347px;}
.ws9b{word-spacing:-1.733492px;}
.wsf{word-spacing:-1.721549px;}
.ws82{word-spacing:-1.714676px;}
.ws83{word-spacing:-1.673717px;}
.ws28{word-spacing:-1.613941px;}
.ws38{word-spacing:-1.494390px;}
.ws62{word-spacing:-1.315063px;}
.ws71{word-spacing:-1.255288px;}
.ws56{word-spacing:-1.183565px;}
.wsca{word-spacing:-1.129766px;}
.wsa4{word-spacing:-1.079464px;}
.wsa5{word-spacing:-1.075961px;}
.wsd4{word-spacing:-1.022170px;}
.ws5e{word-spacing:-1.016185px;}
.ws1d{word-spacing:-0.896634px;}
.wsad{word-spacing:-0.836858px;}
.ws81{word-spacing:-0.777083px;}
.wsb0{word-spacing:-0.717307px;}
.ws77{word-spacing:-0.657532px;}
.ws87{word-spacing:-0.537980px;}
.wsd3{word-spacing:-0.484186px;}
.ws47{word-spacing:-0.418429px;}
.wsd1{word-spacing:-0.376589px;}
.ws43{word-spacing:-0.358654px;}
.wsd7{word-spacing:-0.268992px;}
.ws17{word-spacing:-0.179327px;}
.ws91{word-spacing:-0.119551px;}
.ws25{word-spacing:-0.059776px;}
.ws7{word-spacing:-0.053798px;}
.ws90{word-spacing:-0.044234px;}
.ws4c{word-spacing:-0.025889px;}
.ws4a{word-spacing:-0.022437px;}
.ws10{word-spacing:-0.005990px;}
.ws1{word-spacing:-0.005386px;}
.ws3{word-spacing:-0.002700px;}
.ws4{word-spacing:-0.002501px;}
.ws84{word-spacing:-0.001500px;}
.ws70{word-spacing:-0.000659px;}
.ws0{word-spacing:0.000000px;}
.wsaa{word-spacing:0.107597px;}
.ws42{word-spacing:0.179327px;}
.ws46{word-spacing:0.239102px;}
.ws33{word-spacing:0.358654px;}
.wscf{word-spacing:0.430387px;}
.wsa2{word-spacing:0.478205px;}
.ws3e{word-spacing:0.597756px;}
.wsbc{word-spacing:0.645581px;}
.ws92{word-spacing:0.657532px;}
.ws8b{word-spacing:0.717307px;}
.ws5d{word-spacing:0.777083px;}
.wsa1{word-spacing:0.836858px;}
.wsc9{word-spacing:0.860774px;}
.wsd9{word-spacing:0.914573px;}
.ws27{word-spacing:0.956410px;}
.ws6d{word-spacing:1.075961px;}
.ws6e{word-spacing:1.088134px;}
.wsd8{word-spacing:1.129766px;}
.ws88{word-spacing:1.135736px;}
.ws2e{word-spacing:1.183565px;}
.ws75{word-spacing:1.374839px;}
.ws73{word-spacing:1.434614px;}
.wsae{word-spacing:1.554166px;}
.ws8c{word-spacing:1.613941px;}
.ws31{word-spacing:1.673717px;}
.ws32{word-spacing:1.733492px;}
.ws55{word-spacing:1.735603px;}
.ws54{word-spacing:1.775347px;}
.ws9a{word-spacing:1.912819px;}
.ws53{word-spacing:1.990541px;}
.ws52{word-spacing:1.998970px;}
.ws51{word-spacing:2.044339px;}
.ws64{word-spacing:2.092146px;}
.ws9d{word-spacing:2.211697px;}
.ws45{word-spacing:2.271473px;}
.wsdd{word-spacing:2.367130px;}
.ws1b{word-spacing:2.391024px;}
.ws67{word-spacing:2.450800px;}
.ws66{word-spacing:2.467225px;}
.wsb3{word-spacing:2.510575px;}
.ws5b{word-spacing:2.570351px;}
.ws19{word-spacing:2.630126px;}
.wsd6{word-spacing:2.636122px;}
.ws24{word-spacing:2.689902px;}
.ws5a{word-spacing:2.749678px;}
.ws18{word-spacing:2.809453px;}
.wsa0{word-spacing:2.869229px;}
.ws20{word-spacing:2.955961px;}
.ws22{word-spacing:2.988780px;}
.ws2d{word-spacing:3.066509px;}
.ws2f{word-spacing:3.120307px;}
.ws4f{word-spacing:3.125914px;}
.ws49{word-spacing:3.156160px;}
.wsa7{word-spacing:3.168107px;}
.ws50{word-spacing:3.174106px;}
.wsa6{word-spacing:3.227882px;}
.wsc6{word-spacing:3.287658px;}
.ws6f{word-spacing:3.466985px;}
.ws9{word-spacing:3.496896px;}
.wscb{word-spacing:3.550694px;}
.ws69{word-spacing:3.586536px;}
.ws68{word-spacing:3.588532px;}
.ws6a{word-spacing:3.592198px;}
.ws1f{word-spacing:3.646312px;}
.ws7f{word-spacing:3.706087px;}
.wsab{word-spacing:3.712090px;}
.wsa8{word-spacing:3.885414px;}
.wsc4{word-spacing:4.004134px;}
.wsc2{word-spacing:4.004965px;}
.ws44{word-spacing:4.064741px;}
.ws23{word-spacing:4.124516px;}
.ws57{word-spacing:4.344000px;}
.ws58{word-spacing:4.357670px;}
.wsdb{word-spacing:4.411469px;}
.wsaf{word-spacing:4.423394px;}
.ws95{word-spacing:4.483170px;}
.wsa9{word-spacing:4.602721px;}
.wsbd{word-spacing:4.626662px;}
.ws97{word-spacing:4.662497px;}
.ws41{word-spacing:4.722272px;}
.wse1{word-spacing:4.734259px;}
.ws1a{word-spacing:4.841824px;}
.ws1e{word-spacing:4.901599px;}
.ws30{word-spacing:4.961375px;}
.ws7b{word-spacing:5.021150px;}
.ws36{word-spacing:5.140702px;}
.ws35{word-spacing:5.145990px;}
.ws34{word-spacing:5.200477px;}
.wsde{word-spacing:5.272243px;}
.ws1c{word-spacing:5.439580px;}
.wsc7{word-spacing:5.559131px;}
.ws9e{word-spacing:5.562262px;}
.ws9f{word-spacing:5.618906px;}
.ws8a{word-spacing:5.678682px;}
.wsda{word-spacing:5.702630px;}
.ws89{word-spacing:5.858009px;}
.wscd{word-spacing:5.971622px;}
.ws5c{word-spacing:5.977560px;}
.ws6c{word-spacing:6.037336px;}
.ws6b{word-spacing:6.097111px;}
.ws86{word-spacing:6.216662px;}
.wsb4{word-spacing:6.395989px;}
.ws3c{word-spacing:6.455765px;}
.ws39{word-spacing:6.480734px;}
.ws6{word-spacing:6.509606px;}
.ws3b{word-spacing:6.515540px;}
.ws5{word-spacing:6.531686px;}
.ws37{word-spacing:6.575316px;}
.ws3f{word-spacing:6.635092px;}
.ws99{word-spacing:6.874194px;}
.wse{word-spacing:6.939994px;}
.wse0{word-spacing:7.155187px;}
.ws15{word-spacing:7.292623px;}
.ws26{word-spacing:7.412174px;}
.ws65{word-spacing:7.770828px;}
.wsbb{word-spacing:7.800768px;}
.wsac{word-spacing:7.950155px;}
.ws16{word-spacing:8.069706px;}
.wsdf{word-spacing:8.069760px;}
.wsdc{word-spacing:8.177357px;}
.ws12{word-spacing:8.547911px;}
.ws14{word-spacing:8.607686px;}
.wsd0{word-spacing:8.607744px;}
.wsb5{word-spacing:10.418857px;}
.wsb7{word-spacing:10.460700px;}
.ws98{word-spacing:10.699832px;}
.ws61{word-spacing:12.670441px;}
.wsbe{word-spacing:13.344557px;}
.ws63{word-spacing:13.583692px;}
.ws5f{word-spacing:13.892058px;}
.ws78{word-spacing:14.004824px;}
.ws85{word-spacing:14.880916px;}
.ws74{word-spacing:16.286058px;}
.ws76{word-spacing:16.294441px;}
.ws79{word-spacing:16.745950px;}
.ws21{word-spacing:17.813129px;}
.wsc0{word-spacing:18.507167px;}
.wsbf{word-spacing:18.510492px;}
.wsc5{word-spacing:18.945167px;}
.wsc3{word-spacing:18.948492px;}
.ws7e{word-spacing:19.920916px;}
.wsb1{word-spacing:20.394492px;}
.wsb2{word-spacing:20.397167px;}
.ws3d{word-spacing:21.339889px;}
.ws3a{word-spacing:21.359484px;}
.ws40{word-spacing:21.485933px;}
.wsc1{word-spacing:21.819167px;}
.wsb9{word-spacing:22.412400px;}
.ws13{word-spacing:23.432035px;}
.wsba{word-spacing:42.752400px;}
.ws96{word-spacing:44.831700px;}
.ws11{word-spacing:53.798400px;}
.wsce{word-spacing:82.150157px;}
.wscc{word-spacing:103.884710px;}
.ws2a{word-spacing:379.017712px;}
.ws2b{word-spacing:458.675353px;}
._11{margin-left:-992.783067px;}
._f{margin-left:-984.253799px;}
._12{margin-left:-948.598453px;}
._10{margin-left:-942.830654px;}
._14{margin-left:-7.086892px;}
._36{margin-left:-6.079219px;}
._4{margin-left:-4.782048px;}
._6{margin-left:-3.556704px;}
._3{margin-left:-2.504605px;}
._1{margin-left:-1.344960px;}
._7{width:2.081014px;}
._5{width:3.309566px;}
._0{width:4.491955px;}
._18{width:7.984554px;}
._1c{width:9.226313px;}
._16{width:11.124552px;}
._1b{width:12.194222px;}
._19{width:14.167742px;}
._1a{width:15.183002px;}
._c{width:16.487846px;}
._15{width:18.428610px;}
._e{width:20.443255px;}
._2f{width:22.576996px;}
._30{width:26.308448px;}
._23{width:27.676103px;}
._17{width:29.287110px;}
._2c{width:31.382100px;}
._2b{width:32.899937px;}
._22{width:34.938894px;}
._2a{width:38.311051px;}
._29{width:40.227222px;}
._2d{width:41.842800px;}
._8{width:43.361510px;}
._28{width:45.399438px;}
._27{width:48.085051px;}
._26{width:51.476267px;}
._2e{width:53.218200px;}
._31{width:55.110550px;}
._2{width:56.811110px;}
._d{width:59.775600px;}
._3b{width:62.728934px;}
._25{width:68.664035px;}
._13{width:71.731200px;}
._21{width:75.217055px;}
._33{width:77.302643px;}
._34{width:78.451997px;}
._32{width:84.270295px;}
._35{width:95.599757px;}
._38{width:98.612467px;}
._3c{width:101.571379px;}
._39{width:104.584090px;}
._1f{width:106.429166px;}
._20{width:108.081793px;}
._37{width:110.555712px;}
._1e{width:115.886698px;}
._24{width:119.022246px;}
._3d{width:122.044650px;}
._1d{width:124.788347px;}
._3a{width:134.442202px;}
._9{width:409.012883px;}
._b{width:483.770600px;}
._a{width:530.306489px;}
.fc1{color:transparent;}
.fc2{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:17.259600px;}
.fsc{font-size:20.711520px;}
.fsa{font-size:22.437480px;}
.fsb{font-size:25.889400px;}
.fs8{font-size:26.045793px;}
.fs10{font-size:27.042984px;}
.fse{font-size:30.047760px;}
.fs9{font-size:31.067280px;}
.fsf{font-size:33.052536px;}
.fs7{font-size:33.984000px;}
.fs5{font-size:35.865600px;}
.fs11{font-size:41.842800px;}
.fs3{font-size:44.233800px;}
.fs6{font-size:47.820600px;}
.fs0{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs4{font-size:71.731200px;}
.fs1{font-size:83.686200px;}
.y0{bottom:0.000000px;}
.y6a{bottom:1.023941px;}
.y37{bottom:1.120072px;}
.y58{bottom:1.185734px;}
.ydb{bottom:3.036076px;}
.ye8{bottom:21.786817px;}
.ydc{bottom:22.024257px;}
.y5d{bottom:24.843420px;}
.ye7{bottom:30.059028px;}
.y5c{bottom:30.452790px;}
.y67{bottom:31.459085px;}
.y5b{bottom:36.062160px;}
.y69{bottom:36.205475px;}
.y66{bottom:36.636965px;}
.y68{bottom:37.499945px;}
.ye6{bottom:38.330926px;}
.y5a{bottom:41.671530px;}
.y65{bottom:41.814845px;}
.ydd{bottom:45.571184px;}
.ye5{bottom:46.603137px;}
.y59{bottom:50.547893px;}
.y64{bottom:50.691213px;}
.y32{bottom:58.380125px;}
.yde{bottom:69.118111px;}
.y70{bottom:69.675805px;}
.y63{bottom:69.831840px;}
.ye3{bottom:73.163166px;}
.y35{bottom:74.541416px;}
.y34{bottom:82.680727px;}
.y2d{bottom:90.320767px;}
.y33{bottom:90.820037px;}
.ydf{bottom:92.665289px;}
.y62{bottom:93.441594px;}
.y6f{bottom:93.598170px;}
.y61{bottom:99.050964px;}
.y6e{bottom:99.207540px;}
.y31{bottom:103.557100px;}
.y60{bottom:104.660334px;}
.y6d{bottom:104.816910px;}
.y5f{bottom:110.269704px;}
.y6c{bottom:110.426280px;}
.ye0{bottom:116.212216px;}
.y5e{bottom:119.146077px;}
.y6b{bottom:119.302645px;}
.y30{bottom:119.896440px;}
.y2f{bottom:136.235780px;}
.ye1{bottom:139.759393px;}
.y2c{bottom:141.475386px;}
.ye2{bottom:163.306320px;}
.y2e{bottom:168.723150px;}
.ye4{bottom:169.785494px;}
.y56{bottom:176.953500px;}
.y55{bottom:191.151000px;}
.y12f{bottom:191.898000px;}
.y2a{bottom:193.903500px;}
.y92{bottom:194.886000px;}
.y29{bottom:204.277500px;}
.y54{bottom:205.347000px;}
.y12e{bottom:206.841000px;}
.y36{bottom:207.512692px;}
.y28{bottom:208.617000px;}
.y91{bottom:211.972500px;}
.yb9{bottom:212.818500px;}
.y27{bottom:218.991000px;}
.y154{bottom:220.504500px;}
.y26{bottom:223.330500px;}
.yd9{bottom:230.751000px;}
.yb8{bottom:230.752500px;}
.y12d{bottom:233.071500px;}
.y53{bottom:233.709000px;}
.y153{bottom:235.449000px;}
.y90{bottom:236.760000px;}
.y25{bottom:245.112000px;}
.y12c{bottom:248.014500px;}
.yb7{bottom:248.685000px;}
.y152{bottom:250.393500px;}
.y52{bottom:251.641500px;}
.y8f{bottom:254.692500px;}
.y24{bottom:263.044500px;}
.yb6{bottom:266.617500px;}
.y51{bottom:269.574000px;}
.y12b{bottom:274.245000px;}
.y151{bottom:279.001500px;}
.yd8{bottom:284.550000px;}
.y8e{bottom:284.580000px;}
.y101{bottom:287.050500px;}
.y50{bottom:287.508000px;}
.y12a{bottom:289.188000px;}
.yb5{bottom:292.350000px;}
.y23{bottom:292.932000px;}
.y150{bottom:293.944500px;}
.yd7{bottom:302.482500px;}
.y8d{bottom:302.514000px;}
.y4f{bottom:305.440500px;}
.y22{bottom:310.866000px;}
.y129{bottom:315.907500px;}
.y100{bottom:318.406500px;}
.y8c{bottom:320.446500px;}
.y14f{bottom:322.552500px;}
.y4e{bottom:323.373000px;}
.y21{bottom:328.798500px;}
.yb4{bottom:331.813500px;}
.yd6{bottom:332.370000px;}
.yff{bottom:336.339000px;}
.y14e{bottom:337.497000px;}
.y8b{bottom:338.379000px;}
.y4d{bottom:341.305500px;}
.y20{bottom:346.731000px;}
.yb3{bottom:349.746000px;}
.y128{bottom:350.095500px;}
.yd5{bottom:350.304000px;}
.yfe{bottom:354.271500px;}
.y8a{bottom:356.311500px;}
.y4c{bottom:359.238000px;}
.y1f{bottom:364.663500px;}
.y14d{bottom:366.103500px;}
.yb2{bottom:367.678500px;}
.y127{bottom:368.028000px;}
.yd4{bottom:368.236500px;}
.yfd{bottom:372.204000px;}
.y89{bottom:374.244000px;}
.y4b{bottom:377.172000px;}
.y14c{bottom:381.048000px;}
.y1e{bottom:382.596000px;}
.yb1{bottom:385.611000px;}
.y126{bottom:385.960500px;}
.yd3{bottom:386.169000px;}
.yfc{bottom:390.136500px;}
.y4a{bottom:395.104500px;}
.y1d{bottom:400.530000px;}
.yb0{bottom:403.543500px;}
.y125{bottom:403.893000px;}
.yd2{bottom:404.101500px;}
.y88{bottom:404.133000px;}
.yfb{bottom:408.069000px;}
.y14b{bottom:409.656000px;}
.y49{bottom:413.037000px;}
.y1c{bottom:418.462500px;}
.yaf{bottom:421.477500px;}
.yd1{bottom:422.034000px;}
.y87{bottom:422.065500px;}
.y14a{bottom:424.599000px;}
.yfa{bottom:426.003000px;}
.y48{bottom:430.969500px;}
.y124{bottom:433.782000px;}
.y1b{bottom:436.395000px;}
.yae{bottom:439.410000px;}
.y149{bottom:439.543500px;}
.yd0{bottom:439.968000px;}
.y86{bottom:439.998000px;}
.yf9{bottom:443.935500px;}
.y47{bottom:448.902000px;}
.y123{bottom:451.714500px;}
.y1a{bottom:454.327500px;}
.ycf{bottom:457.900500px;}
.y85{bottom:457.930500px;}
.yf8{bottom:461.868000px;}
.yad{bottom:465.895500px;}
.y46{bottom:466.834500px;}
.y148{bottom:468.151500px;}
.y122{bottom:469.647000px;}
.y19{bottom:472.260000px;}
.y84{bottom:475.015500px;}
.yce{bottom:475.833000px;}
.y147{bottom:483.096000px;}
.yac{bottom:483.828000px;}
.y45{bottom:484.768500px;}
.y121{bottom:487.579500px;}
.y18{bottom:490.192500px;}
.yf7{bottom:491.755500px;}
.ycd{bottom:493.765500px;}
.y146{bottom:498.039000px;}
.y83{bottom:499.804500px;}
.yab{bottom:501.760500px;}
.y44{bottom:502.701000px;}
.y120{bottom:505.512000px;}
.y17{bottom:508.126500px;}
.yf6{bottom:509.688000px;}
.ycc{bottom:511.698000px;}
.y82{bottom:517.737000px;}
.yaa{bottom:519.693000px;}
.y43{bottom:520.633500px;}
.y11f{bottom:523.446000px;}
.y145{bottom:526.647000px;}
.yf5{bottom:527.622000px;}
.ycb{bottom:529.630500px;}
.y81{bottom:535.669500px;}
.ya9{bottom:537.625500px;}
.y16{bottom:538.014000px;}
.y42{bottom:538.566000px;}
.y11e{bottom:541.378500px;}
.y144{bottom:541.591500px;}
.yf4{bottom:545.554500px;}
.yca{bottom:547.564500px;}
.y80{bottom:553.602000px;}
.y15{bottom:555.946500px;}
.y41{bottom:556.498500px;}
.y11d{bottom:559.311000px;}
.ya8{bottom:564.111000px;}
.yc9{bottom:565.497000px;}
.y143{bottom:570.198000px;}
.y7f{bottom:571.534500px;}
.y14{bottom:573.879000px;}
.y40{bottom:574.431000px;}
.yf3{bottom:575.442000px;}
.y11c{bottom:577.243500px;}
.ya7{bottom:582.043500px;}
.yc8{bottom:582.619500px;}
.y142{bottom:585.142500px;}
.y7e{bottom:588.390000px;}
.y13{bottom:591.811500px;}
.y3f{bottom:592.365000px;}
.yf2{bottom:593.374500px;}
.y11b{bottom:595.176000px;}
.ya6{bottom:599.977500px;}
.y141{bottom:600.087000px;}
.yc7{bottom:607.447500px;}
.y12{bottom:609.745500px;}
.yf1{bottom:611.307000px;}
.y11a{bottom:613.108500px;}
.y3e{bottom:614.686500px;}
.y7d{bottom:616.167000px;}
.ya5{bottom:617.910000px;}
.yc6{bottom:625.380000px;}
.y11{bottom:627.678000px;}
.y140{bottom:628.693500px;}
.yf0{bottom:629.241000px;}
.y119{bottom:631.042500px;}
.y7c{bottom:634.099500px;}
.ya4{bottom:635.842500px;}
.yc5{bottom:643.312500px;}
.y13f{bottom:643.638000px;}
.y10{bottom:645.994500px;}
.y118{bottom:648.975000px;}
.y3d{bottom:649.089000px;}
.yef{bottom:649.905000px;}
.y7b{bottom:652.032000px;}
.ya3{bottom:653.775000px;}
.y13e{bottom:658.582500px;}
.yc4{bottom:661.245000px;}
.y117{bottom:666.907500px;}
.y3c{bottom:667.021500px;}
.y7a{bottom:669.964500px;}
.yf{bottom:675.234000px;}
.yee{bottom:678.271500px;}
.yc3{bottom:679.177500px;}
.ya2{bottom:680.260500px;}
.y116{bottom:684.840000px;}
.y13d{bottom:687.190500px;}
.y79{bottom:687.897000px;}
.yed{bottom:696.204000px;}
.y3b{bottom:696.394500px;}
.yc2{bottom:697.110000px;}
.ya1{bottom:698.193000px;}
.y13c{bottom:702.133500px;}
.y115{bottom:702.772500px;}
.ye{bottom:705.123000px;}
.y78{bottom:705.831000px;}
.y3a{bottom:712.833000px;}
.yec{bottom:714.136500px;}
.yc1{bottom:715.044000px;}
.ya0{bottom:716.125500px;}
.yd{bottom:720.066000px;}
.y114{bottom:720.705000px;}
.y77{bottom:723.763500px;}
.y39{bottom:729.271500px;}
.y13b{bottom:730.741500px;}
.yc0{bottom:732.976500px;}
.yc{bottom:735.010500px;}
.y113{bottom:738.639000px;}
.y9f{bottom:739.284000px;}
.y13a{bottom:745.686000px;}
.y38{bottom:745.710000px;}
.y76{bottom:748.768500px;}
.yb{bottom:749.955000px;}
.ybf{bottom:750.909000px;}
.yeb{bottom:755.436000px;}
.y139{bottom:760.629000px;}
.ya{bottom:764.898000px;}
.y75{bottom:765.207000px;}
.y112{bottom:765.802500px;}
.ybe{bottom:768.841500px;}
.y9e{bottom:769.171500px;}
.yea{bottom:771.874500px;}
.y2b{bottom:773.886000px;}
.y9{bottom:779.842500px;}
.y74{bottom:781.645500px;}
.y111{bottom:782.241000px;}
.ybd{bottom:786.774000px;}
.y9d{bottom:787.105500px;}
.ye9{bottom:788.313000px;}
.y138{bottom:789.237000px;}
.y8{bottom:794.787000px;}
.y73{bottom:798.084000px;}
.y110{bottom:798.679500px;}
.ybc{bottom:803.898000px;}
.y137{bottom:804.181500px;}
.y9c{bottom:805.038000px;}
.y7{bottom:809.730000px;}
.y72{bottom:814.522500px;}
.y10f{bottom:815.118000px;}
.yda{bottom:816.489000px;}
.y9b{bottom:822.970500px;}
.y6{bottom:824.674500px;}
.ybb{bottom:825.043500px;}
.y71{bottom:830.961000px;}
.y136{bottom:832.788000px;}
.y9a{bottom:840.903000px;}
.y135{bottom:847.732500px;}
.y10e{bottom:850.825500px;}
.yba{bottom:852.858000px;}
.y57{bottom:859.137000px;}
.y10d{bottom:863.976000px;}
.y158{bottom:864.813000px;}
.y109{bottom:865.573500px;}
.y99{bottom:870.790500px;}
.y134{bottom:876.340500px;}
.y10c{bottom:877.126500px;}
.y157{bottom:879.757500px;}
.y98{bottom:888.724500px;}
.y10b{bottom:890.277000px;}
.y133{bottom:891.285000px;}
.y5{bottom:893.416500px;}
.y10a{bottom:903.429000px;}
.y97{bottom:906.657000px;}
.y108{bottom:917.176500px;}
.y132{bottom:919.891500px;}
.y156{bottom:921.600000px;}
.y96{bottom:924.589500px;}
.y103{bottom:926.694000px;}
.y107{bottom:930.327000px;}
.y131{bottom:934.836000px;}
.y95{bottom:942.522000px;}
.y106{bottom:943.479000px;}
.y155{bottom:948.499500px;}
.y4{bottom:951.697500px;}
.y105{bottom:956.629500px;}
.y94{bottom:960.454500px;}
.y130{bottom:963.444000px;}
.y104{bottom:969.780000px;}
.y3{bottom:977.103000px;}
.y93{bottom:978.387000px;}
.y102{bottom:983.529000px;}
.y2{bottom:1011.444000px;}
.y1{bottom:1027.882500px;}
.h16{height:13.113251px;}
.h15{height:15.735901px;}
.h13{height:17.047226px;}
.h14{height:19.669876px;}
.he{height:19.788698px;}
.h1d{height:20.038851px;}
.h1a{height:22.265390px;}
.h12{height:23.603851px;}
.h1c{height:24.095299px;}
.h1b{height:24.491929px;}
.ha{height:24.675533px;}
.hd{height:25.819875px;}
.h1e{height:28.578632px;}
.h1f{height:28.787846px;}
.h20{height:29.038903px;}
.hb{height:32.900573px;}
.h10{height:33.140573px;}
.h3{height:37.013299px;}
.h2{height:37.283299px;}
.h7{height:37.336090px;}
.h9{height:41.125613px;}
.h6{height:41.425613px;}
.hf{height:41.484266px;}
.h17{height:44.831700px;}
.h8{height:49.781453px;}
.h5{height:52.128854px;}
.h18{height:52.134854px;}
.h4{height:58.078223px;}
.h11{height:134.196063px;}
.h19{height:176.843588px;}
.hc{height:219.467330px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:321.448433px;}
.w2{width:482.157403px;}
.w3{width:530.385275px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x41{left:2.770785px;}
.x3f{left:4.292802px;}
.x40{left:7.271092px;}
.x56{left:10.723303px;}
.x54{left:12.372146px;}
.x55{left:15.500029px;}
.x43{left:34.733140px;}
.x42{left:38.120589px;}
.x44{left:39.359861px;}
.x12{left:41.699337px;}
.x58{left:46.182215px;}
.x57{left:47.331303px;}
.x17{left:50.421427px;}
.x64{left:62.364752px;}
.x46{left:66.821906px;}
.x45{left:70.209355px;}
.x47{left:71.448626px;}
.x65{left:72.928418px;}
.x5a{left:81.778081px;}
.x59{left:82.927176px;}
.x49{left:99.951470px;}
.x48{left:102.298118px;}
.x4a{left:105.180758px;}
.x5c{left:115.588149px;}
.x5b{left:118.523053px;}
.x52{left:125.054804px;}
.x51{left:134.705850px;}
.x16{left:153.335634px;}
.x5d{left:156.741981px;}
.x5e{left:158.075218px;}
.x4d{left:166.608362px;}
.x4b{left:169.098702px;}
.x4c{left:170.431938px;}
.x13{left:171.767038px;}
.x5{left:178.158000px;}
.xc{left:180.283500px;}
.x18{left:185.811000px;}
.x61{left:189.847524px;}
.x5f{left:192.337864px;}
.x60{left:193.671101px;}
.x50{left:198.697138px;}
.x4e{left:201.187478px;}
.x4f{left:202.520714px;}
.x11{left:204.946500px;}
.x62{left:215.518500px;}
.x53{left:223.334378px;}
.x3e{left:228.676911px;}
.x6b{left:243.139500px;}
.x6e{left:252.850500px;}
.xb{left:258.442500px;}
.xa{left:261.096000px;}
.x1{left:262.945500px;}
.x1f{left:276.875294px;}
.x1e{left:278.524143px;}
.x6d{left:280.287000px;}
.x3{left:281.862000px;}
.x30{left:283.356836px;}
.x63{left:285.306000px;}
.x2{left:292.830000px;}
.x67{left:297.555000px;}
.x69{left:304.234500px;}
.x20{left:307.117993px;}
.x21{left:310.514293px;}
.x6a{left:312.367500px;}
.x68{left:313.539000px;}
.x31{left:315.556409px;}
.xd{left:317.812500px;}
.x32{left:318.952709px;}
.x6{left:321.420000px;}
.x66{left:322.545000px;}
.x22{left:339.108141px;}
.x23{left:340.718619px;}
.x24{left:342.285300px;}
.x33{left:351.152279px;}
.xe{left:352.188000px;}
.x34{left:354.329460px;}
.x7{left:359.616000px;}
.x25{left:369.148156px;}
.x26{left:372.708793px;}
.x27{left:374.275474px;}
.x35{left:386.748149px;}
.x36{left:388.358650px;}
.x37{left:389.925330px;}
.x1a{left:394.548000px;}
.x1c{left:396.870018px;}
.x28{left:403.088410px;}
.x29{left:404.698910px;}
.x2a{left:406.265590px;}
.x38{left:422.343993px;}
.x39{left:423.954549px;}
.x3a{left:425.521229px;}
.x14{left:437.554530px;}
.x15{left:439.433565px;}
.x2b{left:441.821826px;}
.x2c{left:443.777437px;}
.xf{left:453.046500px;}
.x3d{left:461.117044px;}
.x3b{left:464.683158px;}
.x3c{left:466.638769px;}
.x2e{left:469.961007px;}
.x2d{left:473.543556px;}
.x8{left:476.661000px;}
.x2f{left:494.319072px;}
.x1d{left:499.842165px;}
.x19{left:519.915000px;}
.x10{left:543.103500px;}
.x4{left:552.637500px;}
.x9{left:586.687500px;}
.x6c{left:589.819500px;}
.x1b{left:649.093500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v4{vertical-align:-7.968000pt;}
.v3{vertical-align:-2.927868pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:7.968000pt;}
.v1{vertical-align:19.285333pt;}
.ls4{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.003230pt;}
.ls13{letter-spacing:0.003733pt;}
.ls2a{letter-spacing:0.003805pt;}
.ls2f{letter-spacing:0.143565pt;}
.ls5{letter-spacing:0.157897pt;}
.ls1c{letter-spacing:0.158903pt;}
.ls29{letter-spacing:0.163230pt;}
.ls25{letter-spacing:0.425067pt;}
.ls1a{letter-spacing:0.899230pt;}
.ls18{letter-spacing:0.904563pt;}
.ls1f{letter-spacing:2.123489pt;}
.ls2{letter-spacing:2.479200pt;}
.ls17{letter-spacing:2.773340pt;}
.ls12{letter-spacing:2.778673pt;}
.ls24{letter-spacing:3.183711pt;}
.ls31{letter-spacing:5.140151pt;}
.ls9{letter-spacing:5.330670pt;}
.lsd{letter-spacing:5.858079pt;}
.lsa{letter-spacing:5.863412pt;}
.ls21{letter-spacing:7.255412pt;}
.ls2d{letter-spacing:7.339145pt;}
.ls15{letter-spacing:7.696479pt;}
.ls20{letter-spacing:7.781812pt;}
.ls30{letter-spacing:7.787145pt;}
.ls27{letter-spacing:8.032479pt;}
.ls28{letter-spacing:8.069812pt;}
.ls32{letter-spacing:8.132982pt;}
.ls14{letter-spacing:8.637897pt;}
.ls1e{letter-spacing:9.445812pt;}
.ls3{letter-spacing:9.745067pt;}
.ls33{letter-spacing:11.911467pt;}
.ls2c{letter-spacing:12.011145pt;}
.ls2b{letter-spacing:12.057138pt;}
.ls19{letter-spacing:13.234906pt;}
.ls1d{letter-spacing:13.444237pt;}
.ls1b{letter-spacing:14.184563pt;}
.ls16{letter-spacing:14.205573pt;}
.ls11{letter-spacing:14.409570pt;}
.ls6{letter-spacing:14.759467pt;}
.lsb{letter-spacing:15.426906pt;}
.ls1{letter-spacing:15.764533pt;}
.ls22{letter-spacing:15.849867pt;}
.lsf{letter-spacing:16.499230pt;}
.lsc{letter-spacing:16.504563pt;}
.ls23{letter-spacing:16.511200pt;}
.ls2e{letter-spacing:17.037897pt;}
.ls8{letter-spacing:19.090118pt;}
.ls7{letter-spacing:20.808003pt;}
.ls10{letter-spacing:21.450673pt;}
.ls26{letter-spacing:22.801867pt;}
.ls0{letter-spacing:29.049867pt;}
.wsc8{word-spacing:-15.940267pt;}
.ws2{word-spacing:-13.283467pt;}
.ws8{word-spacing:-11.955200pt;}
.ws29{word-spacing:-10.512384pt;}
.ws4b{word-spacing:-6.322383pt;}
.ws8f{word-spacing:-5.965747pt;}
.wsa3{word-spacing:-5.905333pt;}
.ws4d{word-spacing:-5.836046pt;}
.ws4e{word-spacing:-4.863372pt;}
.wsb8{word-spacing:-4.134667pt;}
.wsb6{word-spacing:-4.134133pt;}
.ws2c{word-spacing:-3.969126pt;}
.ws7d{word-spacing:-3.081764pt;}
.ws8d{word-spacing:-2.922363pt;}
.ws93{word-spacing:-2.816095pt;}
.ws59{word-spacing:-2.762961pt;}
.wsd{word-spacing:-2.677965pt;}
.ws8e{word-spacing:-2.603559pt;}
.ws7c{word-spacing:-2.497292pt;}
.ws48{word-spacing:-2.295389pt;}
.ws94{word-spacing:-2.284756pt;}
.ws7a{word-spacing:-2.178489pt;}
.wsd5{word-spacing:-2.151936pt;}
.wsd2{word-spacing:-2.056294pt;}
.ws60{word-spacing:-1.965953pt;}
.ws9c{word-spacing:-1.912819pt;}
.ws72{word-spacing:-1.806551pt;}
.wsa{word-spacing:-1.769370pt;}
.wsb{word-spacing:-1.625907pt;}
.ws80{word-spacing:-1.594016pt;}
.wsc{word-spacing:-1.578086pt;}
.ws9b{word-spacing:-1.540882pt;}
.wsf{word-spacing:-1.530266pt;}
.ws82{word-spacing:-1.524157pt;}
.ws83{word-spacing:-1.487748pt;}
.ws28{word-spacing:-1.434614pt;}
.ws38{word-spacing:-1.328347pt;}
.ws62{word-spacing:-1.168945pt;}
.ws71{word-spacing:-1.115811pt;}
.ws56{word-spacing:-1.052058pt;}
.wsca{word-spacing:-1.004237pt;}
.wsa4{word-spacing:-0.959523pt;}
.wsa5{word-spacing:-0.956410pt;}
.wsd4{word-spacing:-0.908595pt;}
.ws5e{word-spacing:-0.903276pt;}
.ws1d{word-spacing:-0.797008pt;}
.wsad{word-spacing:-0.743874pt;}
.ws81{word-spacing:-0.690740pt;}
.wsb0{word-spacing:-0.637606pt;}
.ws77{word-spacing:-0.584473pt;}
.ws87{word-spacing:-0.478205pt;}
.wsd3{word-spacing:-0.430387pt;}
.ws47{word-spacing:-0.371937pt;}
.wsd1{word-spacing:-0.334746pt;}
.ws43{word-spacing:-0.318803pt;}
.wsd7{word-spacing:-0.239104pt;}
.ws17{word-spacing:-0.159402pt;}
.ws91{word-spacing:-0.106268pt;}
.ws25{word-spacing:-0.053134pt;}
.ws7{word-spacing:-0.047821pt;}
.ws90{word-spacing:-0.039319pt;}
.ws4c{word-spacing:-0.023013pt;}
.ws4a{word-spacing:-0.019944pt;}
.ws10{word-spacing:-0.005325pt;}
.ws1{word-spacing:-0.004787pt;}
.ws3{word-spacing:-0.002400pt;}
.ws4{word-spacing:-0.002223pt;}
.ws84{word-spacing:-0.001333pt;}
.ws70{word-spacing:-0.000586pt;}
.ws0{word-spacing:0.000000pt;}
.wsaa{word-spacing:0.095642pt;}
.ws42{word-spacing:0.159402pt;}
.ws46{word-spacing:0.212535pt;}
.ws33{word-spacing:0.318803pt;}
.wscf{word-spacing:0.382566pt;}
.wsa2{word-spacing:0.425071pt;}
.ws3e{word-spacing:0.531339pt;}
.wsbc{word-spacing:0.573850pt;}
.ws92{word-spacing:0.584473pt;}
.ws8b{word-spacing:0.637606pt;}
.ws5d{word-spacing:0.690740pt;}
.wsa1{word-spacing:0.743874pt;}
.wsc9{word-spacing:0.765133pt;}
.wsd9{word-spacing:0.812954pt;}
.ws27{word-spacing:0.850142pt;}
.ws6d{word-spacing:0.956410pt;}
.ws6e{word-spacing:0.967230pt;}
.wsd8{word-spacing:1.004237pt;}
.ws88{word-spacing:1.009543pt;}
.ws2e{word-spacing:1.052058pt;}
.ws75{word-spacing:1.222079pt;}
.ws73{word-spacing:1.275213pt;}
.wsae{word-spacing:1.381481pt;}
.ws8c{word-spacing:1.434614pt;}
.ws31{word-spacing:1.487748pt;}
.ws32{word-spacing:1.540882pt;}
.ws55{word-spacing:1.542758pt;}
.ws54{word-spacing:1.578086pt;}
.ws9a{word-spacing:1.700284pt;}
.ws53{word-spacing:1.769370pt;}
.ws52{word-spacing:1.776862pt;}
.ws51{word-spacing:1.817190pt;}
.ws64{word-spacing:1.859685pt;}
.ws9d{word-spacing:1.965953pt;}
.ws45{word-spacing:2.019087pt;}
.wsdd{word-spacing:2.104115pt;}
.ws1b{word-spacing:2.125355pt;}
.ws67{word-spacing:2.178489pt;}
.ws66{word-spacing:2.193089pt;}
.wsb3{word-spacing:2.231622pt;}
.ws5b{word-spacing:2.284756pt;}
.ws19{word-spacing:2.337890pt;}
.wsd6{word-spacing:2.343219pt;}
.ws24{word-spacing:2.391024pt;}
.ws5a{word-spacing:2.444158pt;}
.ws18{word-spacing:2.497292pt;}
.wsa0{word-spacing:2.550426pt;}
.ws20{word-spacing:2.627521pt;}
.ws22{word-spacing:2.656693pt;}
.ws2d{word-spacing:2.725786pt;}
.ws2f{word-spacing:2.773606pt;}
.ws4f{word-spacing:2.778590pt;}
.ws49{word-spacing:2.805475pt;}
.wsa7{word-spacing:2.816095pt;}
.ws50{word-spacing:2.821427pt;}
.wsa6{word-spacing:2.869229pt;}
.wsc6{word-spacing:2.922363pt;}
.ws6f{word-spacing:3.081764pt;}
.ws9{word-spacing:3.108352pt;}
.wscb{word-spacing:3.156173pt;}
.ws69{word-spacing:3.188032pt;}
.ws68{word-spacing:3.189806pt;}
.ws6a{word-spacing:3.193065pt;}
.ws1f{word-spacing:3.241166pt;}
.ws7f{word-spacing:3.294300pt;}
.wsab{word-spacing:3.299635pt;}
.wsa8{word-spacing:3.453701pt;}
.wsc4{word-spacing:3.559230pt;}
.wsc2{word-spacing:3.559969pt;}
.ws44{word-spacing:3.613103pt;}
.ws23{word-spacing:3.666237pt;}
.ws57{word-spacing:3.861333pt;}
.ws58{word-spacing:3.873485pt;}
.wsdb{word-spacing:3.921306pt;}
.wsaf{word-spacing:3.931906pt;}
.ws95{word-spacing:3.985040pt;}
.wsa9{word-spacing:4.091308pt;}
.wsbd{word-spacing:4.112589pt;}
.ws97{word-spacing:4.144442pt;}
.ws41{word-spacing:4.197575pt;}
.wse1{word-spacing:4.208230pt;}
.ws1a{word-spacing:4.303843pt;}
.ws1e{word-spacing:4.356977pt;}
.ws30{word-spacing:4.410111pt;}
.ws7b{word-spacing:4.463245pt;}
.ws36{word-spacing:4.569513pt;}
.ws35{word-spacing:4.574213pt;}
.ws34{word-spacing:4.622646pt;}
.wsde{word-spacing:4.686438pt;}
.ws1c{word-spacing:4.835182pt;}
.wsc7{word-spacing:4.941450pt;}
.ws9e{word-spacing:4.944233pt;}
.ws9f{word-spacing:4.994583pt;}
.ws8a{word-spacing:5.047717pt;}
.wsda{word-spacing:5.069005pt;}
.ws89{word-spacing:5.207119pt;}
.wscd{word-spacing:5.308109pt;}
.ws5c{word-spacing:5.313387pt;}
.ws6c{word-spacing:5.366521pt;}
.ws6b{word-spacing:5.419654pt;}
.ws86{word-spacing:5.525922pt;}
.wsb4{word-spacing:5.685324pt;}
.ws3c{word-spacing:5.738458pt;}
.ws39{word-spacing:5.760653pt;}
.ws6{word-spacing:5.786317pt;}
.ws3b{word-spacing:5.791591pt;}
.ws5{word-spacing:5.805943pt;}
.ws37{word-spacing:5.844725pt;}
.ws3f{word-spacing:5.897859pt;}
.ws99{word-spacing:6.110395pt;}
.wse{word-spacing:6.168883pt;}
.wse0{word-spacing:6.360166pt;}
.ws15{word-spacing:6.482332pt;}
.ws26{word-spacing:6.588599pt;}
.ws65{word-spacing:6.907403pt;}
.wsbb{word-spacing:6.934016pt;}
.wsac{word-spacing:7.066804pt;}
.ws16{word-spacing:7.173072pt;}
.wsdf{word-spacing:7.173120pt;}
.wsdc{word-spacing:7.268762pt;}
.ws12{word-spacing:7.598143pt;}
.ws14{word-spacing:7.651277pt;}
.wsd0{word-spacing:7.651328pt;}
.wsb5{word-spacing:9.261206pt;}
.wsb7{word-spacing:9.298400pt;}
.ws98{word-spacing:9.510962pt;}
.ws61{word-spacing:11.262614pt;}
.wsbe{word-spacing:11.861828pt;}
.ws63{word-spacing:12.074393pt;}
.ws5f{word-spacing:12.348496pt;}
.ws78{word-spacing:12.448733pt;}
.ws85{word-spacing:13.227481pt;}
.ws74{word-spacing:14.476496pt;}
.ws76{word-spacing:14.483948pt;}
.ws79{word-spacing:14.885289pt;}
.ws21{word-spacing:15.833892pt;}
.wsc0{word-spacing:16.450815pt;}
.wsbf{word-spacing:16.453771pt;}
.wsc5{word-spacing:16.840148pt;}
.wsc3{word-spacing:16.843104pt;}
.ws7e{word-spacing:17.707481pt;}
.wsb1{word-spacing:18.128437pt;}
.wsb2{word-spacing:18.130815pt;}
.ws3d{word-spacing:18.968790pt;}
.ws3a{word-spacing:18.986208pt;}
.ws40{word-spacing:19.098607pt;}
.wsc1{word-spacing:19.394815pt;}
.wsb9{word-spacing:19.922133pt;}
.ws13{word-spacing:20.828476pt;}
.wsba{word-spacing:38.002133pt;}
.ws96{word-spacing:39.850400pt;}
.ws11{word-spacing:47.820800pt;}
.wsce{word-spacing:73.022362pt;}
.wscc{word-spacing:92.341965pt;}
.ws2a{word-spacing:336.904633pt;}
.ws2b{word-spacing:407.711425pt;}
._11{margin-left:-882.473838pt;}
._f{margin-left:-874.892266pt;}
._12{margin-left:-843.198625pt;}
._10{margin-left:-838.071692pt;}
._14{margin-left:-6.299459pt;}
._36{margin-left:-5.403750pt;}
._4{margin-left:-4.250709pt;}
._6{margin-left:-3.161515pt;}
._3{margin-left:-2.226316pt;}
._1{margin-left:-1.195520pt;}
._7{width:1.849790pt;}
._5{width:2.941837pt;}
._0{width:3.992849pt;}
._18{width:7.097381pt;}
._1c{width:8.201167pt;}
._16{width:9.888490pt;}
._1b{width:10.839309pt;}
._19{width:12.593549pt;}
._1a{width:13.496002pt;}
._c{width:14.655863pt;}
._15{width:16.380987pt;}
._e{width:18.171782pt;}
._2f{width:20.068441pt;}
._30{width:23.385287pt;}
._23{width:24.600980pt;}
._17{width:26.032987pt;}
._2c{width:27.895200pt;}
._2b{width:29.244389pt;}
._22{width:31.056795pt;}
._2a{width:34.054268pt;}
._29{width:35.757531pt;}
._2d{width:37.193600pt;}
._8{width:38.543565pt;}
._28{width:40.355056pt;}
._27{width:42.742268pt;}
._26{width:45.756682pt;}
._2e{width:47.305067pt;}
._31{width:48.987156pt;}
._2{width:50.498765pt;}
._d{width:53.133867pt;}
._3b{width:55.759053pt;}
._25{width:61.034698pt;}
._13{width:63.761067pt;}
._21{width:66.859605pt;}
._33{width:68.713460pt;}
._34{width:69.735108pt;}
._32{width:74.906929pt;}
._35{width:84.977562pt;}
._38{width:87.655526pt;}
._3c{width:90.285670pt;}
._39{width:92.963635pt;}
._1f{width:94.603703pt;}
._20{width:96.072705pt;}
._37{width:98.271744pt;}
._1e{width:103.010399pt;}
._24{width:105.797552pt;}
._3d{width:108.484133pt;}
._1d{width:110.922975pt;}
._3a{width:119.504179pt;}
._9{width:363.567007pt;}
._b{width:430.018311pt;}
._a{width:471.383545pt;}
.fsd{font-size:15.341867pt;}
.fsc{font-size:18.410240pt;}
.fsa{font-size:19.944427pt;}
.fsb{font-size:23.012800pt;}
.fs8{font-size:23.151816pt;}
.fs10{font-size:24.038208pt;}
.fse{font-size:26.709120pt;}
.fs9{font-size:27.615360pt;}
.fsf{font-size:29.380032pt;}
.fs7{font-size:30.208000pt;}
.fs5{font-size:31.880533pt;}
.fs11{font-size:37.193600pt;}
.fs3{font-size:39.318933pt;}
.fs6{font-size:42.507200pt;}
.fs0{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:63.761067pt;}
.fs1{font-size:74.387733pt;}
.y0{bottom:0.000000pt;}
.y6a{bottom:0.910170pt;}
.y37{bottom:0.995619pt;}
.y58{bottom:1.053986pt;}
.ydb{bottom:2.698734pt;}
.ye8{bottom:19.366060pt;}
.ydc{bottom:19.577117pt;}
.y5d{bottom:22.083040pt;}
.ye7{bottom:26.719136pt;}
.y5c{bottom:27.069147pt;}
.y67{bottom:27.963631pt;}
.y5b{bottom:32.055254pt;}
.y69{bottom:32.182645pt;}
.y66{bottom:32.566191pt;}
.y68{bottom:33.333285pt;}
.ye6{bottom:34.071934pt;}
.y5a{bottom:37.041360pt;}
.y65{bottom:37.168751pt;}
.ydd{bottom:40.507719pt;}
.ye5{bottom:41.425010pt;}
.y59{bottom:44.931460pt;}
.y64{bottom:45.058856pt;}
.y32{bottom:51.893445pt;}
.yde{bottom:61.438321pt;}
.y70{bottom:61.934049pt;}
.y63{bottom:62.072746pt;}
.ye3{bottom:65.033925pt;}
.y35{bottom:66.259037pt;}
.y34{bottom:73.493979pt;}
.y2d{bottom:80.285126pt;}
.y33{bottom:80.728922pt;}
.ydf{bottom:82.369145pt;}
.y62{bottom:83.059194pt;}
.y6f{bottom:83.198374pt;}
.y61{bottom:88.045301pt;}
.y6e{bottom:88.184480pt;}
.y31{bottom:92.050756pt;}
.y60{bottom:93.031408pt;}
.y6d{bottom:93.170587pt;}
.y5f{bottom:98.017514pt;}
.y6c{bottom:98.156694pt;}
.ye0{bottom:103.299747pt;}
.y5e{bottom:105.907624pt;}
.y6b{bottom:106.046796pt;}
.y30{bottom:106.574614pt;}
.y2f{bottom:121.098471pt;}
.ye1{bottom:124.230572pt;}
.y2c{bottom:125.755899pt;}
.ye2{bottom:145.161174pt;}
.y2e{bottom:149.976134pt;}
.ye4{bottom:150.920439pt;}
.y56{bottom:157.292000pt;}
.y55{bottom:169.912000pt;}
.y12f{bottom:170.576000pt;}
.y2a{bottom:172.358667pt;}
.y92{bottom:173.232000pt;}
.y29{bottom:181.580000pt;}
.y54{bottom:182.530667pt;}
.y12e{bottom:183.858667pt;}
.y36{bottom:184.455726pt;}
.y28{bottom:185.437333pt;}
.y91{bottom:188.420000pt;}
.yb9{bottom:189.172000pt;}
.y27{bottom:194.658667pt;}
.y154{bottom:196.004000pt;}
.y26{bottom:198.516000pt;}
.yd9{bottom:205.112000pt;}
.yb8{bottom:205.113333pt;}
.y12d{bottom:207.174667pt;}
.y53{bottom:207.741333pt;}
.y153{bottom:209.288000pt;}
.y90{bottom:210.453333pt;}
.y25{bottom:217.877333pt;}
.y12c{bottom:220.457333pt;}
.yb7{bottom:221.053333pt;}
.y152{bottom:222.572000pt;}
.y52{bottom:223.681333pt;}
.y8f{bottom:226.393333pt;}
.y24{bottom:233.817333pt;}
.yb6{bottom:236.993333pt;}
.y51{bottom:239.621333pt;}
.y12b{bottom:243.773333pt;}
.y151{bottom:248.001333pt;}
.yd8{bottom:252.933333pt;}
.y8e{bottom:252.960000pt;}
.y101{bottom:255.156000pt;}
.y50{bottom:255.562667pt;}
.y12a{bottom:257.056000pt;}
.yb5{bottom:259.866667pt;}
.y23{bottom:260.384000pt;}
.y150{bottom:261.284000pt;}
.yd7{bottom:268.873333pt;}
.y8d{bottom:268.901333pt;}
.y4f{bottom:271.502667pt;}
.y22{bottom:276.325333pt;}
.y129{bottom:280.806667pt;}
.y100{bottom:283.028000pt;}
.y8c{bottom:284.841333pt;}
.y14f{bottom:286.713333pt;}
.y4e{bottom:287.442667pt;}
.y21{bottom:292.265333pt;}
.yb4{bottom:294.945333pt;}
.yd6{bottom:295.440000pt;}
.yff{bottom:298.968000pt;}
.y14e{bottom:299.997333pt;}
.y8b{bottom:300.781333pt;}
.y4d{bottom:303.382667pt;}
.y20{bottom:308.205333pt;}
.yb3{bottom:310.885333pt;}
.y128{bottom:311.196000pt;}
.yd5{bottom:311.381333pt;}
.yfe{bottom:314.908000pt;}
.y8a{bottom:316.721333pt;}
.y4c{bottom:319.322667pt;}
.y1f{bottom:324.145333pt;}
.y14d{bottom:325.425333pt;}
.yb2{bottom:326.825333pt;}
.y127{bottom:327.136000pt;}
.yd4{bottom:327.321333pt;}
.yfd{bottom:330.848000pt;}
.y89{bottom:332.661333pt;}
.y4b{bottom:335.264000pt;}
.y14c{bottom:338.709333pt;}
.y1e{bottom:340.085333pt;}
.yb1{bottom:342.765333pt;}
.y126{bottom:343.076000pt;}
.yd3{bottom:343.261333pt;}
.yfc{bottom:346.788000pt;}
.y4a{bottom:351.204000pt;}
.y1d{bottom:356.026667pt;}
.yb0{bottom:358.705333pt;}
.y125{bottom:359.016000pt;}
.yd2{bottom:359.201333pt;}
.y88{bottom:359.229333pt;}
.yfb{bottom:362.728000pt;}
.y14b{bottom:364.138667pt;}
.y49{bottom:367.144000pt;}
.y1c{bottom:371.966667pt;}
.yaf{bottom:374.646667pt;}
.yd1{bottom:375.141333pt;}
.y87{bottom:375.169333pt;}
.y14a{bottom:377.421333pt;}
.yfa{bottom:378.669333pt;}
.y48{bottom:383.084000pt;}
.y124{bottom:385.584000pt;}
.y1b{bottom:387.906667pt;}
.yae{bottom:390.586667pt;}
.y149{bottom:390.705333pt;}
.yd0{bottom:391.082667pt;}
.y86{bottom:391.109333pt;}
.yf9{bottom:394.609333pt;}
.y47{bottom:399.024000pt;}
.y123{bottom:401.524000pt;}
.y1a{bottom:403.846667pt;}
.ycf{bottom:407.022667pt;}
.y85{bottom:407.049333pt;}
.yf8{bottom:410.549333pt;}
.yad{bottom:414.129333pt;}
.y46{bottom:414.964000pt;}
.y148{bottom:416.134667pt;}
.y122{bottom:417.464000pt;}
.y19{bottom:419.786667pt;}
.y84{bottom:422.236000pt;}
.yce{bottom:422.962667pt;}
.y147{bottom:429.418667pt;}
.yac{bottom:430.069333pt;}
.y45{bottom:430.905333pt;}
.y121{bottom:433.404000pt;}
.y18{bottom:435.726667pt;}
.yf7{bottom:437.116000pt;}
.ycd{bottom:438.902667pt;}
.y146{bottom:442.701333pt;}
.y83{bottom:444.270667pt;}
.yab{bottom:446.009333pt;}
.y44{bottom:446.845333pt;}
.y120{bottom:449.344000pt;}
.y17{bottom:451.668000pt;}
.yf6{bottom:453.056000pt;}
.ycc{bottom:454.842667pt;}
.y82{bottom:460.210667pt;}
.yaa{bottom:461.949333pt;}
.y43{bottom:462.785333pt;}
.y11f{bottom:465.285333pt;}
.y145{bottom:468.130667pt;}
.yf5{bottom:468.997333pt;}
.ycb{bottom:470.782667pt;}
.y81{bottom:476.150667pt;}
.ya9{bottom:477.889333pt;}
.y16{bottom:478.234667pt;}
.y42{bottom:478.725333pt;}
.y11e{bottom:481.225333pt;}
.y144{bottom:481.414667pt;}
.yf4{bottom:484.937333pt;}
.yca{bottom:486.724000pt;}
.y80{bottom:492.090667pt;}
.y15{bottom:494.174667pt;}
.y41{bottom:494.665333pt;}
.y11d{bottom:497.165333pt;}
.ya8{bottom:501.432000pt;}
.yc9{bottom:502.664000pt;}
.y143{bottom:506.842667pt;}
.y7f{bottom:508.030667pt;}
.y14{bottom:510.114667pt;}
.y40{bottom:510.605333pt;}
.yf3{bottom:511.504000pt;}
.y11c{bottom:513.105333pt;}
.ya7{bottom:517.372000pt;}
.yc8{bottom:517.884000pt;}
.y142{bottom:520.126667pt;}
.y7e{bottom:523.013333pt;}
.y13{bottom:526.054667pt;}
.y3f{bottom:526.546667pt;}
.yf2{bottom:527.444000pt;}
.y11b{bottom:529.045333pt;}
.ya6{bottom:533.313333pt;}
.y141{bottom:533.410667pt;}
.yc7{bottom:539.953333pt;}
.y12{bottom:541.996000pt;}
.yf1{bottom:543.384000pt;}
.y11a{bottom:544.985333pt;}
.y3e{bottom:546.388000pt;}
.y7d{bottom:547.704000pt;}
.ya5{bottom:549.253333pt;}
.yc6{bottom:555.893333pt;}
.y11{bottom:557.936000pt;}
.y140{bottom:558.838667pt;}
.yf0{bottom:559.325333pt;}
.y119{bottom:560.926667pt;}
.y7c{bottom:563.644000pt;}
.ya4{bottom:565.193333pt;}
.yc5{bottom:571.833333pt;}
.y13f{bottom:572.122667pt;}
.y10{bottom:574.217333pt;}
.y118{bottom:576.866667pt;}
.y3d{bottom:576.968000pt;}
.yef{bottom:577.693333pt;}
.y7b{bottom:579.584000pt;}
.ya3{bottom:581.133333pt;}
.y13e{bottom:585.406667pt;}
.yc4{bottom:587.773333pt;}
.y117{bottom:592.806667pt;}
.y3c{bottom:592.908000pt;}
.y7a{bottom:595.524000pt;}
.yf{bottom:600.208000pt;}
.yee{bottom:602.908000pt;}
.yc3{bottom:603.713333pt;}
.ya2{bottom:604.676000pt;}
.y116{bottom:608.746667pt;}
.y13d{bottom:610.836000pt;}
.y79{bottom:611.464000pt;}
.yed{bottom:618.848000pt;}
.y3b{bottom:619.017333pt;}
.yc2{bottom:619.653333pt;}
.ya1{bottom:620.616000pt;}
.y13c{bottom:624.118667pt;}
.y115{bottom:624.686667pt;}
.ye{bottom:626.776000pt;}
.y78{bottom:627.405333pt;}
.y3a{bottom:633.629333pt;}
.yec{bottom:634.788000pt;}
.yc1{bottom:635.594667pt;}
.ya0{bottom:636.556000pt;}
.yd{bottom:640.058667pt;}
.y114{bottom:640.626667pt;}
.y77{bottom:643.345333pt;}
.y39{bottom:648.241333pt;}
.y13b{bottom:649.548000pt;}
.yc0{bottom:651.534667pt;}
.yc{bottom:653.342667pt;}
.y113{bottom:656.568000pt;}
.y9f{bottom:657.141333pt;}
.y13a{bottom:662.832000pt;}
.y38{bottom:662.853333pt;}
.y76{bottom:665.572000pt;}
.yb{bottom:666.626667pt;}
.ybf{bottom:667.474667pt;}
.yeb{bottom:671.498667pt;}
.y139{bottom:676.114667pt;}
.ya{bottom:679.909333pt;}
.y75{bottom:680.184000pt;}
.y112{bottom:680.713333pt;}
.ybe{bottom:683.414667pt;}
.y9e{bottom:683.708000pt;}
.yea{bottom:686.110667pt;}
.y2b{bottom:687.898667pt;}
.y9{bottom:693.193333pt;}
.y74{bottom:694.796000pt;}
.y111{bottom:695.325333pt;}
.ybd{bottom:699.354667pt;}
.y9d{bottom:699.649333pt;}
.ye9{bottom:700.722667pt;}
.y138{bottom:701.544000pt;}
.y8{bottom:706.477333pt;}
.y73{bottom:709.408000pt;}
.y110{bottom:709.937333pt;}
.ybc{bottom:714.576000pt;}
.y137{bottom:714.828000pt;}
.y9c{bottom:715.589333pt;}
.y7{bottom:719.760000pt;}
.y72{bottom:724.020000pt;}
.y10f{bottom:724.549333pt;}
.yda{bottom:725.768000pt;}
.y9b{bottom:731.529333pt;}
.y6{bottom:733.044000pt;}
.ybb{bottom:733.372000pt;}
.y71{bottom:738.632000pt;}
.y136{bottom:740.256000pt;}
.y9a{bottom:747.469333pt;}
.y135{bottom:753.540000pt;}
.y10e{bottom:756.289333pt;}
.yba{bottom:758.096000pt;}
.y57{bottom:763.677333pt;}
.y10d{bottom:767.978667pt;}
.y158{bottom:768.722667pt;}
.y109{bottom:769.398667pt;}
.y99{bottom:774.036000pt;}
.y134{bottom:778.969333pt;}
.y10c{bottom:779.668000pt;}
.y157{bottom:782.006667pt;}
.y98{bottom:789.977333pt;}
.y10b{bottom:791.357333pt;}
.y133{bottom:792.253333pt;}
.y5{bottom:794.148000pt;}
.y10a{bottom:803.048000pt;}
.y97{bottom:805.917333pt;}
.y108{bottom:815.268000pt;}
.y132{bottom:817.681333pt;}
.y156{bottom:819.200000pt;}
.y96{bottom:821.857333pt;}
.y103{bottom:823.728000pt;}
.y107{bottom:826.957333pt;}
.y131{bottom:830.965333pt;}
.y95{bottom:837.797333pt;}
.y106{bottom:838.648000pt;}
.y155{bottom:843.110667pt;}
.y4{bottom:845.953333pt;}
.y105{bottom:850.337333pt;}
.y94{bottom:853.737333pt;}
.y130{bottom:856.394667pt;}
.y104{bottom:862.026667pt;}
.y3{bottom:868.536000pt;}
.y93{bottom:869.677333pt;}
.y102{bottom:874.248000pt;}
.y2{bottom:899.061333pt;}
.y1{bottom:913.673333pt;}
.h16{height:11.656223pt;}
.h15{height:13.987467pt;}
.h13{height:15.153090pt;}
.h14{height:17.484334pt;}
.he{height:17.589954pt;}
.h1d{height:17.812312pt;}
.h1a{height:19.791458pt;}
.h12{height:20.981201pt;}
.h1c{height:21.418043pt;}
.h1b{height:21.770604pt;}
.ha{height:21.933807pt;}
.hd{height:22.951000pt;}
.h1e{height:25.403229pt;}
.h1f{height:25.589197pt;}
.h20{height:25.812358pt;}
.hb{height:29.244954pt;}
.h10{height:29.458287pt;}
.h3{height:32.900710pt;}
.h2{height:33.140710pt;}
.h7{height:33.187635pt;}
.h9{height:36.556100pt;}
.h6{height:36.822767pt;}
.hf{height:36.874903pt;}
.h17{height:39.850400pt;}
.h8{height:44.250180pt;}
.h5{height:46.336759pt;}
.h18{height:46.342093pt;}
.h4{height:51.625087pt;}
.h11{height:119.285389pt;}
.h19{height:157.194300pt;}
.hc{height:195.082071pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:285.731940pt;}
.w2{width:428.584358pt;}
.w3{width:471.453577pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x41{left:2.462920pt;}
.x3f{left:3.815824pt;}
.x40{left:6.463193pt;}
.x56{left:9.531824pt;}
.x54{left:10.997463pt;}
.x55{left:13.777803pt;}
.x43{left:30.873902pt;}
.x42{left:33.884968pt;}
.x44{left:34.986543pt;}
.x12{left:37.066078pt;}
.x58{left:41.050857pt;}
.x57{left:42.072269pt;}
.x17{left:44.819047pt;}
.x64{left:55.435335pt;}
.x46{left:59.397250pt;}
.x45{left:62.408316pt;}
.x47{left:63.509890pt;}
.x65{left:64.825260pt;}
.x5a{left:72.691628pt;}
.x59{left:73.713046pt;}
.x49{left:88.845751pt;}
.x48{left:90.931660pt;}
.x4a{left:93.494007pt;}
.x5c{left:102.745021pt;}
.x5b{left:105.353825pt;}
.x52{left:111.159826pt;}
.x51{left:119.738533pt;}
.x16{left:136.298341pt;}
.x5d{left:139.326205pt;}
.x5e{left:140.511305pt;}
.x4d{left:148.096322pt;}
.x4b{left:150.309957pt;}
.x4c{left:151.495056pt;}
.x13{left:152.681812pt;}
.x5{left:158.362667pt;}
.xc{left:160.252000pt;}
.x18{left:165.165333pt;}
.x61{left:168.753355pt;}
.x5f{left:170.966990pt;}
.x60{left:172.152090pt;}
.x50{left:176.619678pt;}
.x4e{left:178.833313pt;}
.x4f{left:180.018413pt;}
.x11{left:182.174667pt;}
.x62{left:191.572000pt;}
.x53{left:198.519447pt;}
.x3e{left:203.268365pt;}
.x6b{left:216.124000pt;}
.x6e{left:224.756000pt;}
.xb{left:229.726667pt;}
.xa{left:232.085333pt;}
.x1{left:233.729333pt;}
.x1f{left:246.111372pt;}
.x1e{left:247.577016pt;}
.x6d{left:249.144000pt;}
.x3{left:250.544000pt;}
.x30{left:251.872743pt;}
.x63{left:253.605333pt;}
.x2{left:260.293333pt;}
.x67{left:264.493333pt;}
.x69{left:270.430667pt;}
.x20{left:272.993772pt;}
.x21{left:276.012705pt;}
.x6a{left:277.660000pt;}
.x68{left:278.701333pt;}
.x31{left:280.494586pt;}
.xd{left:282.500000pt;}
.x32{left:283.513519pt;}
.x6{left:285.706667pt;}
.x66{left:286.706667pt;}
.x22{left:301.429459pt;}
.x23{left:302.860995pt;}
.x24{left:304.253600pt;}
.x33{left:312.135359pt;}
.xe{left:313.056000pt;}
.x34{left:314.959520pt;}
.x7{left:319.658667pt;}
.x25{left:328.131694pt;}
.x26{left:331.296705pt;}
.x27{left:332.689310pt;}
.x35{left:343.776132pt;}
.x36{left:345.207689pt;}
.x37{left:346.600293pt;}
.x1a{left:350.709333pt;}
.x1c{left:352.773349pt;}
.x28{left:358.300808pt;}
.x29{left:359.732365pt;}
.x2a{left:361.124969pt;}
.x38{left:375.416882pt;}
.x39{left:376.848488pt;}
.x3a{left:378.241093pt;}
.x14{left:388.937360pt;}
.x15{left:390.607613pt;}
.x2b{left:392.730512pt;}
.x2c{left:394.468833pt;}
.xf{left:402.708000pt;}
.x3d{left:409.881817pt;}
.x3b{left:413.051696pt;}
.x3c{left:414.790017pt;}
.x2e{left:417.743118pt;}
.x2d{left:420.927605pt;}
.x8{left:423.698667pt;}
.x2f{left:439.394731pt;}
.x1d{left:444.304147pt;}
.x19{left:462.146667pt;}
.x10{left:482.758667pt;}
.x4{left:491.233333pt;}
.x9{left:521.500000pt;}
.x6c{left:524.284000pt;}
.x1b{left:576.972000pt;}
}




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