
    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_41cc303d43209c8b379a067d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_6a9becb7eafe101a31f7cdec.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.022461;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_6b4c6aac9185b5d60e620baa.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.964861;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_12a672c640a8c5e04f228d7a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.041992;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_1d3cf1d28e914ce6ed53124f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.032715;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_c1a4d5ba00ef05554d3a7be1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.026855;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_20c977bc7d52c452f0d11cc0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.011230;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_87e3e360012080f87a6a76f4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.976118;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_8929a5790ce7e4d07712acd4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.041992;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_709683b2d244180ccfbd9c82.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_1897d46b304ff49e9856b416.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.964863;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_e3ac3ea003117f0492e4d6ef.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.976111;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_309138316556a4c3dfc906aa.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.964844;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_7c9ae8f39b20e31993fbe48f.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.011230;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;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,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(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.054000px;}
.v1{vertical-align:21.978000px;}
.lsd{letter-spacing:-3.240000px;}
.ls4{letter-spacing:-1.632000px;}
.ls16{letter-spacing:-1.140000px;}
.ls14{letter-spacing:-1.080000px;}
.ls19{letter-spacing:-0.972000px;}
.ls8{letter-spacing:-0.918000px;}
.ls1e{letter-spacing:-0.810000px;}
.ls7{letter-spacing:-0.691200px;}
.ls1d{letter-spacing:-0.648000px;}
.ls13{letter-spacing:-0.600000px;}
.ls1a{letter-spacing:-0.594000px;}
.ls9{letter-spacing:-0.480000px;}
.ls1b{letter-spacing:-0.432000px;}
.lsf{letter-spacing:-0.420000px;}
.ls6{letter-spacing:-0.408000px;}
.ls18{letter-spacing:-0.378000px;}
.lsb{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.300000px;}
.ls1c{letter-spacing:-0.270000px;}
.ls10{letter-spacing:-0.240000px;}
.ls5{letter-spacing:-0.204000px;}
.ls15{letter-spacing:-0.060000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.432000px;}
.ls17{letter-spacing:0.720000px;}
.ls1{letter-spacing:1.026000px;}
.ls12{letter-spacing:2.052000px;}
.ls11{letter-spacing:2.295000px;}
.lse{letter-spacing:5.292000px;}
.lsc{letter-spacing:5.562000px;}
.ls0{letter-spacing:43.181364px;}
.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;}
}
.ws6{word-spacing:-17.928000px;}
.wsdd{word-spacing:-16.434000px;}
.ws4{word-spacing:-14.940000px;}
.ws5c{word-spacing:-14.880000px;}
.ws5b{word-spacing:-14.820000px;}
.ws27{word-spacing:-14.700000px;}
.wsd0{word-spacing:-14.640000px;}
.wsa8{word-spacing:-14.580000px;}
.ws6d{word-spacing:-14.460000px;}
.wsa7{word-spacing:-14.400000px;}
.ws43{word-spacing:-14.220000px;}
.wsbc{word-spacing:-14.100000px;}
.wse8{word-spacing:-13.800000px;}
.wscf{word-spacing:-13.620000px;}
.ws90{word-spacing:-13.446000px;}
.wseb{word-spacing:-13.392000px;}
.ws5{word-spacing:-13.230000px;}
.wse6{word-spacing:-13.140000px;}
.ws105{word-spacing:-13.122000px;}
.ws102{word-spacing:-13.014000px;}
.ws104{word-spacing:-12.960000px;}
.wse7{word-spacing:-12.840000px;}
.wsee{word-spacing:-12.798000px;}
.ws116{word-spacing:-12.744000px;}
.ws117{word-spacing:-12.582000px;}
.wsec{word-spacing:-12.420000px;}
.ws7{word-spacing:-12.366000px;}
.wsed{word-spacing:-12.312000px;}
.wsb{word-spacing:-12.150000px;}
.wse3{word-spacing:-12.000000px;}
.wsdf{word-spacing:-11.760000px;}
.ws8{word-spacing:-11.448000px;}
.ws9{word-spacing:-11.232000px;}
.wsc{word-spacing:-10.992000px;}
.ws2{word-spacing:-10.896000px;}
.ws25{word-spacing:-10.800000px;}
.ws79{word-spacing:-10.206000px;}
.ws3{word-spacing:-9.892800px;}
.wse4{word-spacing:-9.720000px;}
.ws1{word-spacing:-9.618000px;}
.wsdc{word-spacing:-9.480000px;}
.wse2{word-spacing:-8.820000px;}
.wse0{word-spacing:-8.520000px;}
.wse5{word-spacing:-7.860000px;}
.ws103{word-spacing:-7.807536px;}
.wse1{word-spacing:-7.380000px;}
.wse9{word-spacing:-5.940000px;}
.ws63{word-spacing:-4.320000px;}
.wsf7{word-spacing:-3.780000px;}
.wsae{word-spacing:-3.720000px;}
.ws115{word-spacing:-3.510000px;}
.wsce{word-spacing:-3.420000px;}
.ws4f{word-spacing:-3.360000px;}
.wsfb{word-spacing:-3.294000px;}
.ws77{word-spacing:-3.000000px;}
.wsfa{word-spacing:-2.862000px;}
.ws5a{word-spacing:-2.820000px;}
.wsfd{word-spacing:-2.808000px;}
.ws4d{word-spacing:-2.760000px;}
.ws121{word-spacing:-2.700000px;}
.ws94{word-spacing:-2.640000px;}
.ws85{word-spacing:-2.580000px;}
.wsea{word-spacing:-2.538000px;}
.ws49{word-spacing:-2.520000px;}
.ws11c{word-spacing:-2.484000px;}
.wsbf{word-spacing:-2.460000px;}
.ws3d{word-spacing:-2.400000px;}
.ws112{word-spacing:-2.376000px;}
.ws4a{word-spacing:-2.280000px;}
.wsaa{word-spacing:-2.160000px;}
.ws122{word-spacing:-2.106000px;}
.ws88{word-spacing:-2.100000px;}
.ws36{word-spacing:-2.040000px;}
.ws10a{word-spacing:-1.998000px;}
.ws35{word-spacing:-1.980000px;}
.wsf6{word-spacing:-1.890000px;}
.ws87{word-spacing:-1.860000px;}
.wsa0{word-spacing:-1.800000px;}
.ws11f{word-spacing:-1.782000px;}
.wsa6{word-spacing:-1.740000px;}
.ws8c{word-spacing:-1.680000px;}
.ws44{word-spacing:-1.620000px;}
.ws50{word-spacing:-1.560000px;}
.wscb{word-spacing:-1.500000px;}
.ws110{word-spacing:-1.458000px;}
.ws3b{word-spacing:-1.440000px;}
.ws54{word-spacing:-1.380000px;}
.ws21{word-spacing:-1.320000px;}
.ws3e{word-spacing:-1.260000px;}
.wsc6{word-spacing:-1.200000px;}
.ws3c{word-spacing:-1.140000px;}
.wsb4{word-spacing:-1.080000px;}
.ws13{word-spacing:-1.026000px;}
.wsd4{word-spacing:-1.020000px;}
.ws2a{word-spacing:-0.960000px;}
.ws10b{word-spacing:-0.918000px;}
.wsb5{word-spacing:-0.900000px;}
.ws47{word-spacing:-0.840000px;}
.ws4c{word-spacing:-0.780000px;}
.ws1e{word-spacing:-0.720000px;}
.ws101{word-spacing:-0.702000px;}
.ws2c{word-spacing:-0.600000px;}
.ws15{word-spacing:-0.540000px;}
.ws12{word-spacing:-0.486000px;}
.ws24{word-spacing:-0.480000px;}
.ws28{word-spacing:-0.420000px;}
.wsf0{word-spacing:-0.378000px;}
.ws34{word-spacing:-0.360000px;}
.wsf4{word-spacing:-0.324000px;}
.ws57{word-spacing:-0.300000px;}
.wsb2{word-spacing:-0.240000px;}
.ws10{word-spacing:-0.216000px;}
.ws51{word-spacing:-0.180000px;}
.wsb3{word-spacing:-0.120000px;}
.ws14{word-spacing:-0.108000px;}
.ws60{word-spacing:-0.060000px;}
.wsa{word-spacing:-0.054000px;}
.ws26{word-spacing:-0.048000px;}
.wsd{word-spacing:0.000000px;}
.ws9e{word-spacing:0.060000px;}
.wsbe{word-spacing:0.120000px;}
.ws106{word-spacing:0.162000px;}
.ws8b{word-spacing:0.180000px;}
.wse{word-spacing:0.204000px;}
.wsb1{word-spacing:0.240000px;}
.ws114{word-spacing:0.270000px;}
.ws75{word-spacing:0.300000px;}
.ws55{word-spacing:0.360000px;}
.wsf2{word-spacing:0.378000px;}
.wsf{word-spacing:0.408000px;}
.ws83{word-spacing:0.420000px;}
.ws10f{word-spacing:0.432000px;}
.ws52{word-spacing:0.480000px;}
.ws1b{word-spacing:0.486000px;}
.ws4e{word-spacing:0.540000px;}
.wsf8{word-spacing:0.594000px;}
.wsb6{word-spacing:0.600000px;}
.ws11e{word-spacing:0.648000px;}
.wsd5{word-spacing:0.660000px;}
.ws11{word-spacing:0.691200px;}
.ws1a{word-spacing:0.702000px;}
.wsda{word-spacing:0.720000px;}
.ws2b{word-spacing:0.780000px;}
.wsfc{word-spacing:0.810000px;}
.ws32{word-spacing:0.840000px;}
.ws98{word-spacing:0.900000px;}
.wsf5{word-spacing:0.972000px;}
.ws99{word-spacing:1.020000px;}
.ws16{word-spacing:1.026000px;}
.ws48{word-spacing:1.080000px;}
.wsbb{word-spacing:1.140000px;}
.wsab{word-spacing:1.200000px;}
.wsf9{word-spacing:1.242000px;}
.wsd9{word-spacing:1.260000px;}
.wsaf{word-spacing:1.320000px;}
.ws111{word-spacing:1.350000px;}
.ws120{word-spacing:1.512000px;}
.ws0{word-spacing:1.530000px;}
.ws119{word-spacing:1.566000px;}
.ws118{word-spacing:1.674000px;}
.ws22{word-spacing:1.680000px;}
.wsdb{word-spacing:1.740000px;}
.wsd1{word-spacing:1.800000px;}
.ws100{word-spacing:1.836000px;}
.ws23{word-spacing:1.860000px;}
.wsa1{word-spacing:1.920000px;}
.wsfe{word-spacing:1.998000px;}
.wsba{word-spacing:2.052000px;}
.wsb9{word-spacing:2.106000px;}
.wsf3{word-spacing:2.214000px;}
.wsb8{word-spacing:2.268000px;}
.ws29{word-spacing:2.280000px;}
.wsb7{word-spacing:2.322000px;}
.ws46{word-spacing:2.340000px;}
.ws33{word-spacing:2.400000px;}
.ws86{word-spacing:2.460000px;}
.ws19{word-spacing:2.484000px;}
.wsd6{word-spacing:2.520000px;}
.wsff{word-spacing:2.592000px;}
.ws2f{word-spacing:2.640000px;}
.ws9b{word-spacing:2.700000px;}
.wsa3{word-spacing:2.760000px;}
.ws81{word-spacing:2.820000px;}
.ws45{word-spacing:2.880000px;}
.ws9a{word-spacing:3.000000px;}
.ws82{word-spacing:3.120000px;}
.ws1d{word-spacing:3.180000px;}
.ws7d{word-spacing:3.240000px;}
.wsef{word-spacing:3.402000px;}
.ws93{word-spacing:3.420000px;}
.ws7f{word-spacing:3.540000px;}
.ws11b{word-spacing:3.564000px;}
.ws6f{word-spacing:3.600000px;}
.ws7c{word-spacing:3.618000px;}
.wsc2{word-spacing:3.720000px;}
.ws107{word-spacing:3.726000px;}
.wsc7{word-spacing:3.780000px;}
.wsd3{word-spacing:3.840000px;}
.ws1c{word-spacing:3.888000px;}
.ws89{word-spacing:3.900000px;}
.ws80{word-spacing:4.020000px;}
.ws113{word-spacing:4.050000px;}
.ws95{word-spacing:4.080000px;}
.wsad{word-spacing:4.140000px;}
.ws68{word-spacing:4.200000px;}
.ws30{word-spacing:4.260000px;}
.ws31{word-spacing:4.320000px;}
.wsa5{word-spacing:4.380000px;}
.ws67{word-spacing:4.440000px;}
.ws10c{word-spacing:4.482000px;}
.ws7e{word-spacing:4.500000px;}
.ws66{word-spacing:4.560000px;}
.wsc8{word-spacing:4.620000px;}
.ws69{word-spacing:4.680000px;}
.ws9d{word-spacing:4.740000px;}
.ws37{word-spacing:4.800000px;}
.ws40{word-spacing:4.860000px;}
.ws3a{word-spacing:4.920000px;}
.ws53{word-spacing:4.980000px;}
.wsc9{word-spacing:5.040000px;}
.wsca{word-spacing:5.100000px;}
.ws72{word-spacing:5.160000px;}
.ws18{word-spacing:5.184000px;}
.ws73{word-spacing:5.220000px;}
.ws92{word-spacing:5.238000px;}
.wsde{word-spacing:5.280000px;}
.ws91{word-spacing:5.292000px;}
.wsc1{word-spacing:5.340000px;}
.ws76{word-spacing:5.400000px;}
.ws11a{word-spacing:5.454000px;}
.ws7b{word-spacing:5.562000px;}
.wsc3{word-spacing:5.580000px;}
.ws7a{word-spacing:5.616000px;}
.ws97{word-spacing:5.640000px;}
.ws9c{word-spacing:5.700000px;}
.wsd2{word-spacing:5.760000px;}
.ws39{word-spacing:5.820000px;}
.ws6c{word-spacing:5.880000px;}
.ws108{word-spacing:5.886000px;}
.wsa4{word-spacing:5.940000px;}
.ws64{word-spacing:6.000000px;}
.ws65{word-spacing:6.120000px;}
.ws78{word-spacing:6.180000px;}
.ws6e{word-spacing:6.240000px;}
.wsac{word-spacing:6.300000px;}
.ws84{word-spacing:6.360000px;}
.ws9f{word-spacing:6.420000px;}
.wscd{word-spacing:6.480000px;}
.wsf1{word-spacing:6.588000px;}
.ws1f{word-spacing:6.600000px;}
.ws96{word-spacing:6.660000px;}
.wsd7{word-spacing:6.720000px;}
.wsc5{word-spacing:6.840000px;}
.ws4b{word-spacing:6.900000px;}
.ws8f{word-spacing:6.960000px;}
.wsc0{word-spacing:7.140000px;}
.ws41{word-spacing:7.320000px;}
.ws17{word-spacing:7.344000px;}
.ws61{word-spacing:7.380000px;}
.wsa2{word-spacing:7.440000px;}
.ws70{word-spacing:7.500000px;}
.wscc{word-spacing:7.560000px;}
.ws58{word-spacing:8.040000px;}
.ws59{word-spacing:8.100000px;}
.ws109{word-spacing:8.154000px;}
.ws38{word-spacing:8.280000px;}
.ws8d{word-spacing:8.340000px;}
.ws56{word-spacing:8.400000px;}
.ws20{word-spacing:8.580000px;}
.ws2d{word-spacing:8.700000px;}
.ws2e{word-spacing:8.760000px;}
.ws8a{word-spacing:8.820000px;}
.wsa9{word-spacing:9.240000px;}
.wsbd{word-spacing:9.660000px;}
.wsd8{word-spacing:10.200000px;}
.ws3f{word-spacing:10.680000px;}
.ws6a{word-spacing:10.740000px;}
.ws8e{word-spacing:10.800000px;}
.ws11d{word-spacing:11.826000px;}
.wsc4{word-spacing:12.480000px;}
.ws10e{word-spacing:13.338000px;}
.ws10d{word-spacing:14.202000px;}
.ws62{word-spacing:15.000000px;}
.ws42{word-spacing:19.800000px;}
.wsb0{word-spacing:20.880000px;}
.ws6b{word-spacing:21.660000px;}
.ws71{word-spacing:27.840000px;}
.ws74{word-spacing:36.720000px;}
.ws5e{word-spacing:584.496000px;}
.ws5d{word-spacing:694.953600px;}
.ws5f{word-spacing:729.024000px;}
._7{margin-left:-11.100000px;}
._1d{margin-left:-9.231600px;}
._b{margin-left:-6.451800px;}
._4{margin-left:-5.273400px;}
._5{margin-left:-3.825000px;}
._1{margin-left:-2.468400px;}
._0{margin-left:-1.428000px;}
._3{width:1.315800px;}
._2{width:3.253800px;}
._8{width:4.327200px;}
._d{width:5.730000px;}
._c{width:6.906000px;}
._9{width:8.700000px;}
._a{width:9.810000px;}
._16{width:11.142000px;}
._f{width:13.530000px;}
._1b{width:14.640000px;}
._e{width:19.656000px;}
._14{width:23.712000px;}
._13{width:27.536400px;}
._15{width:35.216400px;}
._6{width:36.369600px;}
._1c{width:43.140000px;}
._19{width:77.520000px;}
._1a{width:81.840000px;}
._18{width:82.980000px;}
._17{width:87.480000px;}
._12{width:558.672000px;}
._11{width:596.400000px;}
._10{width:740.928000px;}
.fc4{color:rgb(38,64,138);}
.fc2{color:rgb(75,119,196);}
.fc1{color:rgb(65,102,168);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:31.482000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y3c{bottom:71.212050px;}
.y3d{bottom:75.040050px;}
.y16c{bottom:112.790850px;}
.y13f{bottom:112.814850px;}
.y10f{bottom:112.850850px;}
.yd5{bottom:113.078700px;}
.ycf{bottom:113.078850px;}
.yd{bottom:117.205050px;}
.y2a{bottom:117.212700px;}
.yd3{bottom:120.165000px;}
.yce{bottom:120.491850px;}
.yd7{bottom:120.496200px;}
.yd1{bottom:120.496350px;}
.yc{bottom:131.601450px;}
.y16b{bottom:133.796850px;}
.y13e{bottom:133.820850px;}
.y10e{bottom:133.856850px;}
.y6e{bottom:134.078700px;}
.y9c{bottom:134.078850px;}
.y29{bottom:138.212700px;}
.yd2{bottom:139.969500px;}
.ycd{bottom:140.296350px;}
.yd6{bottom:140.300700px;}
.yd0{bottom:140.300850px;}
.yc8{bottom:141.637350px;}
.yb{bottom:145.997850px;}
.y16a{bottom:154.802850px;}
.y13d{bottom:154.826850px;}
.y10d{bottom:154.862850px;}
.y6d{bottom:155.078700px;}
.y9b{bottom:155.078850px;}
.y28{bottom:159.212700px;}
.ycc{bottom:160.100850px;}
.ya{bottom:160.397850px;}
.ye4{bottom:160.529400px;}
.yc7{bottom:164.245350px;}
.y169{bottom:175.808850px;}
.y13c{bottom:175.832850px;}
.y10c{bottom:175.868850px;}
.y6c{bottom:176.078700px;}
.y9a{bottom:176.078850px;}
.y27{bottom:180.212700px;}
.yc6{bottom:186.853350px;}
.y168{bottom:196.814850px;}
.y13b{bottom:196.838850px;}
.y10b{bottom:196.874850px;}
.ye3{bottom:197.072850px;}
.y6b{bottom:197.078700px;}
.y99{bottom:197.078850px;}
.y26{bottom:201.212700px;}
.y39{bottom:205.806300px;}
.yc5{bottom:209.461350px;}
.y167{bottom:217.820850px;}
.y13a{bottom:217.844850px;}
.y10a{bottom:217.880850px;}
.y6a{bottom:218.078700px;}
.y98{bottom:218.078850px;}
.y25{bottom:222.212700px;}
.y38{bottom:223.801800px;}
.y166{bottom:238.826850px;}
.y139{bottom:238.850850px;}
.y109{bottom:238.886850px;}
.y69{bottom:239.078700px;}
.y97{bottom:239.078850px;}
.y37{bottom:241.797300px;}
.y24{bottom:243.212700px;}
.ye2{bottom:244.529400px;}
.ydc{bottom:253.436550px;}
.y36{bottom:259.792800px;}
.y165{bottom:259.832850px;}
.y138{bottom:259.856850px;}
.y108{bottom:259.892850px;}
.y68{bottom:260.078700px;}
.y96{bottom:260.078850px;}
.yc4{bottom:260.084250px;}
.y23{bottom:264.212700px;}
.ydb{bottom:274.441050px;}
.y35{bottom:277.788300px;}
.y164{bottom:280.838850px;}
.y137{bottom:280.862850px;}
.y107{bottom:280.898850px;}
.y67{bottom:281.078700px;}
.y95{bottom:281.078850px;}
.yc3{bottom:281.084250px;}
.y22{bottom:285.212700px;}
.y34{bottom:295.783800px;}
.y163{bottom:301.844850px;}
.y136{bottom:301.868850px;}
.y106{bottom:301.904850px;}
.y66{bottom:302.078700px;}
.y94{bottom:302.078850px;}
.yc2{bottom:302.084250px;}
.y21{bottom:306.212700px;}
.ye1{bottom:307.529400px;}
.yd9{bottom:308.101950px;}
.y33{bottom:313.779300px;}
.y162{bottom:322.850850px;}
.y135{bottom:322.874850px;}
.y105{bottom:322.910850px;}
.y65{bottom:323.078700px;}
.y93{bottom:323.078850px;}
.yc1{bottom:323.084250px;}
.y20{bottom:327.212700px;}
.yd8{bottom:327.906450px;}
.y32{bottom:331.774800px;}
.y161{bottom:343.856850px;}
.y134{bottom:343.880850px;}
.y104{bottom:343.916850px;}
.y64{bottom:344.078700px;}
.y92{bottom:344.078850px;}
.yc0{bottom:344.084250px;}
.y1f{bottom:359.596500px;}
.y160{bottom:364.862850px;}
.y133{bottom:364.886850px;}
.y103{bottom:364.922850px;}
.y63{bottom:365.078700px;}
.y91{bottom:365.078850px;}
.ybf{bottom:365.084250px;}
.y31{bottom:366.780300px;}
.ye0{bottom:370.529400px;}
.y30{bottom:384.775800px;}
.y15f{bottom:385.868850px;}
.y132{bottom:385.892850px;}
.y102{bottom:385.928850px;}
.y62{bottom:386.078700px;}
.y90{bottom:386.078850px;}
.ybe{bottom:386.084250px;}
.y2f{bottom:402.771300px;}
.y15e{bottom:406.874850px;}
.y131{bottom:406.898850px;}
.y101{bottom:406.934850px;}
.y61{bottom:407.078700px;}
.y8f{bottom:407.078850px;}
.ybd{bottom:407.084250px;}
.yd4{bottom:424.426200px;}
.y15d{bottom:427.880850px;}
.y130{bottom:427.904850px;}
.y100{bottom:427.940850px;}
.y60{bottom:428.078700px;}
.y8e{bottom:428.078850px;}
.ybc{bottom:428.084250px;}
.ydf{bottom:433.937100px;}
.y2e{bottom:437.776800px;}
.y1e{bottom:448.627950px;}
.y15c{bottom:448.886850px;}
.y12f{bottom:448.910850px;}
.yff{bottom:448.946850px;}
.y5f{bottom:449.078700px;}
.y8d{bottom:449.078850px;}
.ybb{bottom:449.084250px;}
.y2d{bottom:455.776800px;}
.yde{bottom:463.441050px;}
.y15b{bottom:469.892850px;}
.y12e{bottom:469.916850px;}
.yfe{bottom:469.952850px;}
.y5e{bottom:470.078700px;}
.y8c{bottom:470.078850px;}
.yba{bottom:470.084250px;}
.y2c{bottom:473.776800px;}
.y1d{bottom:489.629400px;}
.y15a{bottom:490.898850px;}
.y12d{bottom:490.922850px;}
.yfd{bottom:490.958850px;}
.y5d{bottom:491.078700px;}
.y8b{bottom:491.078850px;}
.yb9{bottom:491.084250px;}
.y2b{bottom:491.776800px;}
.y1c{bottom:509.433900px;}
.y159{bottom:511.904850px;}
.y12c{bottom:511.928850px;}
.yfc{bottom:511.964850px;}
.y5c{bottom:512.078700px;}
.y8a{bottom:512.078850px;}
.yb8{bottom:512.084250px;}
.y1b{bottom:529.238400px;}
.y158{bottom:532.910850px;}
.y12b{bottom:532.934850px;}
.yfb{bottom:532.970850px;}
.y5b{bottom:533.078700px;}
.y89{bottom:533.078850px;}
.yb7{bottom:533.084250px;}
.y1a{bottom:549.042900px;}
.y157{bottom:553.916850px;}
.y12a{bottom:553.940850px;}
.yfa{bottom:553.976850px;}
.y5a{bottom:554.078700px;}
.y88{bottom:554.078850px;}
.yb6{bottom:554.084250px;}
.y19{bottom:568.847400px;}
.y156{bottom:574.922850px;}
.y129{bottom:574.946850px;}
.yf9{bottom:574.982850px;}
.y59{bottom:575.078700px;}
.y87{bottom:575.078850px;}
.yb5{bottom:575.084250px;}
.y18{bottom:588.651900px;}
.ydd{bottom:589.441050px;}
.y155{bottom:595.928850px;}
.y128{bottom:595.952850px;}
.yf8{bottom:595.988850px;}
.y58{bottom:596.078700px;}
.y86{bottom:596.078850px;}
.yb4{bottom:596.084250px;}
.y17{bottom:608.456400px;}
.y154{bottom:616.934850px;}
.y127{bottom:616.958850px;}
.yf7{bottom:616.994850px;}
.y57{bottom:617.078700px;}
.y85{bottom:617.078850px;}
.yb3{bottom:617.084250px;}
.y16{bottom:628.260900px;}
.y153{bottom:637.940850px;}
.y126{bottom:637.964850px;}
.yf6{bottom:638.000850px;}
.y56{bottom:638.078700px;}
.ycb{bottom:638.078850px;}
.yb2{bottom:638.084250px;}
.y15{bottom:648.065400px;}
.y84{bottom:652.441050px;}
.y152{bottom:658.946850px;}
.y125{bottom:658.970850px;}
.yf5{bottom:659.006850px;}
.y55{bottom:659.078700px;}
.yca{bottom:659.078850px;}
.yb1{bottom:659.084250px;}
.y14{bottom:667.869900px;}
.y151{bottom:679.952850px;}
.y124{bottom:679.976850px;}
.yf4{bottom:680.012850px;}
.y54{bottom:680.078700px;}
.yc9{bottom:680.078850px;}
.yb0{bottom:680.084250px;}
.y13{bottom:687.674400px;}
.y150{bottom:700.958850px;}
.y123{bottom:700.982850px;}
.yf3{bottom:701.018850px;}
.y53{bottom:701.078700px;}
.y83{bottom:701.078850px;}
.yaf{bottom:701.084250px;}
.y12{bottom:707.478900px;}
.y14f{bottom:721.964850px;}
.y122{bottom:721.988850px;}
.yf2{bottom:722.024850px;}
.y52{bottom:722.078700px;}
.y82{bottom:722.078850px;}
.yae{bottom:722.084250px;}
.y11{bottom:727.283400px;}
.y14e{bottom:742.970850px;}
.y121{bottom:742.994850px;}
.yf1{bottom:743.030850px;}
.y51{bottom:743.078700px;}
.y81{bottom:743.078850px;}
.yad{bottom:743.084250px;}
.y10{bottom:747.087900px;}
.y14d{bottom:763.976850px;}
.y120{bottom:764.000850px;}
.yf0{bottom:764.036850px;}
.y50{bottom:764.078700px;}
.y80{bottom:764.078850px;}
.yac{bottom:764.084250px;}
.yf{bottom:778.185300px;}
.y14c{bottom:784.982850px;}
.y11f{bottom:785.006850px;}
.yef{bottom:785.042850px;}
.y4f{bottom:785.078700px;}
.y7f{bottom:785.078850px;}
.yab{bottom:785.084250px;}
.y14b{bottom:805.988850px;}
.y11e{bottom:806.012850px;}
.yee{bottom:806.048850px;}
.y4e{bottom:806.078700px;}
.y7e{bottom:806.078850px;}
.yaa{bottom:806.084250px;}
.y14a{bottom:826.994850px;}
.y11d{bottom:827.018850px;}
.yed{bottom:827.054850px;}
.y4d{bottom:827.078700px;}
.y7d{bottom:827.078850px;}
.ya9{bottom:827.084250px;}
.y149{bottom:848.000850px;}
.y11c{bottom:848.024850px;}
.yec{bottom:848.060850px;}
.y4c{bottom:848.078700px;}
.y7c{bottom:848.078850px;}
.ya8{bottom:848.084250px;}
.y9{bottom:857.466750px;}
.y148{bottom:869.006850px;}
.y11b{bottom:869.030850px;}
.yeb{bottom:869.066850px;}
.y4b{bottom:869.078700px;}
.y7b{bottom:869.078850px;}
.ya7{bottom:869.084250px;}
.y8{bottom:875.466750px;}
.y147{bottom:890.012850px;}
.y11a{bottom:890.036850px;}
.yea{bottom:890.072850px;}
.y4a{bottom:890.078700px;}
.y7a{bottom:890.078850px;}
.ya6{bottom:890.084250px;}
.y7{bottom:893.466750px;}
.y146{bottom:911.018850px;}
.y119{bottom:911.042850px;}
.y49{bottom:911.078700px;}
.y79{bottom:911.078850px;}
.ya5{bottom:911.084250px;}
.y6{bottom:911.466750px;}
.y145{bottom:932.024850px;}
.y118{bottom:932.048850px;}
.y48{bottom:932.078700px;}
.y78{bottom:932.078850px;}
.ya4{bottom:932.084250px;}
.ye9{bottom:946.440900px;}
.y5{bottom:946.474800px;}
.y144{bottom:953.030850px;}
.y117{bottom:953.054850px;}
.y47{bottom:953.078700px;}
.y77{bottom:953.078850px;}
.ya3{bottom:953.084250px;}
.y143{bottom:974.036850px;}
.y116{bottom:974.060850px;}
.y46{bottom:974.078700px;}
.y76{bottom:974.078850px;}
.y4{bottom:983.288550px;}
.y142{bottom:995.042850px;}
.y115{bottom:995.066850px;}
.y45{bottom:995.078700px;}
.y75{bottom:995.078850px;}
.ya2{bottom:995.084250px;}
.y141{bottom:1016.048850px;}
.y114{bottom:1016.072850px;}
.y44{bottom:1016.078700px;}
.y74{bottom:1016.078850px;}
.ya1{bottom:1016.084250px;}
.y3{bottom:1016.285550px;}
.ye8{bottom:1021.529250px;}
.yda{bottom:1030.441050px;}
.y140{bottom:1037.054850px;}
.y113{bottom:1037.072850px;}
.y43{bottom:1037.078700px;}
.y73{bottom:1037.078850px;}
.y2{bottom:1049.282550px;}
.ya0{bottom:1050.029250px;}
.y112{bottom:1058.060850px;}
.ye7{bottom:1058.072850px;}
.y42{bottom:1058.078700px;}
.y72{bottom:1058.078850px;}
.y9f{bottom:1071.029250px;}
.y111{bottom:1079.066850px;}
.ye6{bottom:1079.072850px;}
.y41{bottom:1079.078700px;}
.y71{bottom:1079.078850px;}
.y9e{bottom:1092.029250px;}
.y110{bottom:1100.072850px;}
.y40{bottom:1100.078700px;}
.y70{bottom:1100.078850px;}
.ye{bottom:1109.815500px;}
.y3f{bottom:1121.078700px;}
.y6f{bottom:1121.078850px;}
.y9d{bottom:1124.326800px;}
.ye5{bottom:1125.451800px;}
.y3b{bottom:1159.189500px;}
.y3a{bottom:1178.689500px;}
.y3e{bottom:1178.692050px;}
.h7{height:34.446094px;}
.h6{height:34.657031px;}
.h10{height:38.226562px;}
.hf{height:38.273438px;}
.h2{height:38.507812px;}
.h5{height:38.531250px;}
.h11{height:39.000000px;}
.h8{height:43.004883px;}
.he{height:43.057617px;}
.hd{height:43.321289px;}
.ha{height:43.875000px;}
.h13{height:43.899000px;}
.h14{height:43.947000px;}
.h9{height:47.343750px;}
.hc{height:48.750000px;}
.h12{height:52.078125px;}
.h4{height:53.625000px;}
.hb{height:56.812500px;}
.h3{height:81.231445px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.xa{left:107.067450px;}
.xc{left:108.293250px;}
.x5{left:119.878950px;}
.x6{left:122.032500px;}
.x7{left:124.102950px;}
.x4{left:300.189000px;}
.xe{left:304.443600px;}
.xb{left:317.169000px;}
.x10{left:334.209000px;}
.x3{left:396.050700px;}
.xd{left:467.967600px;}
.x9{left:648.919350px;}
.x8{left:687.487350px;}
.xf{left:806.443650px;}
.x1{left:813.005250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.048000pt;}
.v1{vertical-align:19.536000pt;}
.lsd{letter-spacing:-2.880000pt;}
.ls4{letter-spacing:-1.450667pt;}
.ls16{letter-spacing:-1.013333pt;}
.ls14{letter-spacing:-0.960000pt;}
.ls19{letter-spacing:-0.864000pt;}
.ls8{letter-spacing:-0.816000pt;}
.ls1e{letter-spacing:-0.720000pt;}
.ls7{letter-spacing:-0.614400pt;}
.ls1d{letter-spacing:-0.576000pt;}
.ls13{letter-spacing:-0.533333pt;}
.ls1a{letter-spacing:-0.528000pt;}
.ls9{letter-spacing:-0.426667pt;}
.ls1b{letter-spacing:-0.384000pt;}
.lsf{letter-spacing:-0.373333pt;}
.ls6{letter-spacing:-0.362667pt;}
.ls18{letter-spacing:-0.336000pt;}
.lsb{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.266667pt;}
.ls1c{letter-spacing:-0.240000pt;}
.ls10{letter-spacing:-0.213333pt;}
.ls5{letter-spacing:-0.181333pt;}
.ls15{letter-spacing:-0.053333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.384000pt;}
.ls17{letter-spacing:0.640000pt;}
.ls1{letter-spacing:0.912000pt;}
.ls12{letter-spacing:1.824000pt;}
.ls11{letter-spacing:2.040000pt;}
.lse{letter-spacing:4.704000pt;}
.lsc{letter-spacing:4.944000pt;}
.ls0{letter-spacing:38.383435pt;}
.ws6{word-spacing:-15.936000pt;}
.wsdd{word-spacing:-14.608000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws5c{word-spacing:-13.226667pt;}
.ws5b{word-spacing:-13.173333pt;}
.ws27{word-spacing:-13.066667pt;}
.wsd0{word-spacing:-13.013333pt;}
.wsa8{word-spacing:-12.960000pt;}
.ws6d{word-spacing:-12.853333pt;}
.wsa7{word-spacing:-12.800000pt;}
.ws43{word-spacing:-12.640000pt;}
.wsbc{word-spacing:-12.533333pt;}
.wse8{word-spacing:-12.266667pt;}
.wscf{word-spacing:-12.106667pt;}
.ws90{word-spacing:-11.952000pt;}
.wseb{word-spacing:-11.904000pt;}
.ws5{word-spacing:-11.760000pt;}
.wse6{word-spacing:-11.680000pt;}
.ws105{word-spacing:-11.664000pt;}
.ws102{word-spacing:-11.568000pt;}
.ws104{word-spacing:-11.520000pt;}
.wse7{word-spacing:-11.413333pt;}
.wsee{word-spacing:-11.376000pt;}
.ws116{word-spacing:-11.328000pt;}
.ws117{word-spacing:-11.184000pt;}
.wsec{word-spacing:-11.040000pt;}
.ws7{word-spacing:-10.992000pt;}
.wsed{word-spacing:-10.944000pt;}
.wsb{word-spacing:-10.800000pt;}
.wse3{word-spacing:-10.666667pt;}
.wsdf{word-spacing:-10.453333pt;}
.ws8{word-spacing:-10.176000pt;}
.ws9{word-spacing:-9.984000pt;}
.wsc{word-spacing:-9.770667pt;}
.ws2{word-spacing:-9.685333pt;}
.ws25{word-spacing:-9.600000pt;}
.ws79{word-spacing:-9.072000pt;}
.ws3{word-spacing:-8.793600pt;}
.wse4{word-spacing:-8.640000pt;}
.ws1{word-spacing:-8.549333pt;}
.wsdc{word-spacing:-8.426667pt;}
.wse2{word-spacing:-7.840000pt;}
.wse0{word-spacing:-7.573333pt;}
.wse5{word-spacing:-6.986667pt;}
.ws103{word-spacing:-6.940032pt;}
.wse1{word-spacing:-6.560000pt;}
.wse9{word-spacing:-5.280000pt;}
.ws63{word-spacing:-3.840000pt;}
.wsf7{word-spacing:-3.360000pt;}
.wsae{word-spacing:-3.306667pt;}
.ws115{word-spacing:-3.120000pt;}
.wsce{word-spacing:-3.040000pt;}
.ws4f{word-spacing:-2.986667pt;}
.wsfb{word-spacing:-2.928000pt;}
.ws77{word-spacing:-2.666667pt;}
.wsfa{word-spacing:-2.544000pt;}
.ws5a{word-spacing:-2.506667pt;}
.wsfd{word-spacing:-2.496000pt;}
.ws4d{word-spacing:-2.453333pt;}
.ws121{word-spacing:-2.400000pt;}
.ws94{word-spacing:-2.346667pt;}
.ws85{word-spacing:-2.293333pt;}
.wsea{word-spacing:-2.256000pt;}
.ws49{word-spacing:-2.240000pt;}
.ws11c{word-spacing:-2.208000pt;}
.wsbf{word-spacing:-2.186667pt;}
.ws3d{word-spacing:-2.133333pt;}
.ws112{word-spacing:-2.112000pt;}
.ws4a{word-spacing:-2.026667pt;}
.wsaa{word-spacing:-1.920000pt;}
.ws122{word-spacing:-1.872000pt;}
.ws88{word-spacing:-1.866667pt;}
.ws36{word-spacing:-1.813333pt;}
.ws10a{word-spacing:-1.776000pt;}
.ws35{word-spacing:-1.760000pt;}
.wsf6{word-spacing:-1.680000pt;}
.ws87{word-spacing:-1.653333pt;}
.wsa0{word-spacing:-1.600000pt;}
.ws11f{word-spacing:-1.584000pt;}
.wsa6{word-spacing:-1.546667pt;}
.ws8c{word-spacing:-1.493333pt;}
.ws44{word-spacing:-1.440000pt;}
.ws50{word-spacing:-1.386667pt;}
.wscb{word-spacing:-1.333333pt;}
.ws110{word-spacing:-1.296000pt;}
.ws3b{word-spacing:-1.280000pt;}
.ws54{word-spacing:-1.226667pt;}
.ws21{word-spacing:-1.173333pt;}
.ws3e{word-spacing:-1.120000pt;}
.wsc6{word-spacing:-1.066667pt;}
.ws3c{word-spacing:-1.013333pt;}
.wsb4{word-spacing:-0.960000pt;}
.ws13{word-spacing:-0.912000pt;}
.wsd4{word-spacing:-0.906667pt;}
.ws2a{word-spacing:-0.853333pt;}
.ws10b{word-spacing:-0.816000pt;}
.wsb5{word-spacing:-0.800000pt;}
.ws47{word-spacing:-0.746667pt;}
.ws4c{word-spacing:-0.693333pt;}
.ws1e{word-spacing:-0.640000pt;}
.ws101{word-spacing:-0.624000pt;}
.ws2c{word-spacing:-0.533333pt;}
.ws15{word-spacing:-0.480000pt;}
.ws12{word-spacing:-0.432000pt;}
.ws24{word-spacing:-0.426667pt;}
.ws28{word-spacing:-0.373333pt;}
.wsf0{word-spacing:-0.336000pt;}
.ws34{word-spacing:-0.320000pt;}
.wsf4{word-spacing:-0.288000pt;}
.ws57{word-spacing:-0.266667pt;}
.wsb2{word-spacing:-0.213333pt;}
.ws10{word-spacing:-0.192000pt;}
.ws51{word-spacing:-0.160000pt;}
.wsb3{word-spacing:-0.106667pt;}
.ws14{word-spacing:-0.096000pt;}
.ws60{word-spacing:-0.053333pt;}
.wsa{word-spacing:-0.048000pt;}
.ws26{word-spacing:-0.042667pt;}
.wsd{word-spacing:0.000000pt;}
.ws9e{word-spacing:0.053333pt;}
.wsbe{word-spacing:0.106667pt;}
.ws106{word-spacing:0.144000pt;}
.ws8b{word-spacing:0.160000pt;}
.wse{word-spacing:0.181333pt;}
.wsb1{word-spacing:0.213333pt;}
.ws114{word-spacing:0.240000pt;}
.ws75{word-spacing:0.266667pt;}
.ws55{word-spacing:0.320000pt;}
.wsf2{word-spacing:0.336000pt;}
.wsf{word-spacing:0.362667pt;}
.ws83{word-spacing:0.373333pt;}
.ws10f{word-spacing:0.384000pt;}
.ws52{word-spacing:0.426667pt;}
.ws1b{word-spacing:0.432000pt;}
.ws4e{word-spacing:0.480000pt;}
.wsf8{word-spacing:0.528000pt;}
.wsb6{word-spacing:0.533333pt;}
.ws11e{word-spacing:0.576000pt;}
.wsd5{word-spacing:0.586667pt;}
.ws11{word-spacing:0.614400pt;}
.ws1a{word-spacing:0.624000pt;}
.wsda{word-spacing:0.640000pt;}
.ws2b{word-spacing:0.693333pt;}
.wsfc{word-spacing:0.720000pt;}
.ws32{word-spacing:0.746667pt;}
.ws98{word-spacing:0.800000pt;}
.wsf5{word-spacing:0.864000pt;}
.ws99{word-spacing:0.906667pt;}
.ws16{word-spacing:0.912000pt;}
.ws48{word-spacing:0.960000pt;}
.wsbb{word-spacing:1.013333pt;}
.wsab{word-spacing:1.066667pt;}
.wsf9{word-spacing:1.104000pt;}
.wsd9{word-spacing:1.120000pt;}
.wsaf{word-spacing:1.173333pt;}
.ws111{word-spacing:1.200000pt;}
.ws120{word-spacing:1.344000pt;}
.ws0{word-spacing:1.360000pt;}
.ws119{word-spacing:1.392000pt;}
.ws118{word-spacing:1.488000pt;}
.ws22{word-spacing:1.493333pt;}
.wsdb{word-spacing:1.546667pt;}
.wsd1{word-spacing:1.600000pt;}
.ws100{word-spacing:1.632000pt;}
.ws23{word-spacing:1.653333pt;}
.wsa1{word-spacing:1.706667pt;}
.wsfe{word-spacing:1.776000pt;}
.wsba{word-spacing:1.824000pt;}
.wsb9{word-spacing:1.872000pt;}
.wsf3{word-spacing:1.968000pt;}
.wsb8{word-spacing:2.016000pt;}
.ws29{word-spacing:2.026667pt;}
.wsb7{word-spacing:2.064000pt;}
.ws46{word-spacing:2.080000pt;}
.ws33{word-spacing:2.133333pt;}
.ws86{word-spacing:2.186667pt;}
.ws19{word-spacing:2.208000pt;}
.wsd6{word-spacing:2.240000pt;}
.wsff{word-spacing:2.304000pt;}
.ws2f{word-spacing:2.346667pt;}
.ws9b{word-spacing:2.400000pt;}
.wsa3{word-spacing:2.453333pt;}
.ws81{word-spacing:2.506667pt;}
.ws45{word-spacing:2.560000pt;}
.ws9a{word-spacing:2.666667pt;}
.ws82{word-spacing:2.773333pt;}
.ws1d{word-spacing:2.826667pt;}
.ws7d{word-spacing:2.880000pt;}
.wsef{word-spacing:3.024000pt;}
.ws93{word-spacing:3.040000pt;}
.ws7f{word-spacing:3.146667pt;}
.ws11b{word-spacing:3.168000pt;}
.ws6f{word-spacing:3.200000pt;}
.ws7c{word-spacing:3.216000pt;}
.wsc2{word-spacing:3.306667pt;}
.ws107{word-spacing:3.312000pt;}
.wsc7{word-spacing:3.360000pt;}
.wsd3{word-spacing:3.413333pt;}
.ws1c{word-spacing:3.456000pt;}
.ws89{word-spacing:3.466667pt;}
.ws80{word-spacing:3.573333pt;}
.ws113{word-spacing:3.600000pt;}
.ws95{word-spacing:3.626667pt;}
.wsad{word-spacing:3.680000pt;}
.ws68{word-spacing:3.733333pt;}
.ws30{word-spacing:3.786667pt;}
.ws31{word-spacing:3.840000pt;}
.wsa5{word-spacing:3.893333pt;}
.ws67{word-spacing:3.946667pt;}
.ws10c{word-spacing:3.984000pt;}
.ws7e{word-spacing:4.000000pt;}
.ws66{word-spacing:4.053333pt;}
.wsc8{word-spacing:4.106667pt;}
.ws69{word-spacing:4.160000pt;}
.ws9d{word-spacing:4.213333pt;}
.ws37{word-spacing:4.266667pt;}
.ws40{word-spacing:4.320000pt;}
.ws3a{word-spacing:4.373333pt;}
.ws53{word-spacing:4.426667pt;}
.wsc9{word-spacing:4.480000pt;}
.wsca{word-spacing:4.533333pt;}
.ws72{word-spacing:4.586667pt;}
.ws18{word-spacing:4.608000pt;}
.ws73{word-spacing:4.640000pt;}
.ws92{word-spacing:4.656000pt;}
.wsde{word-spacing:4.693333pt;}
.ws91{word-spacing:4.704000pt;}
.wsc1{word-spacing:4.746667pt;}
.ws76{word-spacing:4.800000pt;}
.ws11a{word-spacing:4.848000pt;}
.ws7b{word-spacing:4.944000pt;}
.wsc3{word-spacing:4.960000pt;}
.ws7a{word-spacing:4.992000pt;}
.ws97{word-spacing:5.013333pt;}
.ws9c{word-spacing:5.066667pt;}
.wsd2{word-spacing:5.120000pt;}
.ws39{word-spacing:5.173333pt;}
.ws6c{word-spacing:5.226667pt;}
.ws108{word-spacing:5.232000pt;}
.wsa4{word-spacing:5.280000pt;}
.ws64{word-spacing:5.333333pt;}
.ws65{word-spacing:5.440000pt;}
.ws78{word-spacing:5.493333pt;}
.ws6e{word-spacing:5.546667pt;}
.wsac{word-spacing:5.600000pt;}
.ws84{word-spacing:5.653333pt;}
.ws9f{word-spacing:5.706667pt;}
.wscd{word-spacing:5.760000pt;}
.wsf1{word-spacing:5.856000pt;}
.ws1f{word-spacing:5.866667pt;}
.ws96{word-spacing:5.920000pt;}
.wsd7{word-spacing:5.973333pt;}
.wsc5{word-spacing:6.080000pt;}
.ws4b{word-spacing:6.133333pt;}
.ws8f{word-spacing:6.186667pt;}
.wsc0{word-spacing:6.346667pt;}
.ws41{word-spacing:6.506667pt;}
.ws17{word-spacing:6.528000pt;}
.ws61{word-spacing:6.560000pt;}
.wsa2{word-spacing:6.613333pt;}
.ws70{word-spacing:6.666667pt;}
.wscc{word-spacing:6.720000pt;}
.ws58{word-spacing:7.146667pt;}
.ws59{word-spacing:7.200000pt;}
.ws109{word-spacing:7.248000pt;}
.ws38{word-spacing:7.360000pt;}
.ws8d{word-spacing:7.413333pt;}
.ws56{word-spacing:7.466667pt;}
.ws20{word-spacing:7.626667pt;}
.ws2d{word-spacing:7.733333pt;}
.ws2e{word-spacing:7.786667pt;}
.ws8a{word-spacing:7.840000pt;}
.wsa9{word-spacing:8.213333pt;}
.wsbd{word-spacing:8.586667pt;}
.wsd8{word-spacing:9.066667pt;}
.ws3f{word-spacing:9.493333pt;}
.ws6a{word-spacing:9.546667pt;}
.ws8e{word-spacing:9.600000pt;}
.ws11d{word-spacing:10.512000pt;}
.wsc4{word-spacing:11.093333pt;}
.ws10e{word-spacing:11.856000pt;}
.ws10d{word-spacing:12.624000pt;}
.ws62{word-spacing:13.333333pt;}
.ws42{word-spacing:17.600000pt;}
.wsb0{word-spacing:18.560000pt;}
.ws6b{word-spacing:19.253333pt;}
.ws71{word-spacing:24.746667pt;}
.ws74{word-spacing:32.640000pt;}
.ws5e{word-spacing:519.552000pt;}
.ws5d{word-spacing:617.736533pt;}
.ws5f{word-spacing:648.021333pt;}
._7{margin-left:-9.866667pt;}
._1d{margin-left:-8.205867pt;}
._b{margin-left:-5.734933pt;}
._4{margin-left:-4.687467pt;}
._5{margin-left:-3.400000pt;}
._1{margin-left:-2.194133pt;}
._0{margin-left:-1.269333pt;}
._3{width:1.169600pt;}
._2{width:2.892267pt;}
._8{width:3.846400pt;}
._d{width:5.093333pt;}
._c{width:6.138667pt;}
._9{width:7.733333pt;}
._a{width:8.720000pt;}
._16{width:9.904000pt;}
._f{width:12.026667pt;}
._1b{width:13.013333pt;}
._e{width:17.472000pt;}
._14{width:21.077333pt;}
._13{width:24.476800pt;}
._15{width:31.303467pt;}
._6{width:32.328533pt;}
._1c{width:38.346667pt;}
._19{width:68.906667pt;}
._1a{width:72.746667pt;}
._18{width:73.760000pt;}
._17{width:77.760000pt;}
._12{width:496.597333pt;}
._11{width:530.133333pt;}
._10{width:658.602667pt;}
.fs9{font-size:27.984000pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y3c{bottom:63.299600pt;}
.y3d{bottom:66.702267pt;}
.y16c{bottom:100.258533pt;}
.y13f{bottom:100.279867pt;}
.y10f{bottom:100.311867pt;}
.yd5{bottom:100.514400pt;}
.ycf{bottom:100.514533pt;}
.yd{bottom:104.182267pt;}
.y2a{bottom:104.189067pt;}
.yd3{bottom:106.813333pt;}
.yce{bottom:107.103867pt;}
.yd7{bottom:107.107733pt;}
.yd1{bottom:107.107867pt;}
.yc{bottom:116.979067pt;}
.y16b{bottom:118.930533pt;}
.y13e{bottom:118.951867pt;}
.y10e{bottom:118.983867pt;}
.y6e{bottom:119.181067pt;}
.y9c{bottom:119.181200pt;}
.y29{bottom:122.855733pt;}
.yd2{bottom:124.417333pt;}
.ycd{bottom:124.707867pt;}
.yd6{bottom:124.711733pt;}
.yd0{bottom:124.711867pt;}
.yc8{bottom:125.899867pt;}
.yb{bottom:129.775867pt;}
.y16a{bottom:137.602533pt;}
.y13d{bottom:137.623867pt;}
.y10d{bottom:137.655867pt;}
.y6d{bottom:137.847733pt;}
.y9b{bottom:137.847867pt;}
.y28{bottom:141.522400pt;}
.ycc{bottom:142.311867pt;}
.ya{bottom:142.575867pt;}
.ye4{bottom:142.692800pt;}
.yc7{bottom:145.995867pt;}
.y169{bottom:156.274533pt;}
.y13c{bottom:156.295867pt;}
.y10c{bottom:156.327867pt;}
.y6c{bottom:156.514400pt;}
.y9a{bottom:156.514533pt;}
.y27{bottom:160.189067pt;}
.yc6{bottom:166.091867pt;}
.y168{bottom:174.946533pt;}
.y13b{bottom:174.967867pt;}
.y10b{bottom:174.999867pt;}
.ye3{bottom:175.175867pt;}
.y6b{bottom:175.181067pt;}
.y99{bottom:175.181200pt;}
.y26{bottom:178.855733pt;}
.y39{bottom:182.938933pt;}
.yc5{bottom:186.187867pt;}
.y167{bottom:193.618533pt;}
.y13a{bottom:193.639867pt;}
.y10a{bottom:193.671867pt;}
.y6a{bottom:193.847733pt;}
.y98{bottom:193.847867pt;}
.y25{bottom:197.522400pt;}
.y38{bottom:198.934933pt;}
.y166{bottom:212.290533pt;}
.y139{bottom:212.311867pt;}
.y109{bottom:212.343867pt;}
.y69{bottom:212.514400pt;}
.y97{bottom:212.514533pt;}
.y37{bottom:214.930933pt;}
.y24{bottom:216.189067pt;}
.ye2{bottom:217.359467pt;}
.ydc{bottom:225.276933pt;}
.y36{bottom:230.926933pt;}
.y165{bottom:230.962533pt;}
.y138{bottom:230.983867pt;}
.y108{bottom:231.015867pt;}
.y68{bottom:231.181067pt;}
.y96{bottom:231.181200pt;}
.yc4{bottom:231.186000pt;}
.y23{bottom:234.855733pt;}
.ydb{bottom:243.947600pt;}
.y35{bottom:246.922933pt;}
.y164{bottom:249.634533pt;}
.y137{bottom:249.655867pt;}
.y107{bottom:249.687867pt;}
.y67{bottom:249.847733pt;}
.y95{bottom:249.847867pt;}
.yc3{bottom:249.852667pt;}
.y22{bottom:253.522400pt;}
.y34{bottom:262.918933pt;}
.y163{bottom:268.306533pt;}
.y136{bottom:268.327867pt;}
.y106{bottom:268.359867pt;}
.y66{bottom:268.514400pt;}
.y94{bottom:268.514533pt;}
.yc2{bottom:268.519333pt;}
.y21{bottom:272.189067pt;}
.ye1{bottom:273.359467pt;}
.yd9{bottom:273.868400pt;}
.y33{bottom:278.914933pt;}
.y162{bottom:286.978533pt;}
.y135{bottom:286.999867pt;}
.y105{bottom:287.031867pt;}
.y65{bottom:287.181067pt;}
.y93{bottom:287.181200pt;}
.yc1{bottom:287.186000pt;}
.y20{bottom:290.855733pt;}
.yd8{bottom:291.472400pt;}
.y32{bottom:294.910933pt;}
.y161{bottom:305.650533pt;}
.y134{bottom:305.671867pt;}
.y104{bottom:305.703867pt;}
.y64{bottom:305.847733pt;}
.y92{bottom:305.847867pt;}
.yc0{bottom:305.852667pt;}
.y1f{bottom:319.641333pt;}
.y160{bottom:324.322533pt;}
.y133{bottom:324.343867pt;}
.y103{bottom:324.375867pt;}
.y63{bottom:324.514400pt;}
.y91{bottom:324.514533pt;}
.ybf{bottom:324.519333pt;}
.y31{bottom:326.026933pt;}
.ye0{bottom:329.359467pt;}
.y30{bottom:342.022933pt;}
.y15f{bottom:342.994533pt;}
.y132{bottom:343.015867pt;}
.y102{bottom:343.047867pt;}
.y62{bottom:343.181067pt;}
.y90{bottom:343.181200pt;}
.ybe{bottom:343.186000pt;}
.y2f{bottom:358.018933pt;}
.y15e{bottom:361.666533pt;}
.y131{bottom:361.687867pt;}
.y101{bottom:361.719867pt;}
.y61{bottom:361.847733pt;}
.y8f{bottom:361.847867pt;}
.ybd{bottom:361.852667pt;}
.yd4{bottom:377.267733pt;}
.y15d{bottom:380.338533pt;}
.y130{bottom:380.359867pt;}
.y100{bottom:380.391867pt;}
.y60{bottom:380.514400pt;}
.y8e{bottom:380.514533pt;}
.ybc{bottom:380.519333pt;}
.ydf{bottom:385.721867pt;}
.y2e{bottom:389.134933pt;}
.y1e{bottom:398.780400pt;}
.y15c{bottom:399.010533pt;}
.y12f{bottom:399.031867pt;}
.yff{bottom:399.063867pt;}
.y5f{bottom:399.181067pt;}
.y8d{bottom:399.181200pt;}
.ybb{bottom:399.186000pt;}
.y2d{bottom:405.134933pt;}
.yde{bottom:411.947600pt;}
.y15b{bottom:417.682533pt;}
.y12e{bottom:417.703867pt;}
.yfe{bottom:417.735867pt;}
.y5e{bottom:417.847733pt;}
.y8c{bottom:417.847867pt;}
.yba{bottom:417.852667pt;}
.y2c{bottom:421.134933pt;}
.y1d{bottom:435.226133pt;}
.y15a{bottom:436.354533pt;}
.y12d{bottom:436.375867pt;}
.yfd{bottom:436.407867pt;}
.y5d{bottom:436.514400pt;}
.y8b{bottom:436.514533pt;}
.yb9{bottom:436.519333pt;}
.y2b{bottom:437.134933pt;}
.y1c{bottom:452.830133pt;}
.y159{bottom:455.026533pt;}
.y12c{bottom:455.047867pt;}
.yfc{bottom:455.079867pt;}
.y5c{bottom:455.181067pt;}
.y8a{bottom:455.181200pt;}
.yb8{bottom:455.186000pt;}
.y1b{bottom:470.434133pt;}
.y158{bottom:473.698533pt;}
.y12b{bottom:473.719867pt;}
.yfb{bottom:473.751867pt;}
.y5b{bottom:473.847733pt;}
.y89{bottom:473.847867pt;}
.yb7{bottom:473.852667pt;}
.y1a{bottom:488.038133pt;}
.y157{bottom:492.370533pt;}
.y12a{bottom:492.391867pt;}
.yfa{bottom:492.423867pt;}
.y5a{bottom:492.514400pt;}
.y88{bottom:492.514533pt;}
.yb6{bottom:492.519333pt;}
.y19{bottom:505.642133pt;}
.y156{bottom:511.042533pt;}
.y129{bottom:511.063867pt;}
.yf9{bottom:511.095867pt;}
.y59{bottom:511.181067pt;}
.y87{bottom:511.181200pt;}
.yb5{bottom:511.186000pt;}
.y18{bottom:523.246133pt;}
.ydd{bottom:523.947600pt;}
.y155{bottom:529.714533pt;}
.y128{bottom:529.735867pt;}
.yf8{bottom:529.767867pt;}
.y58{bottom:529.847733pt;}
.y86{bottom:529.847867pt;}
.yb4{bottom:529.852667pt;}
.y17{bottom:540.850133pt;}
.y154{bottom:548.386533pt;}
.y127{bottom:548.407867pt;}
.yf7{bottom:548.439867pt;}
.y57{bottom:548.514400pt;}
.y85{bottom:548.514533pt;}
.yb3{bottom:548.519333pt;}
.y16{bottom:558.454133pt;}
.y153{bottom:567.058533pt;}
.y126{bottom:567.079867pt;}
.yf6{bottom:567.111867pt;}
.y56{bottom:567.181067pt;}
.ycb{bottom:567.181200pt;}
.yb2{bottom:567.186000pt;}
.y15{bottom:576.058133pt;}
.y84{bottom:579.947600pt;}
.y152{bottom:585.730533pt;}
.y125{bottom:585.751867pt;}
.yf5{bottom:585.783867pt;}
.y55{bottom:585.847733pt;}
.yca{bottom:585.847867pt;}
.yb1{bottom:585.852667pt;}
.y14{bottom:593.662133pt;}
.y151{bottom:604.402533pt;}
.y124{bottom:604.423867pt;}
.yf4{bottom:604.455867pt;}
.y54{bottom:604.514400pt;}
.yc9{bottom:604.514533pt;}
.yb0{bottom:604.519333pt;}
.y13{bottom:611.266133pt;}
.y150{bottom:623.074533pt;}
.y123{bottom:623.095867pt;}
.yf3{bottom:623.127867pt;}
.y53{bottom:623.181067pt;}
.y83{bottom:623.181200pt;}
.yaf{bottom:623.186000pt;}
.y12{bottom:628.870133pt;}
.y14f{bottom:641.746533pt;}
.y122{bottom:641.767867pt;}
.yf2{bottom:641.799867pt;}
.y52{bottom:641.847733pt;}
.y82{bottom:641.847867pt;}
.yae{bottom:641.852667pt;}
.y11{bottom:646.474133pt;}
.y14e{bottom:660.418533pt;}
.y121{bottom:660.439867pt;}
.yf1{bottom:660.471867pt;}
.y51{bottom:660.514400pt;}
.y81{bottom:660.514533pt;}
.yad{bottom:660.519333pt;}
.y10{bottom:664.078133pt;}
.y14d{bottom:679.090533pt;}
.y120{bottom:679.111867pt;}
.yf0{bottom:679.143867pt;}
.y50{bottom:679.181067pt;}
.y80{bottom:679.181200pt;}
.yac{bottom:679.186000pt;}
.yf{bottom:691.720267pt;}
.y14c{bottom:697.762533pt;}
.y11f{bottom:697.783867pt;}
.yef{bottom:697.815867pt;}
.y4f{bottom:697.847733pt;}
.y7f{bottom:697.847867pt;}
.yab{bottom:697.852667pt;}
.y14b{bottom:716.434533pt;}
.y11e{bottom:716.455867pt;}
.yee{bottom:716.487867pt;}
.y4e{bottom:716.514400pt;}
.y7e{bottom:716.514533pt;}
.yaa{bottom:716.519333pt;}
.y14a{bottom:735.106533pt;}
.y11d{bottom:735.127867pt;}
.yed{bottom:735.159867pt;}
.y4d{bottom:735.181067pt;}
.y7d{bottom:735.181200pt;}
.ya9{bottom:735.186000pt;}
.y149{bottom:753.778533pt;}
.y11c{bottom:753.799867pt;}
.yec{bottom:753.831867pt;}
.y4c{bottom:753.847733pt;}
.y7c{bottom:753.847867pt;}
.ya8{bottom:753.852667pt;}
.y9{bottom:762.192667pt;}
.y148{bottom:772.450533pt;}
.y11b{bottom:772.471867pt;}
.yeb{bottom:772.503867pt;}
.y4b{bottom:772.514400pt;}
.y7b{bottom:772.514533pt;}
.ya7{bottom:772.519333pt;}
.y8{bottom:778.192667pt;}
.y147{bottom:791.122533pt;}
.y11a{bottom:791.143867pt;}
.yea{bottom:791.175867pt;}
.y4a{bottom:791.181067pt;}
.y7a{bottom:791.181200pt;}
.ya6{bottom:791.186000pt;}
.y7{bottom:794.192667pt;}
.y146{bottom:809.794533pt;}
.y119{bottom:809.815867pt;}
.y49{bottom:809.847733pt;}
.y79{bottom:809.847867pt;}
.ya5{bottom:809.852667pt;}
.y6{bottom:810.192667pt;}
.y145{bottom:828.466533pt;}
.y118{bottom:828.487867pt;}
.y48{bottom:828.514400pt;}
.y78{bottom:828.514533pt;}
.ya4{bottom:828.519333pt;}
.ye9{bottom:841.280800pt;}
.y5{bottom:841.310933pt;}
.y144{bottom:847.138533pt;}
.y117{bottom:847.159867pt;}
.y47{bottom:847.181067pt;}
.y77{bottom:847.181200pt;}
.ya3{bottom:847.186000pt;}
.y143{bottom:865.810533pt;}
.y116{bottom:865.831867pt;}
.y46{bottom:865.847733pt;}
.y76{bottom:865.847867pt;}
.y4{bottom:874.034267pt;}
.y142{bottom:884.482533pt;}
.y115{bottom:884.503867pt;}
.y45{bottom:884.514400pt;}
.y75{bottom:884.514533pt;}
.ya2{bottom:884.519333pt;}
.y141{bottom:903.154533pt;}
.y114{bottom:903.175867pt;}
.y44{bottom:903.181067pt;}
.y74{bottom:903.181200pt;}
.ya1{bottom:903.186000pt;}
.y3{bottom:903.364933pt;}
.ye8{bottom:908.026000pt;}
.yda{bottom:915.947600pt;}
.y140{bottom:921.826533pt;}
.y113{bottom:921.842533pt;}
.y43{bottom:921.847733pt;}
.y73{bottom:921.847867pt;}
.y2{bottom:932.695600pt;}
.ya0{bottom:933.359333pt;}
.y112{bottom:940.498533pt;}
.ye7{bottom:940.509200pt;}
.y42{bottom:940.514400pt;}
.y72{bottom:940.514533pt;}
.y9f{bottom:952.026000pt;}
.y111{bottom:959.170533pt;}
.ye6{bottom:959.175867pt;}
.y41{bottom:959.181067pt;}
.y71{bottom:959.181200pt;}
.y9e{bottom:970.692667pt;}
.y110{bottom:977.842533pt;}
.y40{bottom:977.847733pt;}
.y70{bottom:977.847867pt;}
.ye{bottom:986.502667pt;}
.y3f{bottom:996.514400pt;}
.y6f{bottom:996.514533pt;}
.y9d{bottom:999.401600pt;}
.ye5{bottom:1000.401600pt;}
.y3b{bottom:1030.390667pt;}
.y3a{bottom:1047.724000pt;}
.y3e{bottom:1047.726267pt;}
.h7{height:30.618750pt;}
.h6{height:30.806250pt;}
.h10{height:33.979167pt;}
.hf{height:34.020833pt;}
.h2{height:34.229167pt;}
.h5{height:34.250000pt;}
.h11{height:34.666667pt;}
.h8{height:38.226562pt;}
.he{height:38.273438pt;}
.hd{height:38.507812pt;}
.ha{height:39.000000pt;}
.h13{height:39.021333pt;}
.h14{height:39.064000pt;}
.h9{height:42.083333pt;}
.hc{height:43.333333pt;}
.h12{height:46.291667pt;}
.h4{height:47.666667pt;}
.hb{height:50.500000pt;}
.h3{height:72.205729pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.xa{left:95.171067pt;}
.xc{left:96.260667pt;}
.x5{left:106.559067pt;}
.x6{left:108.473333pt;}
.x7{left:110.313733pt;}
.x4{left:266.834667pt;}
.xe{left:270.616533pt;}
.xb{left:281.928000pt;}
.x10{left:297.074667pt;}
.x3{left:352.045067pt;}
.xd{left:415.971200pt;}
.x9{left:576.817200pt;}
.x8{left:611.099867pt;}
.xf{left:716.838800pt;}
.x1{left:722.671333pt;}
}




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