
    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_37c42440a6599cd9172927d7.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_01a82a187e78c7692b9484d3.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_2828cb9a2067d385ca1bac8c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.823730;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_b8c7199508e1088c1f356520.woff')format("woff");}.ff4{font-family:ff4;line-height:0.706543;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_d663da5e4308734263def200.woff')format("woff");}.ff5{font-family:ff5;line-height:0.708008;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_2714c61bc6e7eed420d3e8bb.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_2efa75f2f75e480ae930fc38.woff')format("woff");}.ff7{font-family:ff7;line-height:0.730469;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_6baa19235fa9448b781bc0fc.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_959e8cd9765233834ad4f8ca.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910645;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_a0811a584dc4cdd55d39d0e1.woff')format("woff");}.ffa{font-family:ffa;line-height:0.893555;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_29ca0e7baaee831b2f01ce36.woff')format("woff");}.ffb{font-family:ffb;line-height:0.956543;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_bfaa5f1f3ef1854bcc97d0cd.woff')format("woff");}.ffc{font-family:ffc;line-height:0.931152;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_18010f9f90474525e28c37b2.woff')format("woff");}.ffd{font-family:ffd;line-height:0.931152;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_019f82976f45b168f235ab68.woff')format("woff");}.ffe{font-family:ffe;line-height:0.667480;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;}
