
    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_435bab17c90d3e27bacb1c1b.woff')format("woff");}.ff1{font-family:ff1;line-height:1.212000;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_c7247c9e2b73db29eff84aa5.woff')format("woff");}.ff2{font-family:ff2;line-height:1.188000;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_da75187555349e5cd6880b78.woff')format("woff");}.ff3{font-family:ff3;line-height:1.344000;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_696adbadae545b4f03da44fd.woff')format("woff");}.ff4{font-family:ff4;line-height:1.455000;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_566ddc94b18056c3f3eff570.woff')format("woff");}.ff5{font-family:ff5;line-height:0.895996;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_909b9d0daf3dc18388de5ef1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.873535;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_4f6499fc0cf9d8f34f233070.woff')format("woff");}.ff7{font-family:ff7;line-height:0.939453;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_98604a66181e6160b46e8f22.woff')format("woff");}.ff8{font-family:ff8;line-height:0.993000;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_7b9e48adea53ffc1c6a143f2.woff')format("woff");}.ff9{font-family:ff9;line-height:0.939453;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_c10a7dfc9d84269124c5114c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.895996;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_75b620578610daefbb73b955.woff')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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_1dd6973b7363af34d0c4d938.woff')format("woff");}.ffc{font-family:ffc;line-height:1.042480;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_3da340421b8895c6f73a5e57.woff')format("woff");}.ffd{font-family:ffd;line-height:0.861816;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_d36bfae3e42629e942c5264b.woff')format("woff");}.ffe{font-family:ffe;line-height:1.082520;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_1133786799e6d5fce73ec1b5.woff')format("woff");}.fff{font-family:fff;line-height:0.976603;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-115.200094px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000005px;}
.ls2{letter-spacing:0.001603px;}
.ls1{letter-spacing:0.014240px;}
.ls6{letter-spacing:107.972165px;}
.ls7{letter-spacing:107.986185px;}
.ls8{letter-spacing:108.000282px;}
.ls5{letter-spacing:108.000426px;}
.ls3{letter-spacing:646.781633px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(64,64,64),0 0.015em rgb(64,64,64),0.015em 0 rgb(64,64,64),0 -0.015em  rgb(64,64,64);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(64,64,64);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf{word-spacing:-35.934000px;}
.ws9{word-spacing:-33.240000px;}
.wsa{word-spacing:-32.040000px;}
.ws5{word-spacing:-31.578002px;}
.ws10{word-spacing:-28.254000px;}
.ws6{word-spacing:-25.764002px;}
.wsb{word-spacing:-25.440000px;}
.wsd{word-spacing:-24.804001px;}
.ws8{word-spacing:-24.408001px;}
.ws0{word-spacing:-24.072000px;}
.wse{word-spacing:-22.896001px;}
.ws4{word-spacing:-21.696001px;}
.ws7{word-spacing:-16.992001px;}
.wsc{word-spacing:-14.958000px;}
.ws2{word-spacing:-13.560000px;}
.ws3{word-spacing:-10.803001px;}
.ws1{word-spacing:0.000000px;}
._1d{margin-left:-3822.889066px;}
._1b{margin-left:-3339.936405px;}
._1a{margin-left:-2882.270415px;}
._f{margin-left:-1585.824688px;}
._3{margin-left:-32.538000px;}
._19{margin-left:-29.988000px;}
._5{margin-left:-12.240000px;}
._c{margin-left:-10.350000px;}
._6{margin-left:-9.078000px;}
._d{margin-left:-7.500000px;}
._11{margin-left:-6.384000px;}
._8{margin-left:-4.410000px;}
._e{margin-left:-3.240000px;}
._9{margin-left:-1.920000px;}
._b{width:1.909559px;}
._16{width:2.925000px;}
._7{width:4.410000px;}
._13{width:6.480000px;}
._12{width:8.568959px;}
._1c{width:10.710000px;}
._4{width:12.240000px;}
._17{width:14.553000px;}
._a{width:17.280001px;}
._18{width:29.556000px;}
._2{width:32.538000px;}
._0{width:82.368002px;}
._1{width:87.648002px;}
._10{width:108.010227px;}
._15{width:794.371597px;}
._14{width:834.665603px;}
.fcf{color:rgb(32,33,34);}
.fce{color:rgb(34,34,34);}
.fcd{color:rgb(204,0,0);}
.fc0{color:rgb(89,89,89);}
.fc6{color:rgb(64,64,64);}
.fc8{color:rgb(255,255,255);}
.fca{color:rgb(51,51,51);}
.fcc{color:rgb(74,74,74);}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(0,73,132);}
.fc9{color:rgb(0,0,0);}
.fcb{color:rgb(0,113,188);}
.fc3{color:rgb(36,75,116);}
.fc4{color:transparent;}
.fc5{color:rgb(0,151,167);}
.fc7{color:rgb(255,0,125);}
.fs1e{font-size:36.000001px;}
.fsa{font-size:39.000003px;}
.fs12{font-size:42.000000px;}
.fs13{font-size:45.000001px;}
.fs5{font-size:48.000003px;}
.fs18{font-size:54.000002px;}
.fs4{font-size:60.000000px;}
.fs0{font-size:72.000002px;}
.fs1b{font-size:75.097505px;}
.fse{font-size:78.000005px;}
.fsd{font-size:84.000000px;}
.fs1a{font-size:88.350010px;}
.fsc{font-size:90.000003px;}
.fs1{font-size:96.000006px;}
.fs16{font-size:99.000003px;}
.fs2{font-size:102.000000px;}
.fs17{font-size:108.000003px;}
.fs1f{font-size:111.000001px;}
.fs10{font-size:114.000007px;}
.fs1c{font-size:117.000004px;}
.fs19{font-size:120.000001px;}
.fs3{font-size:126.000004px;}
.fs14{font-size:132.000007px;}
.fs1d{font-size:135.000004px;}
.fs15{font-size:138.000001px;}
.fs7{font-size:144.000005px;}
.fs9{font-size:149.999999px;}
.fsf{font-size:156.000011px;}
.fs20{font-size:158.999999px;}
.fs11{font-size:167.999999px;}
.fs6{font-size:174.000012px;}
.fsb{font-size:180.000006px;}
.fs8{font-size:299.999998px;}
.y1f{bottom:-9.599825px;}
.y0{bottom:0.000000px;}
.y15{bottom:51.308735px;}
.y21{bottom:73.469165px;}
.y2b{bottom:74.889433px;}
.y49{bottom:75.844110px;}
.y55{bottom:78.724108px;}
.yab{bottom:80.114856px;}
.y9c{bottom:82.174821px;}
.yc4{bottom:83.012012px;}
.y20{bottom:85.169166px;}
.y6c{bottom:86.847196px;}
.y48{bottom:89.344111px;}
.y59{bottom:90.149048px;}
.yba{bottom:91.076800px;}
.y37{bottom:91.605370px;}
.y47{bottom:93.377533px;}
.ye3{bottom:93.787206px;}
.y70{bottom:96.004232px;}
.y85{bottom:96.489662px;}
.yd1{bottom:97.055117px;}
.y60{bottom:98.417582px;}
.yb1{bottom:98.474057px;}
.yc3{bottom:101.642013px;}
.y7c{bottom:103.880774px;}
.y3e{bottom:104.238175px;}
.y84{bottom:109.089661px;}
.yc8{bottom:114.057019px;}
.yb{bottom:117.972749px;}
.yaa{bottom:121.509626px;}
.y83{bottom:121.689659px;}
.y8f{bottom:121.795927px;}
.y5f{bottom:121.817583px;}
.y6b{bottom:122.654729px;}
.yb0{bottom:123.674053px;}
.yc7{bottom:124.857018px;}
.y36{bottom:125.805360px;}
.y6f{bottom:127.054229px;}
.y1e{bottom:128.110631px;}
.ye2{bottom:131.047196px;}
.y3d{bottom:135.288172px;}
.y7b{bottom:136.280775px;}
.yde{bottom:141.687867px;}
.yd7{bottom:144.742544px;}
.y5e{bottom:145.217578px;}
.y6a{bottom:147.854724px;}
.ya9{bottom:148.419615px;}
.yaf{bottom:148.874059px;}
.y6e{bottom:158.104229px;}
.y8e{bottom:159.595906px;}
.y35{bottom:160.005361px;}
.y2a{bottom:163.874888px;}
.y3c{bottom:166.338172px;}
.y96{bottom:167.270183px;}
.y54{bottom:168.125651px;}
.ye1{bottom:168.307208px;}
.y7a{bottom:168.680776px;}
.y69{bottom:173.054722px;}
.y1d{bottom:173.110632px;}
.yae{bottom:174.074053px;}
.ya8{bottom:175.329616px;}
.y45{bottom:179.000660px;}
.ya{bottom:179.172746px;}
.yc2{bottom:185.110276px;}
.y6d{bottom:189.154225px;}
.y29{bottom:192.674900px;}
.y53{bottom:192.965652px;}
.y5d{bottom:194.177577px;}
.y3b{bottom:197.388168px;}
.y8d{bottom:197.395873px;}
.yad{bottom:199.274052px;}
.y68{bottom:199.685957px;}
.y79{bottom:201.080766px;}
.ya7{bottom:202.239606px;}
.yd0{bottom:204.932271px;}
.ye0{bottom:205.567210px;}
.y95{bottom:208.670173px;}
.y9{bottom:209.772741px;}
.ydd{bottom:212.067847px;}
.y52{bottom:217.805653px;}
.y1c{bottom:218.110634px;}
.yc1{bottom:220.300278px;}
.yd6{bottom:226.207349px;}
.y34{bottom:228.405340px;}
.y44{bottom:228.680673px;}
.ya6{bottom:229.149607px;}
.y78{bottom:233.480767px;}
.y8c{bottom:235.195852px;}
.y8{bottom:240.372736px;}
.y67{bottom:242.885958px;}
.ycf{bottom:245.297283px;}
.y94{bottom:250.070186px;}
.y28{bottom:250.274914px;}
.yc0{bottom:255.490279px;}
.ya5{bottom:256.059608px;}
.yb9{bottom:257.566826px;}
.y33{bottom:262.605341px;}
.y1b{bottom:263.110635px;}
.y77{bottom:265.880775px;}
.y51{bottom:267.485655px;}
.y7{bottom:270.972734px;}
.y8b{bottom:272.995853px;}
.y87{bottom:273.284629px;}
.yd5{bottom:273.907339px;}
.y27{bottom:279.074914px;}
.ydc{bottom:282.447849px;}
.yb8{bottom:282.766816px;}
.ya4{bottom:282.969608px;}
.y40{bottom:285.458969px;}
.y66{bottom:286.085948px;}
.ybf{bottom:290.680280px;}
.y93{bottom:291.470176px;}
.y50{bottom:292.325655px;}
.y75{bottom:293.770205px;}
.y32{bottom:296.805343px;}
.y76{bottom:298.280780px;}
.y26{bottom:307.874910px;}
.yb7{bottom:307.966817px;}
.y86{bottom:309.284630px;}
.ya3{bottom:309.879605px;}
.y8a{bottom:310.795860px;}
.yce{bottom:312.257280px;}
.y4f{bottom:317.165656px;}
.yd4{bottom:321.607334px;}
.y3f{bottom:323.078965px;}
.ybe{bottom:325.870281px;}
.y65{bottom:329.285950px;}
.y31{bottom:331.005332px;}
.y1a{bottom:331.510637px;}
.y92{bottom:332.870173px;}
.yb6{bottom:333.166806px;}
.ydb{bottom:335.637862px;}
.ya2{bottom:336.789603px;}
.y74{bottom:336.970184px;}
.y43{bottom:337.850676px;}
.y4e{bottom:342.005668px;}
.ycd{bottom:344.657275px;}
.y89{bottom:348.595855px;}
.y14{bottom:350.143473px;}
.yb5{bottom:358.366801px;}
.ybd{bottom:361.060282px;}
.ya1{bottom:363.699602px;}
.y25{bottom:365.114917px;}
.y30{bottom:365.205340px;}
.y4d{bottom:366.845669px;}
.y13{bottom:368.143474px;}
.y6{bottom:368.371055px;}
.yd3{bottom:369.307331px;}
.y64{bottom:372.485929px;}
.y91{bottom:374.270168px;}
.ycc{bottom:377.237276px;}
.y7e{bottom:378.943337px;}
.y73{bottom:380.170163px;}
.yb4{bottom:383.566808px;}
.y12{bottom:386.143474px;}
.y88{bottom:386.395857px;}
.y42{bottom:387.530667px;}
.yda{bottom:388.827864px;}
.ya0{bottom:390.609601px;}
.y24{bottom:391.394918px;}
.y4c{bottom:391.685659px;}
.y7d{bottom:395.143339px;}
.ybc{bottom:396.250280px;}
.y3a{bottom:397.602394px;}
.y2f{bottom:399.405346px;}
.y5{bottom:401.491057px;}
.y82{bottom:402.672998px;}
.y11{bottom:404.143475px;}
.y5c{bottom:407.577999px;}
.yb3{bottom:408.766802px;}
.y23{bottom:415.514920px;}
.y63{bottom:415.685908px;}
.y4b{bottom:416.525659px;}
.yd2{bottom:417.007321px;}
.y19{bottom:419.766748px;}
.y10{bottom:422.143475px;}
.y72{bottom:423.370158px;}
.yd9{bottom:424.017854px;}
.ybb{bottom:431.440275px;}
.y81{bottom:431.472990px;}
.y39{bottom:431.802395px;}
.y2e{bottom:433.605347px;}
.yb2{bottom:433.966800px;}
.y4{bottom:434.611063px;}
.y41{bottom:437.210668px;}
.yf{bottom:440.143476px;}
.ye{bottom:458.143476px;}
.y62{bottom:458.885903px;}
.y5b{bottom:459.552990px;}
.y80{bottom:460.272989px;}
.y71{bottom:466.570154px;}
.y3{bottom:467.731070px;}
.y2d{bottom:467.805348px;}
.ycb{bottom:468.711755px;}
.y9f{bottom:470.258394px;}
.y9b{bottom:474.978329px;}
.yd{bottom:476.143477px;}
.y90{bottom:477.598933px;}
.y97{bottom:479.514489px;}
.yc6{bottom:496.727017px;}
.y2{bottom:500.851066px;}
.y61{bottom:502.085899px;}
.y9e{bottom:505.358388px;}
.yca{bottom:509.076745px;}
.y58{bottom:509.607994px;}
.y18{bottom:509.766733px;}
.y9a{bottom:512.238342px;}
.y46{bottom:512.691496px;}
.yd8{bottom:521.397857px;}
.y38{bottom:521.605869px;}
.yac{bottom:521.908733px;}
.y2c{bottom:524.485865px;}
.y98{bottom:529.224212px;}
.y16{bottom:529.937833px;}
.y56{bottom:530.005036px;}
.y1{bottom:532.711063px;}
.y17{bottom:535.853383px;}
.y5a{bottom:536.042593px;}
.y7f{bottom:538.159253px;}
.yc5{bottom:540.197010px;}
.y57{bottom:540.207991px;}
.y9d{bottom:540.458385px;}
.y22{bottom:541.758662px;}
.y4a{bottom:543.626927px;}
.ydf{bottom:548.092792px;}
.yc{bottom:549.173388px;}
.yc9{bottom:549.441746px;}
.y99{bottom:549.498343px;}
.h3b{height:26.244141px;}
.hf{height:28.431154px;}
.h1f{height:30.618164px;}
.h9{height:34.992190px;}
.h1c{height:36.562501px;}
.h30{height:39.366212px;}
.h8{height:41.718750px;}
.h7{height:43.066407px;}
.h2b{height:43.189455px;}
.he{height:52.488283px;}
.h12{height:55.986332px;}
.h25{height:56.862309px;}
.h24{height:61.154297px;}
.h27{height:61.236328px;}
.h28{height:61.523439px;}
.h36{height:63.987757px;}
.h11{height:64.599611px;}
.h1d{height:65.088002px;}
.h1e{height:67.248002px;}
.h1{height:67.824002px;}
.h35{height:68.250000px;}
.h13{height:68.906254px;}
.h14{height:69.890629px;}
.h2e{height:70.741850px;}
.h33{height:73.476005px;}
.h21{height:75.936000px;}
.h26{height:77.519534px;}
.h2a{height:78.626956px;}
.h29{height:78.732424px;}
.h37{height:79.128000px;}
.h18{height:81.826177px;}
.h19{height:83.106450px;}
.h2d{height:83.225710px;}
.h15{height:86.784005px;}
.h3{height:87.648006px;}
.h23{height:89.496003px;}
.h16{height:89.664006px;}
.h2{height:90.432006px;}
.h20{height:91.781255px;}
.h4{height:92.208000px;}
.h39{height:93.126000px;}
.h5{height:95.268000px;}
.h38{height:96.084000px;}
.h40{height:98.604003px;}
.h2f{height:101.736003px;}
.h1b{height:103.359378px;}
.h3d{height:104.562001px;}
.h32{height:106.821003px;}
.h17{height:108.468758px;}
.h3c{height:109.278003px;}
.hd{height:109.499999px;}
.h31{height:110.214004px;}
.h3e{height:110.554687px;}
.h2c{height:113.040001px;}
.h3a{height:115.038004px;}
.h1a{height:116.812500px;}
.h6{height:117.684004px;}
.ha{height:120.984383px;}
.h34{height:123.255004px;}
.h10{height:125.156254px;}
.h22{height:128.892001px;}
.hb{height:134.496004px;}
.h3f{height:162.516011px;}
.hc{height:215.332030px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x11{left:20.170275px;}
.x15{left:31.405512px;}
.x16{left:40.721458px;}
.x1f{left:41.722443px;}
.x17{left:43.544292px;}
.x1e{left:45.070902px;}
.x18{left:46.600396px;}
.x1b{left:47.617297px;}
.x48{left:49.244260px;}
.x19{left:50.763782px;}
.x1a{left:53.669292px;}
.x4e{left:57.770672px;}
.x9{left:58.999018px;}
.x45{left:62.972107px;}
.xc{left:64.759809px;}
.x8{left:66.700303px;}
.x55{left:72.832058px;}
.x1{left:77.545278px;}
.x33{left:80.028545px;}
.x1c{left:85.638783px;}
.x49{left:88.018807px;}
.x4b{left:90.464533px;}
.x44{left:95.143914px;}
.x2{left:104.545279px;}
.x35{left:107.297781px;}
.x50{left:108.609551px;}
.x36{left:111.371108px;}
.x34{left:134.521969px;}
.x2d{left:163.714867px;}
.xe{left:175.170572px;}
.xb{left:177.345489px;}
.x37{left:206.320878px;}
.xd{left:207.520297px;}
.x28{left:219.301196px;}
.x3d{left:237.098843px;}
.x3e{left:241.969631px;}
.x2b{left:243.783013px;}
.x47{left:264.022156px;}
.x51{left:273.817843px;}
.x29{left:326.103029px;}
.x46{left:330.887770px;}
.x3b{left:360.100395px;}
.x52{left:371.967537px;}
.x53{left:383.155516px;}
.x3{left:390.206285px;}
.x59{left:391.245679px;}
.x4{left:401.777912px;}
.x5{left:412.100664px;}
.x3c{left:429.942861px;}
.x39{left:431.193929px;}
.x4a{left:432.670559px;}
.x38{left:435.082671px;}
.x40{left:458.804568px;}
.x2a{left:464.261224px;}
.x56{left:491.247204px;}
.x4d{left:502.496364px;}
.x1d{left:506.016556px;}
.x57{left:515.205677px;}
.x2c{left:518.925133px;}
.x3a{left:524.861202px;}
.x7{left:540.000614px;}
.x43{left:564.877121px;}
.x54{left:574.941671px;}
.x41{left:581.039535px;}
.x22{left:593.109126px;}
.x21{left:594.999083px;}
.x23{left:598.149207px;}
.x20{left:599.895141px;}
.x26{left:602.127082px;}
.x25{left:614.727028px;}
.x3f{left:616.591561px;}
.x12{left:618.938986px;}
.x4f{left:622.524716px;}
.x42{left:626.152576px;}
.x13{left:635.446769px;}
.x14{left:655.746141px;}
.xf{left:660.596466px;}
.xa{left:694.423260px;}
.x31{left:700.756054px;}
.x30{left:703.511871px;}
.x2e{left:717.696203px;}
.x24{left:739.647451px;}
.x32{left:745.750613px;}
.x4c{left:750.327774px;}
.x2f{left:758.042563px;}
.x10{left:833.177820px;}
.x27{left:889.785726px;}
.x6{left:954.491318px;}
.x58{left:1016.832607px;}
@media print{
.v1{vertical-align:-102.400083pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000004pt;}
.ls2{letter-spacing:0.001425pt;}
.ls1{letter-spacing:0.012657pt;}
.ls6{letter-spacing:95.975258pt;}
.ls7{letter-spacing:95.987720pt;}
.ls8{letter-spacing:96.000251pt;}
.ls5{letter-spacing:96.000379pt;}
.ls3{letter-spacing:574.917007pt;}
.wsf{word-spacing:-31.941333pt;}
.ws9{word-spacing:-29.546667pt;}
.wsa{word-spacing:-28.480000pt;}
.ws5{word-spacing:-28.069335pt;}
.ws10{word-spacing:-25.114667pt;}
.ws6{word-spacing:-22.901335pt;}
.wsb{word-spacing:-22.613333pt;}
.wsd{word-spacing:-22.048001pt;}
.ws8{word-spacing:-21.696001pt;}
.ws0{word-spacing:-21.397333pt;}
.wse{word-spacing:-20.352001pt;}
.ws4{word-spacing:-19.285335pt;}
.ws7{word-spacing:-15.104000pt;}
.wsc{word-spacing:-13.296000pt;}
.ws2{word-spacing:-12.053333pt;}
.ws3{word-spacing:-9.602667pt;}
.ws1{word-spacing:0.000000pt;}
._1d{margin-left:-3398.123614pt;}
._1b{margin-left:-2968.832360pt;}
._1a{margin-left:-2562.018147pt;}
._f{margin-left:-1409.621945pt;}
._3{margin-left:-28.922667pt;}
._19{margin-left:-26.656000pt;}
._5{margin-left:-10.880000pt;}
._c{margin-left:-9.200000pt;}
._6{margin-left:-8.069333pt;}
._d{margin-left:-6.666667pt;}
._11{margin-left:-5.674667pt;}
._8{margin-left:-3.920000pt;}
._e{margin-left:-2.880000pt;}
._9{margin-left:-1.706667pt;}
._b{width:1.697386pt;}
._16{width:2.600000pt;}
._7{width:3.920000pt;}
._13{width:5.760000pt;}
._12{width:7.616852pt;}
._1c{width:9.520000pt;}
._4{width:10.880000pt;}
._17{width:12.936000pt;}
._a{width:15.360000pt;}
._18{width:26.272000pt;}
._2{width:28.922667pt;}
._0{width:73.216002pt;}
._1{width:77.909335pt;}
._10{width:96.009090pt;}
._15{width:706.108087pt;}
._14{width:741.924980pt;}
.fs1e{font-size:32.000001pt;}
.fsa{font-size:34.666669pt;}
.fs12{font-size:37.333333pt;}
.fs13{font-size:40.000001pt;}
.fs5{font-size:42.666669pt;}
.fs18{font-size:48.000002pt;}
.fs4{font-size:53.333334pt;}
.fs0{font-size:64.000002pt;}
.fs1b{font-size:66.753338pt;}
.fse{font-size:69.333338pt;}
.fsd{font-size:74.666666pt;}
.fs1a{font-size:78.533343pt;}
.fsc{font-size:80.000003pt;}
.fs1{font-size:85.333339pt;}
.fs16{font-size:88.000003pt;}
.fs2{font-size:90.666667pt;}
.fs17{font-size:96.000003pt;}
.fs1f{font-size:98.666667pt;}
.fs10{font-size:101.333339pt;}
.fs1c{font-size:104.000003pt;}
.fs19{font-size:106.666667pt;}
.fs3{font-size:112.000004pt;}
.fs14{font-size:117.333340pt;}
.fs1d{font-size:120.000004pt;}
.fs15{font-size:122.666668pt;}
.fs7{font-size:128.000004pt;}
.fs9{font-size:133.333332pt;}
.fsf{font-size:138.666676pt;}
.fs20{font-size:141.333333pt;}
.fs11{font-size:149.333333pt;}
.fs6{font-size:154.666677pt;}
.fsb{font-size:160.000005pt;}
.fs8{font-size:266.666665pt;}
.y1f{bottom:-8.533178pt;}
.y0{bottom:0.000000pt;}
.y15{bottom:45.607764pt;}
.y21{bottom:65.305925pt;}
.y2b{bottom:66.568385pt;}
.y49{bottom:67.416987pt;}
.y55{bottom:69.976985pt;}
.yab{bottom:71.213205pt;}
.y9c{bottom:73.044285pt;}
.yc4{bottom:73.788455pt;}
.y20{bottom:75.705925pt;}
.y6c{bottom:77.197507pt;}
.y48{bottom:79.416987pt;}
.y59{bottom:80.132487pt;}
.yba{bottom:80.957155pt;}
.y37{bottom:81.426995pt;}
.y47{bottom:83.002251pt;}
.ye3{bottom:83.366405pt;}
.y70{bottom:85.337095pt;}
.y85{bottom:85.768588pt;}
.yd1{bottom:86.271215pt;}
.y60{bottom:87.482296pt;}
.yb1{bottom:87.532496pt;}
.yc3{bottom:90.348456pt;}
.y7c{bottom:92.338466pt;}
.y3e{bottom:92.656156pt;}
.y84{bottom:96.968588pt;}
.yc8{bottom:101.384017pt;}
.yb{bottom:104.864666pt;}
.yaa{bottom:108.008556pt;}
.y83{bottom:108.168586pt;}
.y8f{bottom:108.263046pt;}
.y5f{bottom:108.282296pt;}
.y6b{bottom:109.026426pt;}
.yb0{bottom:109.932491pt;}
.yc7{bottom:110.984016pt;}
.y36{bottom:111.826986pt;}
.y6f{bottom:112.937092pt;}
.y1e{bottom:113.876116pt;}
.ye2{bottom:116.486396pt;}
.y3d{bottom:120.256153pt;}
.y7b{bottom:121.138467pt;}
.yde{bottom:125.944771pt;}
.yd7{bottom:128.660039pt;}
.y5e{bottom:129.082292pt;}
.y6a{bottom:131.426421pt;}
.ya9{bottom:131.928547pt;}
.yaf{bottom:132.332497pt;}
.y6e{bottom:140.537092pt;}
.y8e{bottom:141.863027pt;}
.y35{bottom:142.226987pt;}
.y2a{bottom:145.666567pt;}
.y3c{bottom:147.856152pt;}
.y96{bottom:148.684607pt;}
.y54{bottom:149.445024pt;}
.ye1{bottom:149.606408pt;}
.y7a{bottom:149.938468pt;}
.y69{bottom:153.826420pt;}
.y1d{bottom:153.876118pt;}
.yae{bottom:154.732492pt;}
.ya8{bottom:155.848548pt;}
.y45{bottom:159.111698pt;}
.ya{bottom:159.264663pt;}
.yc2{bottom:164.542468pt;}
.y6d{bottom:168.137089pt;}
.y29{bottom:171.266578pt;}
.y53{bottom:171.525024pt;}
.y5d{bottom:172.602290pt;}
.y3b{bottom:175.456149pt;}
.y8d{bottom:175.462998pt;}
.yad{bottom:177.132490pt;}
.y68{bottom:177.498628pt;}
.y79{bottom:178.738458pt;}
.ya7{bottom:179.768538pt;}
.yd0{bottom:182.162019pt;}
.ye0{bottom:182.726409pt;}
.y95{bottom:185.484599pt;}
.y9{bottom:186.464659pt;}
.ydd{bottom:188.504753pt;}
.y52{bottom:193.605025pt;}
.y1c{bottom:193.876119pt;}
.yc1{bottom:195.822469pt;}
.yd6{bottom:201.073199pt;}
.y34{bottom:203.026969pt;}
.y44{bottom:203.271709pt;}
.ya6{bottom:203.688539pt;}
.y78{bottom:207.538459pt;}
.y8c{bottom:209.062979pt;}
.y8{bottom:213.664655pt;}
.y67{bottom:215.898630pt;}
.ycf{bottom:218.042030pt;}
.y94{bottom:222.284610pt;}
.y28{bottom:222.466590pt;}
.yc0{bottom:227.102470pt;}
.ya5{bottom:227.608540pt;}
.yb9{bottom:228.948290pt;}
.y33{bottom:233.426970pt;}
.y1b{bottom:233.876120pt;}
.y77{bottom:236.338466pt;}
.y51{bottom:237.765026pt;}
.y7{bottom:240.864652pt;}
.y8b{bottom:242.662980pt;}
.y87{bottom:242.919670pt;}
.yd5{bottom:243.473191pt;}
.y27{bottom:248.066591pt;}
.ydc{bottom:251.064755pt;}
.yb8{bottom:251.348281pt;}
.ya4{bottom:251.528541pt;}
.y40{bottom:253.741306pt;}
.y66{bottom:254.298621pt;}
.ybf{bottom:258.382471pt;}
.y93{bottom:259.084601pt;}
.y50{bottom:259.845027pt;}
.y75{bottom:261.129071pt;}
.y32{bottom:263.826971pt;}
.y76{bottom:265.138471pt;}
.y26{bottom:273.666586pt;}
.yb7{bottom:273.748281pt;}
.y86{bottom:274.919672pt;}
.ya3{bottom:275.448538pt;}
.y8a{bottom:276.262987pt;}
.yce{bottom:277.562027pt;}
.y4f{bottom:281.925028pt;}
.yd4{bottom:285.873186pt;}
.y3f{bottom:287.181302pt;}
.ybe{bottom:289.662472pt;}
.y65{bottom:292.698622pt;}
.y31{bottom:294.226962pt;}
.y1a{bottom:294.676122pt;}
.y92{bottom:295.884598pt;}
.yb6{bottom:296.148272pt;}
.ydb{bottom:298.344766pt;}
.ya2{bottom:299.368536pt;}
.y74{bottom:299.529052pt;}
.y43{bottom:300.311712pt;}
.y4e{bottom:304.005038pt;}
.ycd{bottom:306.362023pt;}
.y89{bottom:309.862983pt;}
.y14{bottom:311.238643pt;}
.yb5{bottom:318.548268pt;}
.ybd{bottom:320.942473pt;}
.ya1{bottom:323.288535pt;}
.y25{bottom:324.546593pt;}
.y30{bottom:324.626969pt;}
.y4d{bottom:326.085039pt;}
.y13{bottom:327.238643pt;}
.y6{bottom:327.440938pt;}
.yd3{bottom:328.273183pt;}
.y64{bottom:331.098603pt;}
.y91{bottom:332.684593pt;}
.ycc{bottom:335.322023pt;}
.y7e{bottom:336.838521pt;}
.y73{bottom:337.929034pt;}
.yb4{bottom:340.948274pt;}
.y12{bottom:343.238644pt;}
.y88{bottom:343.462984pt;}
.y42{bottom:344.471704pt;}
.yda{bottom:345.624768pt;}
.ya0{bottom:347.208534pt;}
.y24{bottom:347.906594pt;}
.y4c{bottom:348.165030pt;}
.y7d{bottom:351.238524pt;}
.ybc{bottom:352.222471pt;}
.y3a{bottom:353.424350pt;}
.y2f{bottom:355.026974pt;}
.y5{bottom:356.880939pt;}
.y82{bottom:357.931554pt;}
.y11{bottom:359.238644pt;}
.y5c{bottom:362.291554pt;}
.yb3{bottom:363.348268pt;}
.y23{bottom:369.346596pt;}
.y63{bottom:369.498585pt;}
.y4b{bottom:370.245031pt;}
.yd2{bottom:370.673175pt;}
.y19{bottom:373.125999pt;}
.y10{bottom:375.238645pt;}
.y72{bottom:376.329030pt;}
.yd9{bottom:376.904759pt;}
.ybb{bottom:383.502467pt;}
.y81{bottom:383.531547pt;}
.y39{bottom:383.824351pt;}
.y2e{bottom:385.426975pt;}
.yb2{bottom:385.748267pt;}
.y4{bottom:386.320945pt;}
.y41{bottom:388.631705pt;}
.yf{bottom:391.238645pt;}
.ye{bottom:407.238646pt;}
.y62{bottom:407.898581pt;}
.y5b{bottom:408.491547pt;}
.y80{bottom:409.131546pt;}
.y71{bottom:414.729026pt;}
.y3{bottom:415.760951pt;}
.y2d{bottom:415.826976pt;}
.ycb{bottom:416.632671pt;}
.y9f{bottom:418.007461pt;}
.y9b{bottom:422.202959pt;}
.yd{bottom:423.238646pt;}
.y90{bottom:424.532385pt;}
.y97{bottom:426.235101pt;}
.yc6{bottom:441.535126pt;}
.y2{bottom:445.200948pt;}
.y61{bottom:446.298577pt;}
.y9e{bottom:449.207456pt;}
.yca{bottom:452.512662pt;}
.y58{bottom:452.984883pt;}
.y18{bottom:453.125985pt;}
.y9a{bottom:455.322970pt;}
.y46{bottom:455.725774pt;}
.yd8{bottom:463.464762pt;}
.y38{bottom:463.649662pt;}
.yac{bottom:463.918874pt;}
.y2c{bottom:466.209658pt;}
.y98{bottom:470.421522pt;}
.y16{bottom:471.055852pt;}
.y56{bottom:471.115588pt;}
.y1{bottom:473.520945pt;}
.y17{bottom:476.314118pt;}
.y5a{bottom:476.482305pt;}
.y7f{bottom:478.363780pt;}
.yc5{bottom:480.175120pt;}
.y57{bottom:480.184881pt;}
.y9d{bottom:480.407453pt;}
.y22{bottom:481.563255pt;}
.y4a{bottom:483.223935pt;}
.ydf{bottom:487.193593pt;}
.yc{bottom:488.154122pt;}
.yc9{bottom:488.392663pt;}
.y99{bottom:488.442971pt;}
.h3b{height:23.328126pt;}
.hf{height:25.272137pt;}
.h1f{height:27.216146pt;}
.h9{height:31.104169pt;}
.h1c{height:32.500001pt;}
.h30{height:34.992189pt;}
.h8{height:37.083334pt;}
.h7{height:38.281250pt;}
.h2b{height:38.390626pt;}
.he{height:46.656251pt;}
.h12{height:49.765629pt;}
.h25{height:50.544274pt;}
.h24{height:54.359375pt;}
.h27{height:54.432291pt;}
.h28{height:54.687502pt;}
.h36{height:56.878007pt;}
.h11{height:57.421877pt;}
.h1d{height:57.856002pt;}
.h1e{height:59.776002pt;}
.h1{height:60.288002pt;}
.h35{height:60.666666pt;}
.h13{height:61.250004pt;}
.h14{height:62.125004pt;}
.h2e{height:62.881645pt;}
.h33{height:65.312005pt;}
.h21{height:67.498666pt;}
.h26{height:68.906252pt;}
.h2a{height:69.890627pt;}
.h29{height:69.984377pt;}
.h37{height:70.336000pt;}
.h18{height:72.734379pt;}
.h19{height:73.872400pt;}
.h2d{height:73.978409pt;}
.h15{height:77.141338pt;}
.h3{height:77.909338pt;}
.h23{height:79.552003pt;}
.h16{height:79.701338pt;}
.h2{height:80.384005pt;}
.h20{height:81.583338pt;}
.h4{height:81.962667pt;}
.h39{height:82.778667pt;}
.h5{height:84.682667pt;}
.h38{height:85.408000pt;}
.h40{height:87.648003pt;}
.h2f{height:90.432003pt;}
.h1b{height:91.875003pt;}
.h3d{height:92.944000pt;}
.h32{height:94.952003pt;}
.h17{height:96.416673pt;}
.h3c{height:97.136003pt;}
.hd{height:97.333333pt;}
.h31{height:97.968003pt;}
.h3e{height:98.270833pt;}
.h2c{height:100.480001pt;}
.h3a{height:102.256003pt;}
.h1a{height:103.833333pt;}
.h6{height:104.608003pt;}
.ha{height:107.541674pt;}
.h34{height:109.560004pt;}
.h10{height:111.250004pt;}
.h22{height:114.570668pt;}
.hb{height:119.552004pt;}
.h3f{height:144.458676pt;}
.hc{height:191.406248pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x11{left:17.929134pt;}
.x15{left:27.916011pt;}
.x16{left:36.196851pt;}
.x1f{left:37.086616pt;}
.x17{left:38.706037pt;}
.x1e{left:40.063024pt;}
.x18{left:41.422574pt;}
.x1b{left:42.326486pt;}
.x48{left:43.772675pt;}
.x19{left:45.123361pt;}
.x1a{left:47.706038pt;}
.x4e{left:51.351709pt;}
.x9{left:52.443572pt;}
.x45{left:55.975206pt;}
.xc{left:57.564275pt;}
.x8{left:59.289158pt;}
.x55{left:64.739607pt;}
.x1{left:68.929136pt;}
.x33{left:71.136484pt;}
.x1c{left:76.123362pt;}
.x49{left:78.238940pt;}
.x4b{left:80.412919pt;}
.x44{left:84.572368pt;}
.x2{left:92.929137pt;}
.x35{left:95.375805pt;}
.x50{left:96.541823pt;}
.x36{left:98.996540pt;}
.x34{left:119.575084pt;}
.x2d{left:145.524326pt;}
.xe{left:155.707175pt;}
.xb{left:157.640435pt;}
.x37{left:183.396336pt;}
.xd{left:184.462486pt;}
.x28{left:194.934396pt;}
.x3d{left:210.754527pt;}
.x3e{left:215.084117pt;}
.x2b{left:216.696012pt;}
.x47{left:234.686361pt;}
.x51{left:243.393638pt;}
.x29{left:289.869359pt;}
.x46{left:294.122462pt;}
.x3b{left:320.089240pt;}
.x52{left:330.637811pt;}
.x53{left:340.582681pt;}
.x3{left:346.850031pt;}
.x59{left:347.773937pt;}
.x4{left:357.135921pt;}
.x5{left:366.311702pt;}
.x3c{left:382.171432pt;}
.x39{left:383.283492pt;}
.x4a{left:384.596052pt;}
.x38{left:386.740152pt;}
.x40{left:407.826283pt;}
.x2a{left:412.676643pt;}
.x56{left:436.664181pt;}
.x4d{left:446.663434pt;}
.x1d{left:449.792494pt;}
.x57{left:457.960602pt;}
.x2c{left:461.266785pt;}
.x3a{left:466.543291pt;}
.x7{left:480.000545pt;}
.x43{left:502.112996pt;}
.x54{left:511.059263pt;}
.x41{left:516.479587pt;}
.x22{left:527.208112pt;}
.x21{left:528.888074pt;}
.x23{left:531.688184pt;}
.x20{left:533.240125pt;}
.x26{left:535.224073pt;}
.x25{left:546.424024pt;}
.x3f{left:548.081388pt;}
.x12{left:550.167988pt;}
.x4f{left:553.355303pt;}
.x42{left:556.580068pt;}
.x13{left:564.841572pt;}
.x14{left:582.885459pt;}
.xf{left:587.196859pt;}
.xa{left:617.265120pt;}
.x31{left:622.894270pt;}
.x30{left:625.343885pt;}
.x2e{left:637.952180pt;}
.x24{left:657.464401pt;}
.x32{left:662.889434pt;}
.x4c{left:666.958021pt;}
.x2f{left:673.815612pt;}
.x10{left:740.602507pt;}
.x27{left:790.920645pt;}
.x6{left:848.436727pt;}
.x58{left:903.851206pt;}
}




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