.m5{transform:matrix(0.233852,0.000000,-0.077943,0.237539,0,0);-ms-transform:matrix(0.233852,0.000000,-0.077943,0.237539,0,0);-webkit-transform:matrix(0.233852,0.000000,-0.077943,0.237539,0,0);}
.m6{transform:matrix(0.239710,0.000000,-0.079895,0.236890,0,0);-ms-transform:matrix(0.239710,0.000000,-0.079895,0.236890,0,0);-webkit-transform:matrix(0.239710,0.000000,-0.079895,0.236890,0,0);}
.m4{transform:matrix(0.246119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246119,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.248687,0.000000,-0.082888,0.235859,0,0);-ms-transform:matrix(0.248687,0.000000,-0.082888,0.235859,0,0);-webkit-transform:matrix(0.248687,0.000000,-0.082888,0.235859,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);}
.m7{transform:matrix(0.252976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252976,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.263597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263597,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);}
.ve{vertical-align:-82.200000px;}
.va{vertical-align:-41.275664px;}
.v7{vertical-align:-31.680000px;}
.vb{vertical-align:-28.759686px;}
.v9{vertical-align:-26.640000px;}
.v6{vertical-align:-20.880000px;}
.v4{vertical-align:-19.493365px;}
.v8{vertical-align:-14.400000px;}
.v5{vertical-align:-7.198436px;}
.v2{vertical-align:-5.760000px;}
.v1{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:2.880000px;}
.v3{vertical-align:5.760000px;}
.vd{vertical-align:14.400000px;}
.vf{vertical-align:27.360000px;}
.ls2b{letter-spacing:-1.440000px;}
.ls38{letter-spacing:-0.305400px;}
.lsb{letter-spacing:-0.288000px;}
.ls3a{letter-spacing:-0.216000px;}
.ls39{letter-spacing:-0.152400px;}
.ls14{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.034560px;}
.ls9{letter-spacing:-0.017280px;}
.lsa{letter-spacing:-0.008640px;}
.ls7{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.008640px;}
.ls2{letter-spacing:0.012960px;}
.ls3{letter-spacing:0.017280px;}
.ls4{letter-spacing:0.025920px;}
.lsd{letter-spacing:0.034560px;}
.ls35{letter-spacing:0.109200px;}
.lsc{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.144720px;}
.ls5{letter-spacing:0.150000px;}
.ls6{letter-spacing:0.174240px;}
.ls1{letter-spacing:0.180000px;}
.ls21{letter-spacing:0.216000px;}
.ls10{letter-spacing:0.269280px;}
.ls12{letter-spacing:0.269400px;}
.ls0{letter-spacing:0.360000px;}
.ls22{letter-spacing:0.408000px;}
.ls3b{letter-spacing:0.504000px;}
.ls13{letter-spacing:0.576000px;}
.lsf{letter-spacing:0.720000px;}
.ls37{letter-spacing:0.864000px;}
.ls26{letter-spacing:1.403695px;}
.ls20{letter-spacing:1.620000px;}
.ls16{letter-spacing:3.168000px;}
.ls1e{letter-spacing:3.720000px;}
.ls1d{letter-spacing:4.109040px;}
.lse{letter-spacing:4.320000px;}
.ls2e{letter-spacing:4.692960px;}
.ls1c{letter-spacing:5.040000px;}
.ls1a{letter-spacing:5.760000px;}
.ls34{letter-spacing:7.488000px;}
.ls2f{letter-spacing:10.136880px;}
.ls2d{letter-spacing:12.312000px;}
.ls1b{letter-spacing:50.369040px;}
.ls19{letter-spacing:57.389040px;}
.ls33{letter-spacing:57.505663px;}
.ls25{letter-spacing:60.178925px;}
.ls30{letter-spacing:88.781691px;}
.ls31{letter-spacing:89.240016px;}
.ls24{letter-spacing:89.692512px;}
.ls32{letter-spacing:151.612071px;}
.ls1f{letter-spacing:172.218755px;}
.ls23{letter-spacing:242.083402px;}
.ls2c{letter-spacing:259.450812px;}
.ls17{letter-spacing:282.700146px;}
.ls18{letter-spacing:373.208681px;}
.ls27{letter-spacing:390.732676px;}
.ls29{letter-spacing:496.024363px;}
.ls36{letter-spacing:648.876000px;}
.ls2a{letter-spacing:877.424720px;}
.ls28{letter-spacing:1143.962331px;}
.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;}
}
.wsa{word-spacing:-39.528000px;}
.ws8{word-spacing:-19.474560px;}
.ws1{word-spacing:-19.465920px;}
.ws2{word-spacing:-19.457280px;}
.wsc{word-spacing:-19.440000px;}
.ws4{word-spacing:-19.431360px;}
.ws3{word-spacing:-19.422720px;}
.ws24{word-spacing:-18.504000px;}
.ws7{word-spacing:-18.144000px;}
.ws9{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.856000px;}
.ws23{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.712000px;}
.ws20{word-spacing:-16.669200px;}
.ws1f{word-spacing:-16.560000px;}
.ws22{word-spacing:-16.407600px;}
.ws21{word-spacing:-16.254600px;}
.ws10{word-spacing:-15.840000px;}
.ws0{word-spacing:-14.940000px;}
.ws11{word-spacing:-12.329400px;}
.ws12{word-spacing:-12.060000px;}
.wsf{word-spacing:-11.246400px;}
.wse{word-spacing:-9.494171px;}
.ws1e{word-spacing:-3.888000px;}
.ws14{word-spacing:-0.067220px;}
.ws17{word-spacing:-0.047116px;}
.ws5{word-spacing:0.000000px;}
.ws1d{word-spacing:4.872000px;}
.ws1c{word-spacing:17.627782px;}
.ws19{word-spacing:27.944893px;}
.ws1a{word-spacing:63.480598px;}
.ws1b{word-spacing:65.869082px;}
.ws18{word-spacing:77.600444px;}
.ws13{word-spacing:86.579832px;}
.ws16{word-spacing:95.834428px;}
.wsd{word-spacing:105.889569px;}
.ws15{word-spacing:223.574939px;}
._22{margin-left:-5.780952px;}
._1f{margin-left:-4.320000px;}
._2c{margin-left:-2.443200px;}
._4{margin-left:-1.370400px;}
._0{width:1.015920px;}
._1{width:2.551200px;}
._9{width:3.744000px;}
._12{width:5.112000px;}
._e{width:6.192000px;}
._f{width:7.272000px;}
._d{width:8.568000px;}
._11{width:10.051200px;}
._10{width:11.066400px;}
._6{width:12.528000px;}
._a{width:13.752000px;}
._14{width:15.168000px;}
._c{width:16.523280px;}
._b{width:17.825040px;}
._17{width:19.512000px;}
._18{width:20.722560px;}
._19{width:22.320000px;}
._13{width:23.472000px;}
._7{width:25.200000px;}
._8{width:26.316000px;}
._16{width:27.756000px;}
._1c{width:29.412000px;}
._2d{width:31.536000px;}
._1a{width:33.048000px;}
._1b{width:34.632000px;}
._15{width:35.928000px;}
._2b{width:38.304000px;}
._23{width:40.608528px;}
._1e{width:49.914898px;}
._29{width:60.857819px;}
._1d{width:69.655253px;}
._27{width:79.138438px;}
._25{width:93.720000px;}
._21{width:133.029105px;}
._28{width:135.718970px;}
._2a{width:161.280000px;}
._26{width:198.000000px;}
._5{width:219.369120px;}
._24{width:318.713276px;}
._20{width:367.157641px;}
._2{width:1208.520000px;}
._3{width:2033.573280px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fse{font-size:44.767838px;}
.fs10{font-size:47.116238px;}
.fs8{font-size:48.240000px;}
.fsd{font-size:51.120000px;}
.fs9{font-size:51.804984px;}
.fs14{font-size:53.077423px;}
.fs5{font-size:54.000000px;}
.fsb{font-size:54.910874px;}
.fs17{font-size:56.014903px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fsf{font-size:67.220366px;}
.fs11{font-size:70.746565px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs15{font-size:79.539822px;}
.fs13{font-size:83.941819px;}
.fs3{font-size:84.240000px;}
.fsa{font-size:88.684731px;}
.fsc{font-size:94.001690px;}
.fs12{font-size:100.692780px;}
.fs16{font-size:119.306486px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y104{bottom:3.600000px;}
.y12a{bottom:3.780000px;}
.y10f{bottom:3.960000px;}
.y10a{bottom:4.125000px;}
.yfa{bottom:4.140000px;}
.y121{bottom:4.485000px;}
.yfc{bottom:4.500000px;}
.y9c{bottom:4.653789px;}
.ybc{bottom:4.940680px;}
.ycf{bottom:5.268287px;}
.yd4{bottom:7.050741px;}
.yd2{bottom:9.387836px;}
.yb0{bottom:10.452828px;}
.y136{bottom:10.620000px;}
.y133{bottom:11.160000px;}
.y12c{bottom:11.205000px;}
.yb9{bottom:11.999012px;}
.y9f{bottom:12.161398px;}
.y105{bottom:13.185000px;}
.y10c{bottom:13.500000px;}
.y107{bottom:13.665000px;}
.yc9{bottom:13.943174px;}
.ybe{bottom:13.947758px;}
.y123{bottom:14.745000px;}
.y118{bottom:14.760000px;}
.y11f{bottom:14.790000px;}
.yd0{bottom:15.091913px;}
.ya2{bottom:17.100000px;}
.ybb{bottom:17.813562px;}
.y97{bottom:22.127992px;}
.y103{bottom:22.545000px;}
.y10e{bottom:22.845000px;}
.yce{bottom:22.856252px;}
.y109{bottom:23.040000px;}
.ycd{bottom:23.569039px;}
.y9e{bottom:23.796230px;}
.y124{bottom:25.185000px;}
.y119{bottom:25.200000px;}
.y120{bottom:25.230000px;}
.yb8{bottom:27.997464px;}
.yb4{bottom:28.132478px;}
.y9d{bottom:29.502790px;}
.yd6{bottom:32.836886px;}
.yb7{bottom:38.921187px;}
.y96{bottom:39.425834px;}
.yc8{bottom:39.729320px;}
.y9b{bottom:40.435415px;}
.y7{bottom:44.676000px;}
.yb3{bottom:44.735049px;}
.y9a{bottom:46.141975px;}
.y99{bottom:47.153355px;}
.ycc{bottom:47.177045px;}
.yd3{bottom:48.998791px;}
.yba{bottom:51.054524px;}
.yd1{bottom:51.336860px;}
.y98{bottom:52.377620px;}
.ya1{bottom:55.800000px;}
.yc7{bottom:55.891225px;}
.y95{bottom:56.065019px;}
.yaf{bottom:56.566671px;}
.yb6{bottom:58.079377px;}
.y6{bottom:58.536000px;}
.ybd{bottom:60.061877px;}
.yb2{bottom:63.893239px;}
.ycb{bottom:64.764523px;}
.yca{bottom:65.516277px;}
.yd5{bottom:67.933906px;}
.yb5{bottom:74.077141px;}
.yb1{bottom:74.212155px;}
.y29{bottom:131.436000px;}
.yf7{bottom:135.216000px;}
.y51{bottom:135.396000px;}
.y28{bottom:136.656000px;}
.y148{bottom:144.936000px;}
.yc5{bottom:149.076000px;}
.y27{bottom:150.330000px;}
.y8d{bottom:152.130000px;}
.yf6{bottom:155.910000px;}
.y50{bottom:156.090000px;}
.y147{bottom:165.630000px;}
.yc4{bottom:169.770000px;}
.y8c{bottom:172.830000px;}
.y4f{bottom:176.790000px;}
.y146{bottom:186.330000px;}
.yc3{bottom:190.470000px;}
.y26{bottom:191.010000px;}
.yf5{bottom:194.970000px;}
.y6b{bottom:197.490000px;}
.y125{bottom:201.630000px;}
.y145{bottom:206.850000px;}
.yc2{bottom:211.170000px;}
.y25{bottom:211.710000px;}
.y165{bottom:212.610000px;}
.y4e{bottom:215.490000px;}
.y6a{bottom:218.190000px;}
.y122{bottom:219.285000px;}
.y144{bottom:227.550000px;}
.y17a{bottom:230.610000px;}
.yf4{bottom:234.930000px;}
.y4d{bottom:236.190000px;}
.y69{bottom:238.890000px;}
.y143{bottom:248.250000px;}
.yc1{bottom:249.870000px;}
.y24{bottom:250.050000px;}
.y164{bottom:251.310000px;}
.y8b{bottom:251.670000px;}
.y4c{bottom:256.890000px;}
.y68{bottom:259.590000px;}
.y11e{bottom:260.685000px;}
.y142{bottom:268.950000px;}
.y179{bottom:269.310000px;}
.yc0{bottom:270.570000px;}
.y163{bottom:272.010000px;}
.yf3{bottom:275.655000px;}
.y4b{bottom:277.635000px;}
.y141{bottom:289.695000px;}
.y23{bottom:290.055000px;}
.y8a{bottom:292.395000px;}
.yf2{bottom:296.355000px;}
.y4a{bottom:298.335000px;}
.y11d{bottom:302.115000px;}
.yae{bottom:304.815000px;}
.y22{bottom:307.335000px;}
.y178{bottom:308.055000px;}
.y140{bottom:310.395000px;}
.y162{bottom:310.755000px;}
.y89{bottom:313.095000px;}
.yf1{bottom:317.055000px;}
.y49{bottom:319.035000px;}
.y21{bottom:324.615000px;}
.y177{bottom:328.755000px;}
.y13f{bottom:331.095000px;}
.y161{bottom:331.455000px;}
.y88{bottom:333.795000px;}
.yf0{bottom:337.755000px;}
.y67{bottom:339.735000px;}
.y11c{bottom:343.515000px;}
.y13e{bottom:351.795000px;}
.y160{bottom:352.155000px;}
.ybf{bottom:352.875000px;}
.y87{bottom:354.495000px;}
.y48{bottom:357.735000px;}
.y66{bottom:360.435000px;}
.y20{bottom:360.615000px;}
.y176{bottom:367.455000px;}
.y13d{bottom:372.495000px;}
.y86{bottom:375.195000px;}
.yef{bottom:376.815000px;}
.y47{bottom:378.435000px;}
.y1f{bottom:381.135000px;}
.y11b{bottom:384.915000px;}
.y175{bottom:388.155000px;}
.y15f{bottom:390.855000px;}
.y13c{bottom:393.195000px;}
.y85{bottom:395.895000px;}
.yee{bottom:398.415000px;}
.y46{bottom:399.135000px;}
.y15e{bottom:411.555000px;}
.y13b{bottom:413.895000px;}
.yad{bottom:416.415000px;}
.y84{bottom:416.595000px;}
.yed{bottom:419.115000px;}
.y45{bottom:419.835000px;}
.y1e{bottom:421.635000px;}
.y11a{bottom:426.315000px;}
.y174{bottom:426.855000px;}
.y83{bottom:437.295000px;}
.yec{bottom:439.815000px;}
.y44{bottom:440.535000px;}
.y1d{bottom:442.335000px;}
.y173{bottom:447.555000px;}
.y15d{bottom:450.255000px;}
.y13a{bottom:452.415000px;}
.yac{bottom:455.295000px;}
.y82{bottom:457.995000px;}
.yeb{bottom:460.515000px;}
.y65{bottom:461.235000px;}
.y1c{bottom:463.035000px;}
.y117{bottom:467.715000px;}
.y172{bottom:468.255000px;}
.y15c{bottom:470.955000px;}
.yab{bottom:475.995000px;}
.y81{bottom:478.695000px;}
.y43{bottom:479.235000px;}
.yea{bottom:481.215000px;}
.y64{bottom:481.935000px;}
.y1b{bottom:483.735000px;}
.y15b{bottom:491.655000px;}
.y139{bottom:493.095000px;}
.yaa{bottom:496.695000px;}
.y42{bottom:499.935000px;}
.ye9{bottom:501.915000px;}
.y1a{bottom:504.435000px;}
.y171{bottom:506.955000px;}
.y116{bottom:510.555000px;}
.y138{bottom:513.795000px;}
.y80{bottom:517.215000px;}
.ya9{bottom:517.395000px;}
.y63{bottom:520.635000px;}
.ye8{bottom:522.615000px;}
.y19{bottom:525.135000px;}
.y170{bottom:527.655000px;}
.y15a{bottom:530.355000px;}
.y137{bottom:534.495000px;}
.y41{bottom:538.635000px;}
.y62{bottom:541.335000px;}
.y18{bottom:545.835000px;}
.y16f{bottom:548.355000px;}
.y159{bottom:551.055000px;}
.ya8{bottom:556.125000px;}
.y7f{bottom:557.925000px;}
.y40{bottom:559.365000px;}
.ye7{bottom:561.525000px;}
.y61{bottom:561.885000px;}
.y17{bottom:566.565000px;}
.y135{bottom:570.165000px;}
.y115{bottom:572.685000px;}
.y7e{bottom:578.445000px;}
.ya6{bottom:578.805000px;}
.y3f{bottom:579.885000px;}
.y60{bottom:582.585000px;}
.ya7{bottom:585.465000px;}
.y16e{bottom:587.085000px;}
.y16{bottom:587.265000px;}
.y158{bottom:589.785000px;}
.y114{bottom:593.745000px;}
.ya4{bottom:597.885000px;}
.y7d{bottom:599.145000px;}
.y3e{bottom:600.585000px;}
.ya3{bottom:601.125000px;}
.ye6{bottom:601.665000px;}
.y134{bottom:602.925000px;}
.y16d{bottom:607.785000px;}
.ya5{bottom:609.045000px;}
.y157{bottom:610.485000px;}
.y3d{bottom:621.285000px;}
.ye5{bottom:622.365000px;}
.y15{bottom:625.785000px;}
.y113{bottom:632.625000px;}
.y94{bottom:636.015000px;}
.ya0{bottom:636.045000px;}
.y7c{bottom:637.845000px;}
.y3c{bottom:641.985000px;}
.ye4{bottom:643.065000px;}
.y132{bottom:645.945000px;}
.y16c{bottom:646.485000px;}
.y156{bottom:649.185000px;}
.y7b{bottom:658.545000px;}
.y3b{bottom:662.685000px;}
.ye3{bottom:663.765000px;}
.y14{bottom:666.105000px;}
.y16b{bottom:667.185000px;}
.y112{bottom:672.765000px;}
.y7a{bottom:680.505000px;}
.y3a{bottom:683.385000px;}
.ye2{bottom:684.465000px;}
.y155{bottom:687.885000px;}
.y111{bottom:693.465000px;}
.y131{bottom:694.545000px;}
.y79{bottom:702.645000px;}
.y5f{bottom:704.085000px;}
.ye1{bottom:705.165000px;}
.y13{bottom:707.145000px;}
.y154{bottom:708.585000px;}
.y39{bottom:721.905000px;}
.y78{bottom:724.785000px;}
.y16a{bottom:726.585000px;}
.y153{bottom:729.285000px;}
.y12{bottom:729.825000px;}
.y110{bottom:732.165000px;}
.y130{bottom:733.245000px;}
.y5e{bottom:742.785000px;}
.ye0{bottom:743.865000px;}
.y93{bottom:745.305000px;}
.y77{bottom:745.485000px;}
.y169{bottom:747.285000px;}
.y10b{bottom:749.985000px;}
.y10d{bottom:750.000000px;}
.y12f{bottom:753.945000px;}
.y38{bottom:762.585000px;}
.y5d{bottom:763.485000px;}
.ydf{bottom:764.565000px;}
.y76{bottom:767.445000px;}
.y152{bottom:767.985000px;}
.y11{bottom:771.765000px;}
.y12e{bottom:774.645000px;}
.y37{bottom:783.285000px;}
.y5c{bottom:784.185000px;}
.yde{bottom:785.265000px;}
.y108{bottom:787.785000px;}
.y106{bottom:787.800000px;}
.y151{bottom:788.685000px;}
.yf{bottom:794.445000px;}
.y12d{bottom:795.345000px;}
.y10{bottom:802.005000px;}
.y36{bottom:803.985000px;}
.y75{bottom:804.705000px;}
.y92{bottom:804.885000px;}
.y168{bottom:806.685000px;}
.y5b{bottom:822.885000px;}
.ydd{bottom:824.325000px;}
.y35{bottom:824.685000px;}
.y91{bottom:825.585000px;}
.y74{bottom:826.845000px;}
.y102{bottom:827.385000px;}
.y12b{bottom:831.165000px;}
.ye{bottom:836.205000px;}
.y5a{bottom:843.630000px;}
.y90{bottom:846.330000px;}
.y73{bottom:847.230000px;}
.y150{bottom:848.130000px;}
.yd{bottom:859.110000px;}
.y34{bottom:863.430000px;}
.ydc{bottom:864.150000px;}
.y59{bottom:864.330000px;}
.y129{bottom:865.770000px;}
.y167{bottom:866.130000px;}
.y14f{bottom:868.830000px;}
.y72{bottom:883.230000px;}
.y33{bottom:884.130000px;}
.y58{bottom:885.030000px;}
.y101{bottom:886.110000px;}
.y166{bottom:886.830000px;}
.ydb{bottom:900.330000px;}
.yc{bottom:902.670000px;}
.y71{bottom:904.110000px;}
.y32{bottom:904.830000px;}
.y128{bottom:905.550000px;}
.y57{bottom:905.730000px;}
.y14e{bottom:907.530000px;}
.yda{bottom:921.210000px;}
.y70{bottom:924.810000px;}
.y100{bottom:924.990000px;}
.y31{bottom:925.530000px;}
.y56{bottom:926.430000px;}
.y14d{bottom:928.230000px;}
.yd9{bottom:941.910000px;}
.y127{bottom:944.430000px;}
.yff{bottom:945.690000px;}
.y30{bottom:946.230000px;}
.y8f{bottom:947.130000px;}
.yb{bottom:955.230000px;}
.yd8{bottom:962.610000px;}
.y6f{bottom:963.690000px;}
.y55{bottom:965.130000px;}
.y14c{bottom:966.930000px;}
.yfe{bottom:984.750000px;}
.y2f{bottom:984.930000px;}
.y54{bottom:985.830000px;}
.y14b{bottom:987.630000px;}
.ya{bottom:989.790000px;}
.yc6{bottom:996.915000px;}
.y6e{bottom:1003.650000px;}
.y2e{bottom:1005.630000px;}
.y53{bottom:1006.530000px;}
.yfd{bottom:1021.830000px;}
.y9{bottom:1024.170000px;}
.y126{bottom:1024.890000px;}
.y2d{bottom:1026.330000px;}
.yd7{bottom:1032.990000px;}
.yfb{bottom:1042.530000px;}
.y6d{bottom:1044.330000px;}
.y52{bottom:1045.050000px;}
.y8e{bottom:1045.590000px;}
.y2c{bottom:1047.030000px;}
.yf9{bottom:1064.670000px;}
.y6c{bottom:1065.030000px;}
.y14a{bottom:1067.730000px;}
.y8{bottom:1076.730000px;}
.y2b{bottom:1085.730000px;}
.y149{bottom:1106.070000px;}
.yf8{bottom:1106.250000px;}
.y2a{bottom:1106.430000px;}
.y5{bottom:1126.080000px;}
.y4{bottom:1143.720000px;}
.y3{bottom:1160.820000px;}
.y2{bottom:1178.100000px;}
.y1{bottom:1195.380000px;}
.h3f{height:19.065000px;}
.h34{height:20.685000px;}
.h41{height:27.720000px;}
.he{height:27.945000px;}
.h23{height:31.674120px;}
.h44{height:32.760000px;}
.h40{height:33.142500px;}
.h28{height:33.160552px;}
.h25{height:33.335659px;}
.h1f{height:36.168398px;}
.hb{height:37.494141px;}
.h30{height:37.553313px;}
.h3c{height:37.795500px;}
.h3b{height:37.800000px;}
.h35{height:37.822500px;}
.h37{height:37.965000px;}
.h39{height:37.975500px;}
.h3a{height:37.980000px;}
.h1b{height:38.373126px;}
.h20{height:38.984063px;}
.h2d{height:39.315650px;}
.h31{height:39.631638px;}
.h19{height:40.673728px;}
.h3d{height:41.385000px;}
.h42{height:41.395500px;}
.h43{height:41.400000px;}
.h3e{height:41.421000px;}
.h6{height:41.756133px;}
.h21{height:44.024063px;}
.h4{height:45.184219px;}
.h12{height:47.344922px;}
.h24{height:47.559722px;}
.h29{height:49.791648px;}
.h46{height:50.027344px;}
.h26{height:50.054577px;}
.h17{height:50.818464px;}
.h14{height:50.843759px;}
.h27{height:52.403584px;}
.hf{height:58.621992px;}
.h2{height:58.651172px;}
.h5{height:58.905000px;}
.h2e{height:58.916949px;}
.h32{height:59.390476px;}
.h3{height:60.226875px;}
.h15{height:61.620299px;}
.h2c{height:62.177607px;}
.h38{height:65.010937px;}
.h1c{height:65.690790px;}
.h36{height:66.757500px;}
.h1a{height:69.629182px;}
.h33{height:70.628906px;}
.hd{height:70.664062px;}
.h13{height:72.002356px;}
.h10{height:72.562500px;}
.h2a{height:74.585424px;}
.h45{height:74.704922px;}
.h11{height:76.279219px;}
.h9{height:76.317188px;}
.hc{height:78.367500px;}
.h8{height:82.676953px;}
.h2b{height:84.451392px;}
.h18{height:86.995911px;}
.h16{height:87.039214px;}
.h2f{height:88.373017px;}
.h1d{height:89.995500px;}
.h1e{height:90.000000px;}
.h22{height:92.327432px;}
.h7{height:121.179375px;}
.ha{height:1262.864960px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1f{width:39.045000px;}
.w20{width:55.245000px;}
.wd{width:58.665000px;}
.wc{width:77.565000px;}
.we{width:77.571000px;}
.wf{width:77.580000px;}
.wb{width:78.336000px;}
.w14{width:86.781000px;}
.w1a{width:86.782500px;}
.w16{width:89.995500px;}
.w11{width:90.000000px;}
.w23{width:96.285000px;}
.w1c{width:97.185000px;}
.w10{width:98.301000px;}
.w15{width:98.302500px;}
.w13{width:100.605000px;}
.w18{width:100.615500px;}
.w19{width:100.620000px;}
.w12{width:126.576000px;}
.w17{width:126.585000px;}
.w1e{width:132.336000px;}
.w2{width:136.282500px;}
.w21{width:154.275000px;}
.w24{width:154.290000px;}
.w1d{width:159.135000px;}
.w22{width:164.190000px;}
.w25{width:164.205000px;}
.wa{width:203.775000px;}
.w9{width:203.779765px;}
.w26{width:260.310000px;}
.w4{width:267.602571px;}
.w1b{width:278.160000px;}
.w8{width:324.224411px;}
.w5{width:326.910000px;}
.w6{width:327.300000px;}
.w7{width:327.315000px;}
.w3{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:1.666449px;}
.x3b{left:2.685463px;}
.x24{left:8.100000px;}
.x1c{left:10.693097px;}
.x14{left:11.757777px;}
.x4a{left:14.400000px;}
.x66{left:15.465000px;}
.x5d{left:17.085000px;}
.x57{left:19.245000px;}
.x55{left:20.880000px;}
.x53{left:22.305000px;}
.x4d{left:23.565000px;}
.x54{left:25.005000px;}
.x1f{left:26.894979px;}
.x5e{left:28.245000px;}
.x23{left:29.340000px;}
.x6d{left:38.145000px;}
.x56{left:39.240000px;}
.x69{left:43.545000px;}
.x19{left:44.947669px;}
.x65{left:47.520000px;}
.x5a{left:48.585000px;}
.x1b{left:53.974013px;}
.x2{left:55.777500px;}
.x6c{left:57.090000px;}
.x3f{left:58.679306px;}
.x6e{left:61.740000px;}
.x1e{left:68.740256px;}
.x32{left:76.830538px;}
.x2c{left:79.741166px;}
.x42{left:80.844853px;}
.x5b{left:82.470000px;}
.x3d{left:87.257434px;}
.x37{left:88.907067px;}
.x5f{left:91.425000px;}
.x39{left:94.400097px;}
.x5c{left:99.345000px;}
.x31{left:101.249431px;}
.x2a{left:104.193967px;}
.x2f{left:112.631532px;}
.x41{left:115.275303px;}
.x36{left:117.925186px;}
.x20{left:119.565000px;}
.x16{left:123.270233px;}
.x40{left:124.853922px;}
.x1{left:127.656000px;}
.x18{left:130.630585px;}
.x12{left:133.056000px;}
.x2d{left:137.081620px;}
.x35{left:142.344078px;}
.x5{left:143.496000px;}
.x43{left:146.658011px;}
.x10{left:148.896000px;}
.x15{left:150.628199px;}
.x3c{left:153.752432px;}
.x4c{left:156.645000px;}
.xf{left:159.510000px;}
.x1d{left:161.043504px;}
.x30{left:165.970890px;}
.x13{left:168.358316px;}
.x3e{left:171.675785px;}
.x4{left:173.010000px;}
.x2e{left:178.408195px;}
.xe{left:180.750000px;}
.x34{left:184.565814px;}
.x17{left:191.968745px;}
.x33{left:201.234787px;}
.x38{left:203.364184px;}
.x8{left:210.810000px;}
.x26{left:213.150000px;}
.x25{left:226.470000px;}
.xc{left:231.870000px;}
.x4e{left:234.225000px;}
.x46{left:237.285000px;}
.x68{left:239.265000px;}
.xd{left:251.310000px;}
.x61{left:253.665000px;}
.x58{left:258.885000px;}
.x21{left:275.790000px;}
.x28{left:283.170000px;}
.x2b{left:287.604210px;}
.x27{left:294.735000px;}
.x67{left:326.955000px;}
.x4f{left:332.535000px;}
.x4b{left:337.935000px;}
.x60{left:342.435000px;}
.x11{left:343.695000px;}
.x44{left:352.875000px;}
.x7{left:358.095000px;}
.x9{left:381.135000px;}
.x6{left:383.295000px;}
.x45{left:387.795000px;}
.x6a{left:393.555000px;}
.x62{left:412.815000px;}
.x50{left:422.535000px;}
.x47{left:441.075000px;}
.x22{left:446.475000px;}
.x3{left:457.275000px;}
.x3a{left:473.295000px;}
.x29{left:479.415000px;}
.x48{left:519.420000px;}
.xa{left:526.402500px;}
.xb{left:533.265000px;}
.x59{left:537.060000px;}
.x63{left:545.160000px;}
.x51{left:549.120000px;}
.x6b{left:557.580000px;}
.x64{left:584.220000px;}
.x49{left:597.000000px;}
.x52{left:649.740000px;}
@media print{
.ve{vertical-align:-73.066667pt;}
.va{vertical-align:-36.689479pt;}
.v7{vertical-align:-28.160000pt;}
.vb{vertical-align:-25.564165pt;}
.v9{vertical-align:-23.680000pt;}
.v6{vertical-align:-18.560000pt;}
.v4{vertical-align:-17.327435pt;}
.v8{vertical-align:-12.800000pt;}
.v5{vertical-align:-6.398610pt;}
.v2{vertical-align:-5.120000pt;}
.v1{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:2.560000pt;}
.v3{vertical-align:5.120000pt;}
.vd{vertical-align:12.800000pt;}
.vf{vertical-align:24.320000pt;}
.ls2b{letter-spacing:-1.280000pt;}
.ls38{letter-spacing:-0.271467pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls3a{letter-spacing:-0.192000pt;}
.ls39{letter-spacing:-0.135467pt;}
.ls14{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.030720pt;}
.ls9{letter-spacing:-0.015360pt;}
.lsa{letter-spacing:-0.007680pt;}
.ls7{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.007680pt;}
.ls2{letter-spacing:0.011520pt;}
.ls3{letter-spacing:0.015360pt;}
.ls4{letter-spacing:0.023040pt;}
.lsd{letter-spacing:0.030720pt;}
.ls35{letter-spacing:0.097067pt;}
.lsc{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.128640pt;}
.ls5{letter-spacing:0.133333pt;}
.ls6{letter-spacing:0.154880pt;}
.ls1{letter-spacing:0.160000pt;}
.ls21{letter-spacing:0.192000pt;}
.ls10{letter-spacing:0.239360pt;}
.ls12{letter-spacing:0.239467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls22{letter-spacing:0.362667pt;}
.ls3b{letter-spacing:0.448000pt;}
.ls13{letter-spacing:0.512000pt;}
.lsf{letter-spacing:0.640000pt;}
.ls37{letter-spacing:0.768000pt;}
.ls26{letter-spacing:1.247729pt;}
.ls20{letter-spacing:1.440000pt;}
.ls16{letter-spacing:2.816000pt;}
.ls1e{letter-spacing:3.306667pt;}
.ls1d{letter-spacing:3.652480pt;}
.lse{letter-spacing:3.840000pt;}
.ls2e{letter-spacing:4.171520pt;}
.ls1c{letter-spacing:4.480000pt;}
.ls1a{letter-spacing:5.120000pt;}
.ls34{letter-spacing:6.656000pt;}
.ls2f{letter-spacing:9.010560pt;}
.ls2d{letter-spacing:10.944000pt;}
.ls1b{letter-spacing:44.772480pt;}
.ls19{letter-spacing:51.012480pt;}
.ls33{letter-spacing:51.116145pt;}
.ls25{letter-spacing:53.492378pt;}
.ls30{letter-spacing:78.917059pt;}
.ls31{letter-spacing:79.324459pt;}
.ls24{letter-spacing:79.726678pt;}
.ls32{letter-spacing:134.766285pt;}
.ls1f{letter-spacing:153.083338pt;}
.ls23{letter-spacing:215.185247pt;}
.ls2c{letter-spacing:230.622944pt;}
.ls17{letter-spacing:251.289018pt;}
.ls18{letter-spacing:331.741049pt;}
.ls27{letter-spacing:347.317934pt;}
.ls29{letter-spacing:440.910545pt;}
.ls36{letter-spacing:576.778667pt;}
.ls2a{letter-spacing:779.933085pt;}
.ls28{letter-spacing:1016.855405pt;}
.wsa{word-spacing:-35.136000pt;}
.ws8{word-spacing:-17.310720pt;}
.ws1{word-spacing:-17.303040pt;}
.ws2{word-spacing:-17.295360pt;}
.wsc{word-spacing:-17.280000pt;}
.ws4{word-spacing:-17.272320pt;}
.ws3{word-spacing:-17.264640pt;}
.ws24{word-spacing:-16.448000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws9{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.872000pt;}
.ws23{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws20{word-spacing:-14.817067pt;}
.ws1f{word-spacing:-14.720000pt;}
.ws22{word-spacing:-14.584533pt;}
.ws21{word-spacing:-14.448533pt;}
.ws10{word-spacing:-14.080000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws11{word-spacing:-10.959467pt;}
.ws12{word-spacing:-10.720000pt;}
.wsf{word-spacing:-9.996800pt;}
.wse{word-spacing:-8.439263pt;}
.ws1e{word-spacing:-3.456000pt;}
.ws14{word-spacing:-0.059751pt;}
.ws17{word-spacing:-0.041881pt;}
.ws5{word-spacing:0.000000pt;}
.ws1d{word-spacing:4.330667pt;}
.ws1c{word-spacing:15.669140pt;}
.ws19{word-spacing:24.839905pt;}
.ws1a{word-spacing:56.427198pt;}
.ws1b{word-spacing:58.550295pt;}
.ws18{word-spacing:68.978172pt;}
.ws13{word-spacing:76.959851pt;}
.ws16{word-spacing:85.186158pt;}
.wsd{word-spacing:94.124062pt;}
.ws15{word-spacing:198.733279pt;}
._22{margin-left:-5.138624pt;}
._1f{margin-left:-3.840000pt;}
._2c{margin-left:-2.171733pt;}
._4{margin-left:-1.218133pt;}
._0{width:0.903040pt;}
._1{width:2.267733pt;}
._9{width:3.328000pt;}
._12{width:4.544000pt;}
._e{width:5.504000pt;}
._f{width:6.464000pt;}
._d{width:7.616000pt;}
._11{width:8.934400pt;}
._10{width:9.836800pt;}
._6{width:11.136000pt;}
._a{width:12.224000pt;}
._14{width:13.482667pt;}
._c{width:14.687360pt;}
._b{width:15.844480pt;}
._17{width:17.344000pt;}
._18{width:18.420053pt;}
._19{width:19.840000pt;}
._13{width:20.864000pt;}
._7{width:22.400000pt;}
._8{width:23.392000pt;}
._16{width:24.672000pt;}
._1c{width:26.144000pt;}
._2d{width:28.032000pt;}
._1a{width:29.376000pt;}
._1b{width:30.784000pt;}
._15{width:31.936000pt;}
._2b{width:34.048000pt;}
._23{width:36.096470pt;}
._1e{width:44.368798pt;}
._29{width:54.095839pt;}
._1d{width:61.915780pt;}
._27{width:70.345278pt;}
._25{width:83.306667pt;}
._21{width:118.248093pt;}
._28{width:120.639085pt;}
._2a{width:143.360000pt;}
._26{width:176.000000pt;}
._5{width:194.994773pt;}
._24{width:283.300690pt;}
._20{width:326.362348pt;}
._2{width:1074.240000pt;}
._3{width:1807.620693pt;}
.fs7{font-size:34.560000pt;}
.fse{font-size:39.793634pt;}
.fs10{font-size:41.881100pt;}
.fs8{font-size:42.880000pt;}
.fsd{font-size:45.440000pt;}
.fs9{font-size:46.048875pt;}
.fs14{font-size:47.179932pt;}
.fs5{font-size:48.000000pt;}
.fsb{font-size:48.809666pt;}
.fs17{font-size:49.791025pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fsf{font-size:59.751437pt;}
.fs11{font-size:62.885836pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs15{font-size:70.702064pt;}
.fs13{font-size:74.614950pt;}
.fs3{font-size:74.880000pt;}
.fsa{font-size:78.830872pt;}
.fsc{font-size:83.557058pt;}
.fs12{font-size:89.504694pt;}
.fs16{font-size:106.050210pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y104{bottom:3.200000pt;}
.y12a{bottom:3.360000pt;}
.y10f{bottom:3.520000pt;}
.y10a{bottom:3.666667pt;}
.yfa{bottom:3.680000pt;}
.y121{bottom:3.986667pt;}
.yfc{bottom:4.000000pt;}
.y9c{bottom:4.136701pt;}
.ybc{bottom:4.391716pt;}
.ycf{bottom:4.682922pt;}
.yd4{bottom:6.267325pt;}
.yd2{bottom:8.344743pt;}
.yb0{bottom:9.291402pt;}
.y136{bottom:9.440000pt;}
.y133{bottom:9.920000pt;}
.y12c{bottom:9.960000pt;}
.yb9{bottom:10.665788pt;}
.y9f{bottom:10.810131pt;}
.y105{bottom:11.720000pt;}
.y10c{bottom:12.000000pt;}
.y107{bottom:12.146667pt;}
.yc9{bottom:12.393933pt;}
.ybe{bottom:12.398007pt;}
.y123{bottom:13.106667pt;}
.y118{bottom:13.120000pt;}
.y11f{bottom:13.146667pt;}
.yd0{bottom:13.415034pt;}
.ya2{bottom:15.200000pt;}
.ybb{bottom:15.834278pt;}
.y97{bottom:19.669326pt;}
.y103{bottom:20.040000pt;}
.y10e{bottom:20.306667pt;}
.yce{bottom:20.316669pt;}
.y109{bottom:20.480000pt;}
.ycd{bottom:20.950257pt;}
.y9e{bottom:21.152204pt;}
.y124{bottom:22.386667pt;}
.y119{bottom:22.400000pt;}
.y120{bottom:22.426667pt;}
.yb8{bottom:24.886635pt;}
.yb4{bottom:25.006647pt;}
.y9d{bottom:26.224702pt;}
.yd6{bottom:29.188343pt;}
.yb7{bottom:34.596611pt;}
.y96{bottom:35.045186pt;}
.yc8{bottom:35.314951pt;}
.y9b{bottom:35.942591pt;}
.y7{bottom:39.712000pt;}
.yb3{bottom:39.764488pt;}
.y9a{bottom:41.015089pt;}
.y99{bottom:41.914093pt;}
.ycc{bottom:41.935151pt;}
.yd3{bottom:43.554481pt;}
.yba{bottom:45.381799pt;}
.yd1{bottom:45.632765pt;}
.y98{bottom:46.557884pt;}
.ya1{bottom:49.600000pt;}
.yc7{bottom:49.681088pt;}
.y95{bottom:49.835572pt;}
.yaf{bottom:50.281486pt;}
.yb6{bottom:51.626113pt;}
.y6{bottom:52.032000pt;}
.ybd{bottom:53.388335pt;}
.yb2{bottom:56.793991pt;}
.ycb{bottom:57.568465pt;}
.yca{bottom:58.236691pt;}
.yd5{bottom:60.385694pt;}
.yb5{bottom:65.846348pt;}
.yb1{bottom:65.966360pt;}
.y29{bottom:116.832000pt;}
.yf7{bottom:120.192000pt;}
.y51{bottom:120.352000pt;}
.y28{bottom:121.472000pt;}
.y148{bottom:128.832000pt;}
.yc5{bottom:132.512000pt;}
.y27{bottom:133.626667pt;}
.y8d{bottom:135.226667pt;}
.yf6{bottom:138.586667pt;}
.y50{bottom:138.746667pt;}
.y147{bottom:147.226667pt;}
.yc4{bottom:150.906667pt;}
.y8c{bottom:153.626667pt;}
.y4f{bottom:157.146667pt;}
.y146{bottom:165.626667pt;}
.yc3{bottom:169.306667pt;}
.y26{bottom:169.786667pt;}
.yf5{bottom:173.306667pt;}
.y6b{bottom:175.546667pt;}
.y125{bottom:179.226667pt;}
.y145{bottom:183.866667pt;}
.yc2{bottom:187.706667pt;}
.y25{bottom:188.186667pt;}
.y165{bottom:188.986667pt;}
.y4e{bottom:191.546667pt;}
.y6a{bottom:193.946667pt;}
.y122{bottom:194.920000pt;}
.y144{bottom:202.266667pt;}
.y17a{bottom:204.986667pt;}
.yf4{bottom:208.826667pt;}
.y4d{bottom:209.946667pt;}
.y69{bottom:212.346667pt;}
.y143{bottom:220.666667pt;}
.yc1{bottom:222.106667pt;}
.y24{bottom:222.266667pt;}
.y164{bottom:223.386667pt;}
.y8b{bottom:223.706667pt;}
.y4c{bottom:228.346667pt;}
.y68{bottom:230.746667pt;}
.y11e{bottom:231.720000pt;}
.y142{bottom:239.066667pt;}
.y179{bottom:239.386667pt;}
.yc0{bottom:240.506667pt;}
.y163{bottom:241.786667pt;}
.yf3{bottom:245.026667pt;}
.y4b{bottom:246.786667pt;}
.y141{bottom:257.506667pt;}
.y23{bottom:257.826667pt;}
.y8a{bottom:259.906667pt;}
.yf2{bottom:263.426667pt;}
.y4a{bottom:265.186667pt;}
.y11d{bottom:268.546667pt;}
.yae{bottom:270.946667pt;}
.y22{bottom:273.186667pt;}
.y178{bottom:273.826667pt;}
.y140{bottom:275.906667pt;}
.y162{bottom:276.226667pt;}
.y89{bottom:278.306667pt;}
.yf1{bottom:281.826667pt;}
.y49{bottom:283.586667pt;}
.y21{bottom:288.546667pt;}
.y177{bottom:292.226667pt;}
.y13f{bottom:294.306667pt;}
.y161{bottom:294.626667pt;}
.y88{bottom:296.706667pt;}
.yf0{bottom:300.226667pt;}
.y67{bottom:301.986667pt;}
.y11c{bottom:305.346667pt;}
.y13e{bottom:312.706667pt;}
.y160{bottom:313.026667pt;}
.ybf{bottom:313.666667pt;}
.y87{bottom:315.106667pt;}
.y48{bottom:317.986667pt;}
.y66{bottom:320.386667pt;}
.y20{bottom:320.546667pt;}
.y176{bottom:326.626667pt;}
.y13d{bottom:331.106667pt;}
.y86{bottom:333.506667pt;}
.yef{bottom:334.946667pt;}
.y47{bottom:336.386667pt;}
.y1f{bottom:338.786667pt;}
.y11b{bottom:342.146667pt;}
.y175{bottom:345.026667pt;}
.y15f{bottom:347.426667pt;}
.y13c{bottom:349.506667pt;}
.y85{bottom:351.906667pt;}
.yee{bottom:354.146667pt;}
.y46{bottom:354.786667pt;}
.y15e{bottom:365.826667pt;}
.y13b{bottom:367.906667pt;}
.yad{bottom:370.146667pt;}
.y84{bottom:370.306667pt;}
.yed{bottom:372.546667pt;}
.y45{bottom:373.186667pt;}
.y1e{bottom:374.786667pt;}
.y11a{bottom:378.946667pt;}
.y174{bottom:379.426667pt;}
.y83{bottom:388.706667pt;}
.yec{bottom:390.946667pt;}
.y44{bottom:391.586667pt;}
.y1d{bottom:393.186667pt;}
.y173{bottom:397.826667pt;}
.y15d{bottom:400.226667pt;}
.y13a{bottom:402.146667pt;}
.yac{bottom:404.706667pt;}
.y82{bottom:407.106667pt;}
.yeb{bottom:409.346667pt;}
.y65{bottom:409.986667pt;}
.y1c{bottom:411.586667pt;}
.y117{bottom:415.746667pt;}
.y172{bottom:416.226667pt;}
.y15c{bottom:418.626667pt;}
.yab{bottom:423.106667pt;}
.y81{bottom:425.506667pt;}
.y43{bottom:425.986667pt;}
.yea{bottom:427.746667pt;}
.y64{bottom:428.386667pt;}
.y1b{bottom:429.986667pt;}
.y15b{bottom:437.026667pt;}
.y139{bottom:438.306667pt;}
.yaa{bottom:441.506667pt;}
.y42{bottom:444.386667pt;}
.ye9{bottom:446.146667pt;}
.y1a{bottom:448.386667pt;}
.y171{bottom:450.626667pt;}
.y116{bottom:453.826667pt;}
.y138{bottom:456.706667pt;}
.y80{bottom:459.746667pt;}
.ya9{bottom:459.906667pt;}
.y63{bottom:462.786667pt;}
.ye8{bottom:464.546667pt;}
.y19{bottom:466.786667pt;}
.y170{bottom:469.026667pt;}
.y15a{bottom:471.426667pt;}
.y137{bottom:475.106667pt;}
.y41{bottom:478.786667pt;}
.y62{bottom:481.186667pt;}
.y18{bottom:485.186667pt;}
.y16f{bottom:487.426667pt;}
.y159{bottom:489.826667pt;}
.ya8{bottom:494.333333pt;}
.y7f{bottom:495.933333pt;}
.y40{bottom:497.213333pt;}
.ye7{bottom:499.133333pt;}
.y61{bottom:499.453333pt;}
.y17{bottom:503.613333pt;}
.y135{bottom:506.813333pt;}
.y115{bottom:509.053333pt;}
.y7e{bottom:514.173333pt;}
.ya6{bottom:514.493333pt;}
.y3f{bottom:515.453333pt;}
.y60{bottom:517.853333pt;}
.ya7{bottom:520.413333pt;}
.y16e{bottom:521.853333pt;}
.y16{bottom:522.013333pt;}
.y158{bottom:524.253333pt;}
.y114{bottom:527.773333pt;}
.ya4{bottom:531.453333pt;}
.y7d{bottom:532.573333pt;}
.y3e{bottom:533.853333pt;}
.ya3{bottom:534.333333pt;}
.ye6{bottom:534.813333pt;}
.y134{bottom:535.933333pt;}
.y16d{bottom:540.253333pt;}
.ya5{bottom:541.373333pt;}
.y157{bottom:542.653333pt;}
.y3d{bottom:552.253333pt;}
.ye5{bottom:553.213333pt;}
.y15{bottom:556.253333pt;}
.y113{bottom:562.333333pt;}
.y94{bottom:565.346667pt;}
.ya0{bottom:565.373333pt;}
.y7c{bottom:566.973333pt;}
.y3c{bottom:570.653333pt;}
.ye4{bottom:571.613333pt;}
.y132{bottom:574.173333pt;}
.y16c{bottom:574.653333pt;}
.y156{bottom:577.053333pt;}
.y7b{bottom:585.373333pt;}
.y3b{bottom:589.053333pt;}
.ye3{bottom:590.013333pt;}
.y14{bottom:592.093333pt;}
.y16b{bottom:593.053333pt;}
.y112{bottom:598.013333pt;}
.y7a{bottom:604.893333pt;}
.y3a{bottom:607.453333pt;}
.ye2{bottom:608.413333pt;}
.y155{bottom:611.453333pt;}
.y111{bottom:616.413333pt;}
.y131{bottom:617.373333pt;}
.y79{bottom:624.573333pt;}
.y5f{bottom:625.853333pt;}
.ye1{bottom:626.813333pt;}
.y13{bottom:628.573333pt;}
.y154{bottom:629.853333pt;}
.y39{bottom:641.693333pt;}
.y78{bottom:644.253333pt;}
.y16a{bottom:645.853333pt;}
.y153{bottom:648.253333pt;}
.y12{bottom:648.733333pt;}
.y110{bottom:650.813333pt;}
.y130{bottom:651.773333pt;}
.y5e{bottom:660.253333pt;}
.ye0{bottom:661.213333pt;}
.y93{bottom:662.493333pt;}
.y77{bottom:662.653333pt;}
.y169{bottom:664.253333pt;}
.y10b{bottom:666.653333pt;}
.y10d{bottom:666.666667pt;}
.y12f{bottom:670.173333pt;}
.y38{bottom:677.853333pt;}
.y5d{bottom:678.653333pt;}
.ydf{bottom:679.613333pt;}
.y76{bottom:682.173333pt;}
.y152{bottom:682.653333pt;}
.y11{bottom:686.013333pt;}
.y12e{bottom:688.573333pt;}
.y37{bottom:696.253333pt;}
.y5c{bottom:697.053333pt;}
.yde{bottom:698.013333pt;}
.y108{bottom:700.253333pt;}
.y106{bottom:700.266667pt;}
.y151{bottom:701.053333pt;}
.yf{bottom:706.173333pt;}
.y12d{bottom:706.973333pt;}
.y10{bottom:712.893333pt;}
.y36{bottom:714.653333pt;}
.y75{bottom:715.293333pt;}
.y92{bottom:715.453333pt;}
.y168{bottom:717.053333pt;}
.y5b{bottom:731.453333pt;}
.ydd{bottom:732.733333pt;}
.y35{bottom:733.053333pt;}
.y91{bottom:733.853333pt;}
.y74{bottom:734.973333pt;}
.y102{bottom:735.453333pt;}
.y12b{bottom:738.813333pt;}
.ye{bottom:743.293333pt;}
.y5a{bottom:749.893333pt;}
.y90{bottom:752.293333pt;}
.y73{bottom:753.093333pt;}
.y150{bottom:753.893333pt;}
.yd{bottom:763.653333pt;}
.y34{bottom:767.493333pt;}
.ydc{bottom:768.133333pt;}
.y59{bottom:768.293333pt;}
.y129{bottom:769.573333pt;}
.y167{bottom:769.893333pt;}
.y14f{bottom:772.293333pt;}
.y72{bottom:785.093333pt;}
.y33{bottom:785.893333pt;}
.y58{bottom:786.693333pt;}
.y101{bottom:787.653333pt;}
.y166{bottom:788.293333pt;}
.ydb{bottom:800.293333pt;}
.yc{bottom:802.373333pt;}
.y71{bottom:803.653333pt;}
.y32{bottom:804.293333pt;}
.y128{bottom:804.933333pt;}
.y57{bottom:805.093333pt;}
.y14e{bottom:806.693333pt;}
.yda{bottom:818.853333pt;}
.y70{bottom:822.053333pt;}
.y100{bottom:822.213333pt;}
.y31{bottom:822.693333pt;}
.y56{bottom:823.493333pt;}
.y14d{bottom:825.093333pt;}
.yd9{bottom:837.253333pt;}
.y127{bottom:839.493333pt;}
.yff{bottom:840.613333pt;}
.y30{bottom:841.093333pt;}
.y8f{bottom:841.893333pt;}
.yb{bottom:849.093333pt;}
.yd8{bottom:855.653333pt;}
.y6f{bottom:856.613333pt;}
.y55{bottom:857.893333pt;}
.y14c{bottom:859.493333pt;}
.yfe{bottom:875.333333pt;}
.y2f{bottom:875.493333pt;}
.y54{bottom:876.293333pt;}
.y14b{bottom:877.893333pt;}
.ya{bottom:879.813333pt;}
.yc6{bottom:886.146667pt;}
.y6e{bottom:892.133333pt;}
.y2e{bottom:893.893333pt;}
.y53{bottom:894.693333pt;}
.yfd{bottom:908.293333pt;}
.y9{bottom:910.373333pt;}
.y126{bottom:911.013333pt;}
.y2d{bottom:912.293333pt;}
.yd7{bottom:918.213333pt;}
.yfb{bottom:926.693333pt;}
.y6d{bottom:928.293333pt;}
.y52{bottom:928.933333pt;}
.y8e{bottom:929.413333pt;}
.y2c{bottom:930.693333pt;}
.yf9{bottom:946.373333pt;}
.y6c{bottom:946.693333pt;}
.y14a{bottom:949.093333pt;}
.y8{bottom:957.093333pt;}
.y2b{bottom:965.093333pt;}
.y149{bottom:983.173333pt;}
.yf8{bottom:983.333333pt;}
.y2a{bottom:983.493333pt;}
.y5{bottom:1000.960000pt;}
.y4{bottom:1016.640000pt;}
.y3{bottom:1031.840000pt;}
.y2{bottom:1047.200000pt;}
.y1{bottom:1062.560000pt;}
.h3f{height:16.946667pt;}
.h34{height:18.386667pt;}
.h41{height:24.640000pt;}
.he{height:24.840000pt;}
.h23{height:28.154773pt;}
.h44{height:29.120000pt;}
.h40{height:29.460000pt;}
.h28{height:29.476046pt;}
.h25{height:29.631697pt;}
.h1f{height:32.149687pt;}
.hb{height:33.328125pt;}
.h30{height:33.380723pt;}
.h3c{height:33.596000pt;}
.h3b{height:33.600000pt;}
.h35{height:33.620000pt;}
.h37{height:33.746667pt;}
.h39{height:33.756000pt;}
.h3a{height:33.760000pt;}
.h1b{height:34.109445pt;}
.h20{height:34.652500pt;}
.h2d{height:34.947244pt;}
.h31{height:35.228122pt;}
.h19{height:36.154425pt;}
.h3d{height:36.786667pt;}
.h42{height:36.796000pt;}
.h43{height:36.800000pt;}
.h3e{height:36.818667pt;}
.h6{height:37.116563pt;}
.h21{height:39.132500pt;}
.h4{height:40.163750pt;}
.h12{height:42.084375pt;}
.h24{height:42.275309pt;}
.h29{height:44.259243pt;}
.h46{height:44.468750pt;}
.h26{height:44.492957pt;}
.h17{height:45.171968pt;}
.h14{height:45.194452pt;}
.h27{height:46.580963pt;}
.hf{height:52.108438pt;}
.h2{height:52.134375pt;}
.h5{height:52.360000pt;}
.h2e{height:52.370621pt;}
.h32{height:52.791534pt;}
.h3{height:53.535000pt;}
.h15{height:54.773599pt;}
.h2c{height:55.268984pt;}
.h38{height:57.787500pt;}
.h1c{height:58.391813pt;}
.h36{height:59.340000pt;}
.h1a{height:61.892606pt;}
.h33{height:62.781250pt;}
.hd{height:62.812500pt;}
.h13{height:64.002094pt;}
.h10{height:64.500000pt;}
.h2a{height:66.298154pt;}
.h45{height:66.404375pt;}
.h11{height:67.803750pt;}
.h9{height:67.837500pt;}
.hc{height:69.660000pt;}
.h8{height:73.490625pt;}
.h2b{height:75.067904pt;}
.h18{height:77.329699pt;}
.h16{height:77.368190pt;}
.h2f{height:78.553793pt;}
.h1d{height:79.996000pt;}
.h1e{height:80.000000pt;}
.h22{height:82.068829pt;}
.h7{height:107.715000pt;}
.ha{height:1122.546631pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1f{width:34.706667pt;}
.w20{width:49.106667pt;}
.wd{width:52.146667pt;}
.wc{width:68.946667pt;}
.we{width:68.952000pt;}
.wf{width:68.960000pt;}
.wb{width:69.632000pt;}
.w14{width:77.138667pt;}
.w1a{width:77.140000pt;}
.w16{width:79.996000pt;}
.w11{width:80.000000pt;}
.w23{width:85.586667pt;}
.w1c{width:86.386667pt;}
.w10{width:87.378667pt;}
.w15{width:87.380000pt;}
.w13{width:89.426667pt;}
.w18{width:89.436000pt;}
.w19{width:89.440000pt;}
.w12{width:112.512000pt;}
.w17{width:112.520000pt;}
.w1e{width:117.632000pt;}
.w2{width:121.140000pt;}
.w21{width:137.133333pt;}
.w24{width:137.146667pt;}
.w1d{width:141.453333pt;}
.w22{width:145.946667pt;}
.w25{width:145.960000pt;}
.wa{width:181.133333pt;}
.w9{width:181.137569pt;}
.w26{width:231.386667pt;}
.w4{width:237.868952pt;}
.w1b{width:247.253333pt;}
.w8{width:288.199477pt;}
.w5{width:290.586667pt;}
.w6{width:290.933333pt;}
.w7{width:290.946667pt;}
.w3{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:1.481288pt;}
.x3b{left:2.387079pt;}
.x24{left:7.200000pt;}
.x1c{left:9.504975pt;}
.x14{left:10.451358pt;}
.x4a{left:12.800000pt;}
.x66{left:13.746667pt;}
.x5d{left:15.186667pt;}
.x57{left:17.106667pt;}
.x55{left:18.560000pt;}
.x53{left:19.826667pt;}
.x4d{left:20.946667pt;}
.x54{left:22.226667pt;}
.x1f{left:23.906648pt;}
.x5e{left:25.106667pt;}
.x23{left:26.080000pt;}
.x6d{left:33.906667pt;}
.x56{left:34.880000pt;}
.x69{left:38.706667pt;}
.x19{left:39.953483pt;}
.x65{left:42.240000pt;}
.x5a{left:43.186667pt;}
.x1b{left:47.976901pt;}
.x2{left:49.580000pt;}
.x6c{left:50.746667pt;}
.x3f{left:52.159383pt;}
.x6e{left:54.880000pt;}
.x1e{left:61.102450pt;}
.x32{left:68.293812pt;}
.x2c{left:70.881037pt;}
.x42{left:71.862092pt;}
.x5b{left:73.306667pt;}
.x3d{left:77.562164pt;}
.x37{left:79.028504pt;}
.x5f{left:81.266667pt;}
.x39{left:83.911198pt;}
.x5c{left:88.306667pt;}
.x31{left:89.999494pt;}
.x2a{left:92.616859pt;}
.x2f{left:100.116917pt;}
.x41{left:102.466936pt;}
.x36{left:104.822387pt;}
.x20{left:106.280000pt;}
.x16{left:109.573541pt;}
.x40{left:110.981264pt;}
.x1{left:113.472000pt;}
.x18{left:116.116075pt;}
.x12{left:118.272000pt;}
.x2d{left:121.850329pt;}
.x35{left:126.528070pt;}
.x5{left:127.552000pt;}
.x43{left:130.362677pt;}
.x10{left:132.352000pt;}
.x15{left:133.891732pt;}
.x3c{left:136.668829pt;}
.x4c{left:139.240000pt;}
.xf{left:141.786667pt;}
.x1d{left:143.149781pt;}
.x30{left:147.529680pt;}
.x13{left:149.651836pt;}
.x3e{left:152.600698pt;}
.x4{left:153.786667pt;}
.x2e{left:158.585062pt;}
.xe{left:160.666667pt;}
.x34{left:164.058501pt;}
.x17{left:170.638884pt;}
.x33{left:178.875366pt;}
.x38{left:180.768164pt;}
.x8{left:187.386667pt;}
.x26{left:189.466667pt;}
.x25{left:201.306667pt;}
.xc{left:206.106667pt;}
.x4e{left:208.200000pt;}
.x46{left:210.920000pt;}
.x68{left:212.680000pt;}
.xd{left:223.386667pt;}
.x61{left:225.480000pt;}
.x58{left:230.120000pt;}
.x21{left:245.146667pt;}
.x28{left:251.706667pt;}
.x2b{left:255.648187pt;}
.x27{left:261.986667pt;}
.x67{left:290.626667pt;}
.x4f{left:295.586667pt;}
.x4b{left:300.386667pt;}
.x60{left:304.386667pt;}
.x11{left:305.506667pt;}
.x44{left:313.666667pt;}
.x7{left:318.306667pt;}
.x9{left:338.786667pt;}
.x6{left:340.706667pt;}
.x45{left:344.706667pt;}
.x6a{left:349.826667pt;}
.x62{left:366.946667pt;}
.x50{left:375.586667pt;}
.x47{left:392.066667pt;}
.x22{left:396.866667pt;}
.x3{left:406.466667pt;}
.x3a{left:420.706667pt;}
.x29{left:426.146667pt;}
.x48{left:461.706667pt;}
.xa{left:467.913333pt;}
.xb{left:474.013333pt;}
.x59{left:477.386667pt;}
.x63{left:484.586667pt;}
.x51{left:488.106667pt;}
.x6b{left:495.626667pt;}
.x64{left:519.306667pt;}
.x49{left:530.666667pt;}
.x52{left:577.546667pt;}
}




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