
    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_6f5b27593c7bbb35edd2b0ea.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5e827de8b15e4be9bdcd1aa5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.844238;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_334d9deb8dce75e5ca882e6b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_aa5cd624a6c8db9a53e8942a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.675781;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_b66f78ecc6ea9ffa0a00c8c8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.861328;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_c36ec7cad3463970b7d4de5a.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ed43179b942b9b0d635c4340.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.690918;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_7d805a258db0e4a98da015ff.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0838145c25687bcc670f7a9f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d4f5cc364278cea4d05d6879.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_b57510613c1f48b405c149f1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.871094;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_56647642470af47759fb3360.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.871094;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_6429be27a928e8951e9d8e6c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.759766;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_833f11ffa3dde6997ec6c6de.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_b2082bc93d9ded1cbb5af9ea.woff2')format("woff");}.fff{font-family:fff;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_f85b8173b2e12a11db18f020.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.682617;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);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-3.009600px;}
.ls4{letter-spacing:-2.973600px;}
.ls6{letter-spacing:-2.966400px;}
.lsb{letter-spacing:-0.350784px;}
.ls1{letter-spacing:-0.320112px;}
.ls9{letter-spacing:-0.302400px;}
.ls2c{letter-spacing:-0.276480px;}
.ls3{letter-spacing:-0.269568px;}
.lsa{letter-spacing:-0.254016px;}
.ls8{letter-spacing:-0.241920px;}
.ls7{letter-spacing:-0.217728px;}
.ls1f{letter-spacing:-0.205344px;}
.ls2{letter-spacing:-0.202176px;}
.ls10{letter-spacing:-0.193536px;}
.ls26{letter-spacing:-0.178848px;}
.ls25{letter-spacing:-0.165600px;}
.ls2d{letter-spacing:-0.158976px;}
.ls1c{letter-spacing:-0.152352px;}
.ls23{letter-spacing:-0.145728px;}
.ls17{letter-spacing:-0.139104px;}
.ls11{letter-spacing:-0.133056px;}
.lsf{letter-spacing:-0.132480px;}
.ls13{letter-spacing:-0.125856px;}
.ls1d{letter-spacing:-0.112608px;}
.ls22{letter-spacing:-0.105984px;}
.ls20{letter-spacing:-0.099360px;}
.ls15{letter-spacing:-0.092736px;}
.ls14{letter-spacing:-0.086112px;}
.lse{letter-spacing:-0.079488px;}
.ls21{letter-spacing:-0.066240px;}
.ls24{letter-spacing:-0.059616px;}
.ls16{letter-spacing:-0.033120px;}
.ls1e{letter-spacing:-0.021600px;}
.ls27{letter-spacing:-0.019872px;}
.ls0{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.021600px;}
.ls12{letter-spacing:0.032400px;}
.ls30{letter-spacing:0.114624px;}
.ls31{letter-spacing:0.116928px;}
.ls19{letter-spacing:0.187344px;}
.ls33{letter-spacing:0.217152px;}
.ls34{letter-spacing:0.258912px;}
.ls32{letter-spacing:0.275616px;}
.ls2b{letter-spacing:0.292320px;}
.lsd{letter-spacing:0.882288px;}
.ls2e{letter-spacing:49.420656px;}
.ls1b{letter-spacing:49.420800px;}
.ls2f{letter-spacing:49.678560px;}
.ls28{letter-spacing:53.746704px;}
.ls29{letter-spacing:54.645984px;}
.ls2a{letter-spacing:54.880416px;}
.ls1a{letter-spacing:58.927536px;}
.lsc{letter-spacing:323.746560px;}
.ls35{letter-spacing:2179.171728px;}
.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;}
}
.ws0{word-spacing:-38.076480px;}
.ws1{word-spacing:-37.806912px;}
.wsa{word-spacing:-24.440400px;}
.wse{word-spacing:-24.429600px;}
.ws11{word-spacing:-24.386400px;}
.ws18{word-spacing:-19.167840px;}
.ws13{word-spacing:-16.272000px;}
.ws8{word-spacing:-14.970240px;}
.wsd{word-spacing:-14.937120px;}
.ws7{word-spacing:-14.890752px;}
.wsb{word-spacing:-14.884128px;}
.ws17{word-spacing:-14.870880px;}
.ws10{word-spacing:-14.857632px;}
.wsc{word-spacing:-14.837760px;}
.ws19{word-spacing:-14.824512px;}
.wsf{word-spacing:-14.817888px;}
.ws12{word-spacing:-14.791392px;}
.ws1a{word-spacing:-14.764896px;}
.ws9{word-spacing:-13.668480px;}
.ws5{word-spacing:-13.317696px;}
.ws4{word-spacing:-13.305600px;}
.ws2{word-spacing:-13.298400px;}
.ws3{word-spacing:-13.262400px;}
.ws16{word-spacing:-0.066240px;}
.ws15{word-spacing:-0.060480px;}
.ws6{word-spacing:0.000000px;}
.ws14{word-spacing:0.218880px;}
._6{margin-left:-11.360592px;}
._5{margin-left:-10.343088px;}
._4{margin-left:-5.928912px;}
._7{margin-left:-4.321440px;}
._1{margin-left:-3.113280px;}
._a{margin-left:-2.057328px;}
._3{margin-left:-1.055952px;}
._0{width:1.075680px;}
._11{width:2.286720px;}
._b{width:3.378240px;}
._d{width:4.504320px;}
._f{width:6.425280px;}
._12{width:9.273600px;}
._13{width:11.658240px;}
._c{width:12.916800px;}
._9{width:17.951040px;}
._10{width:20.335680px;}
._e{width:28.416960px;}
._2{width:201.029760px;}
._14{width:847.728000px;}
._15{width:849.029760px;}
._8{width:2212.504128px;}
.fc3{color:rgb(5,99,193);}
.fc1{color:rgb(31,78,121);}
.fc4{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:57.600000px;}
.fs4{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs6{font-size:83.520000px;}
.fs5{font-size:108.000000px;}
.fs2{font-size:119.520000px;}
.fs1{font-size:168.480000px;}
.y0{bottom:0.000000px;}
.y15{bottom:4.800000px;}
.y17{bottom:4.920000px;}
.y19{bottom:5.040000px;}
.yd1{bottom:5.220000px;}
.yc7{bottom:5.280000px;}
.yaa{bottom:5.460000px;}
.y8c{bottom:5.760000px;}
.y7e{bottom:5.820000px;}
.y73{bottom:5.880000px;}
.y59{bottom:5.940000px;}
.y116{bottom:6.000000px;}
.ya8{bottom:6.120000px;}
.y4c{bottom:6.240000px;}
.yc5{bottom:6.300000px;}
.y8a{bottom:6.420000px;}
.yf3{bottom:6.480000px;}
.y71{bottom:6.540000px;}
.y57{bottom:6.600000px;}
.y114{bottom:6.660000px;}
.y7c{bottom:6.840000px;}
.y4a{bottom:6.900000px;}
.ydd{bottom:6.960000px;}
.yf1{bottom:7.140000px;}
.ycf{bottom:7.380000px;}
.yfc{bottom:14.280000px;}
.y98{bottom:14.580000px;}
.ye5{bottom:14.700000px;}
.yda{bottom:14.880000px;}
.yca{bottom:14.940000px;}
.ye{bottom:15.000000px;}
.y6e{bottom:15.300000px;}
.yc2{bottom:15.360000px;}
.y87{bottom:15.480000px;}
.ya5{bottom:15.540000px;}
.y79{bottom:15.900000px;}
.y54{bottom:16.020000px;}
.y11{bottom:19.920000px;}
.y10{bottom:38.280000px;}
.y97{bottom:38.700000px;}
.yfb{bottom:38.760000px;}
.ye4{bottom:38.820000px;}
.yd9{bottom:39.000000px;}
.yb3{bottom:39.120000px;}
.y6d{bottom:39.420000px;}
.yc1{bottom:39.480000px;}
.ya4{bottom:39.660000px;}
.y86{bottom:39.960000px;}
.y78{bottom:40.020000px;}
.y53{bottom:40.140000px;}
.yf{bottom:56.640000px;}
.y12{bottom:57.240000px;}
.y23{bottom:57.600000px;}
.y96{bottom:62.820000px;}
.yfa{bottom:62.880000px;}
.ye3{bottom:62.940000px;}
.yd8{bottom:63.120000px;}
.yb2{bottom:63.240000px;}
.yee{bottom:63.300000px;}
.y6c{bottom:63.540000px;}
.ya3{bottom:63.780000px;}
.yc0{bottom:63.960000px;}
.y85{bottom:64.080000px;}
.y8f{bottom:64.140000px;}
.y52{bottom:64.260000px;}
.y77{bottom:64.500000px;}
.y11c{bottom:70.380000px;}
.y95{bottom:86.940000px;}
.yf9{bottom:87.000000px;}
.yd7{bottom:87.240000px;}
.y111{bottom:87.300000px;}
.yb1{bottom:87.360000px;}
.ye2{bottom:87.420000px;}
.y6b{bottom:87.660000px;}
.ya2{bottom:87.900000px;}
.ybf{bottom:88.080000px;}
.y84{bottom:88.200000px;}
.y8e{bottom:88.260000px;}
.y76{bottom:88.620000px;}
.y51{bottom:88.740000px;}
.y11b{bottom:94.500000px;}
.y94{bottom:111.060000px;}
.yf8{bottom:111.120000px;}
.yd6{bottom:111.360000px;}
.y110{bottom:111.420000px;}
.yb0{bottom:111.480000px;}
.ye1{bottom:111.540000px;}
.y6a{bottom:111.780000px;}
.ya1{bottom:112.020000px;}
.ybe{bottom:112.200000px;}
.y83{bottom:112.320000px;}
.y104{bottom:112.380000px;}
.y75{bottom:112.740000px;}
.y50{bottom:112.860000px;}
.y11a{bottom:118.620000px;}
.y93{bottom:135.180000px;}
.yf7{bottom:135.240000px;}
.yd5{bottom:135.480000px;}
.y10f{bottom:135.540000px;}
.yaf{bottom:135.600000px;}
.ye0{bottom:135.660000px;}
.y69{bottom:135.900000px;}
.ya0{bottom:136.140000px;}
.ybd{bottom:136.320000px;}
.y82{bottom:136.440000px;}
.yb8{bottom:136.500000px;}
.y4f{bottom:136.980000px;}
.y119{bottom:142.740000px;}
.yf6{bottom:159.360000px;}
.y10e{bottom:159.660000px;}
.yae{bottom:159.720000px;}
.yed{bottom:159.780000px;}
.yd4{bottom:159.960000px;}
.y68{bottom:160.020000px;}
.y9f{bottom:160.260000px;}
.y81{bottom:160.560000px;}
.yb7{bottom:160.620000px;}
.y4e{bottom:161.100000px;}
.ye6{bottom:165.600000px;}
.y118{bottom:166.860000px;}
.y48{bottom:170.640000px;}
.yf5{bottom:183.480000px;}
.y10d{bottom:183.780000px;}
.yec{bottom:183.900000px;}
.yd3{bottom:184.080000px;}
.yc9{bottom:184.140000px;}
.yad{bottom:184.200000px;}
.y67{bottom:184.500000px;}
.y80{bottom:184.680000px;}
.y9e{bottom:184.740000px;}
.ycc{bottom:190.440000px;}
.ydf{bottom:190.500000px;}
.y47{bottom:192.240000px;}
.y6f{bottom:196.200000px;}
.y10c{bottom:207.900000px;}
.yeb{bottom:208.020000px;}
.yac{bottom:208.320000px;}
.y66{bottom:208.620000px;}
.y9d{bottom:208.860000px;}
.ycb{bottom:213.840000px;}
.y5a{bottom:220.500000px;}
.y46{bottom:226.080000px;}
.y10b{bottom:232.020000px;}
.yea{bottom:232.500000px;}
.y65{bottom:232.740000px;}
.y9c{bottom:232.980000px;}
.yc8{bottom:238.500000px;}
.y45{bottom:247.680000px;}
.y10a{bottom:256.500000px;}
.ye9{bottom:256.620000px;}
.y64{bottom:256.860000px;}
.y9b{bottom:257.100000px;}
.y103{bottom:257.460000px;}
.y44{bottom:269.280000px;}
.y109{bottom:280.620000px;}
.ye8{bottom:280.740000px;}
.y63{bottom:280.980000px;}
.y102{bottom:281.580000px;}
.y108{bottom:304.740000px;}
.y62{bottom:305.100000px;}
.y101{bottom:305.700000px;}
.y43{bottom:307.440000px;}
.y91{bottom:311.040000px;}
.y106{bottom:328.680000px;}
.y61{bottom:329.220000px;}
.y100{bottom:329.820000px;}
.y42{bottom:330.840000px;}
.y90{bottom:334.800000px;}
.yb5{bottom:341.640000px;}
.y105{bottom:352.440000px;}
.y60{bottom:353.700000px;}
.y41{bottom:353.880000px;}
.yde{bottom:355.500000px;}
.y8d{bottom:358.500000px;}
.yb4{bottom:365.400000px;}
.yff{bottom:376.500000px;}
.yfe{bottom:377.280000px;}
.y5f{bottom:377.820000px;}
.y40{bottom:387.720000px;}
.yab{bottom:390.000000px;}
.ydc{bottom:393.000000px;}
.y11d{bottom:396.360000px;}
.yfd{bottom:401.040000px;}
.y5e{bottom:401.940000px;}
.y117{bottom:418.500000px;}
.y3f{bottom:421.200000px;}
.yf4{bottom:426.000000px;}
.y5d{bottom:426.060000px;}
.y3e{bottom:443.160000px;}
.ydb{bottom:449.280000px;}
.y5c{bottom:450.180000px;}
.yc6{bottom:453.000000px;}
.y3d{bottom:464.760000px;}
.yd2{bottom:474.000000px;}
.y5b{bottom:474.300000px;}
.y8b{bottom:477.000000px;}
.yc4{bottom:490.500000px;}
.y3c{bottom:490.680000px;}
.y89{bottom:514.500000px;}
.y3b{bottom:540.000000px;}
.yc3{bottom:545.760000px;}
.y3a{bottom:561.960000px;}
.ybc{bottom:570.000000px;}
.y88{bottom:570.240000px;}
.y7f{bottom:594.000000px;}
.y39{bottom:600.120000px;}
.y115{bottom:615.000000px;}
.y99{bottom:619.920000px;}
.y38{bottom:623.880000px;}
.ya9{bottom:628.500000px;}
.yf2{bottom:639.000000px;}
.y92{bottom:643.500000px;}
.y37{bottom:648.000000px;}
.y113{bottom:652.500000px;}
.ya7{bottom:666.000000px;}
.y36{bottom:672.120000px;}
.yf0{bottom:676.500000px;}
.yd0{bottom:688.500000px;}
.y35{bottom:695.880000px;}
.y112{bottom:708.480000px;}
.y34{bottom:720.000000px;}
.ya6{bottom:721.440000px;}
.y58{bottom:724.500000px;}
.yef{bottom:732.600000px;}
.y107{bottom:733.500000px;}
.ybb{bottom:736.500000px;}
.y33{bottom:744.120000px;}
.y9a{bottom:745.500000px;}
.ye7{bottom:757.500000px;}
.y56{bottom:762.000000px;}
.y22{bottom:768.240000px;}
.yba{bottom:774.000000px;}
.y32{bottom:779.040000px;}
.yce{bottom:781.200000px;}
.yd{bottom:793.080000px;}
.y31{bottom:800.640000px;}
.y21{bottom:802.080000px;}
.ycd{bottom:805.500000px;}
.y7d{bottom:808.500000px;}
.yc{bottom:813.600000px;}
.y55{bottom:817.920000px;}
.y30{bottom:822.240000px;}
.yb9{bottom:829.440000px;}
.y20{bottom:835.920000px;}
.yb{bottom:838.800000px;}
.y4d{bottom:841.500000px;}
.y2f{bottom:844.200000px;}
.y7b{bottom:846.000000px;}
.yb6{bottom:853.500000px;}
.y1f{bottom:865.080000px;}
.y2e{bottom:865.800000px;}
.ya{bottom:878.760000px;}
.y1e{bottom:894.240000px;}
.y2d{bottom:899.640000px;}
.y7a{bottom:901.800000px;}
.y2c{bottom:921.240000px;}
.y1d{bottom:923.400000px;}
.y74{bottom:925.500000px;}
.y9{bottom:936.720000px;}
.y2b{bottom:943.200000px;}
.y1c{bottom:952.920000px;}
.y8{bottom:970.200000px;}
.y2a{bottom:976.680000px;}
.y1b{bottom:978.480000px;}
.y29{bottom:998.640000px;}
.y7{bottom:1004.040000px;}
.y28{bottom:1020.240000px;}
.y1a{bottom:1028.160000px;}
.y4b{bottom:1032.000000px;}
.y6{bottom:1037.880000px;}
.y18{bottom:1044.000000px;}
.y27{bottom:1054.080000px;}
.y16{bottom:1065.000000px;}
.y72{bottom:1068.000000px;}
.y49{bottom:1069.500000px;}
.y5{bottom:1071.720000px;}
.y26{bottom:1075.680000px;}
.y14{bottom:1086.000000px;}
.y25{bottom:1097.640000px;}
.y4{bottom:1105.200000px;}
.y70{bottom:1105.500000px;}
.y24{bottom:1123.200000px;}
.y13{bottom:1129.320000px;}
.y3{bottom:1139.040000px;}
.y2{bottom:1173.960000px;}
.y1{bottom:1194.120000px;}
.h9{height:21.000000px;}
.h17{height:22.500000px;}
.hd{height:24.000000px;}
.h7{height:41.343750px;}
.hb{height:42.000000px;}
.h19{height:43.500000px;}
.ha{height:45.022500px;}
.h2{height:47.545313px;}
.h5{height:47.988281px;}
.hc{height:57.868594px;}
.h6{height:72.000000px;}
.h8{height:73.828125px;}
.h4{height:79.660547px;}
.h12{height:105.000000px;}
.h3{height:112.292578px;}
.h10{height:129.000000px;}
.h13{height:151.500000px;}
.h16{height:153.000000px;}
.he{height:177.000000px;}
.h1e{height:183.000000px;}
.h1b{height:199.500000px;}
.h11{height:201.000000px;}
.h15{height:225.000000px;}
.h18{height:249.000000px;}
.h14{height:273.000000px;}
.h1a{height:297.000000px;}
.h1d{height:321.000000px;}
.h1c{height:346.500000px;}
.hf{height:490.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:207.000000px;}
.w2{width:375.000000px;}
.w4{width:469.500000px;}
.w5{width:667.500000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.xa{left:8.640036px;}
.xf{left:12.239856px;}
.x10{left:39.089736px;}
.x6{left:40.138548px;}
.x11{left:65.789820px;}
.x7{left:74.727204px;}
.x12{left:93.314952px;}
.x1{left:108.000000px;}
.xe{left:117.000000px;}
.x13{left:120.239856px;}
.xc{left:135.000000px;}
.x8{left:143.970360px;}
.x9{left:150.176880px;}
.xd{left:162.000000px;}
.x5{left:259.500000px;}
.x2{left:265.442148px;}
.xb{left:315.000000px;}
.x4{left:403.304400px;}
.x3{left:446.474880px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-2.675200pt;}
.ls4{letter-spacing:-2.643200pt;}
.ls6{letter-spacing:-2.636800pt;}
.lsb{letter-spacing:-0.311808pt;}
.ls1{letter-spacing:-0.284544pt;}
.ls9{letter-spacing:-0.268800pt;}
.ls2c{letter-spacing:-0.245760pt;}
.ls3{letter-spacing:-0.239616pt;}
.lsa{letter-spacing:-0.225792pt;}
.ls8{letter-spacing:-0.215040pt;}
.ls7{letter-spacing:-0.193536pt;}
.ls1f{letter-spacing:-0.182528pt;}
.ls2{letter-spacing:-0.179712pt;}
.ls10{letter-spacing:-0.172032pt;}
.ls26{letter-spacing:-0.158976pt;}
.ls25{letter-spacing:-0.147200pt;}
.ls2d{letter-spacing:-0.141312pt;}
.ls1c{letter-spacing:-0.135424pt;}
.ls23{letter-spacing:-0.129536pt;}
.ls17{letter-spacing:-0.123648pt;}
.ls11{letter-spacing:-0.118272pt;}
.lsf{letter-spacing:-0.117760pt;}
.ls13{letter-spacing:-0.111872pt;}
.ls1d{letter-spacing:-0.100096pt;}
.ls22{letter-spacing:-0.094208pt;}
.ls20{letter-spacing:-0.088320pt;}
.ls15{letter-spacing:-0.082432pt;}
.ls14{letter-spacing:-0.076544pt;}
.lse{letter-spacing:-0.070656pt;}
.ls21{letter-spacing:-0.058880pt;}
.ls24{letter-spacing:-0.052992pt;}
.ls16{letter-spacing:-0.029440pt;}
.ls1e{letter-spacing:-0.019200pt;}
.ls27{letter-spacing:-0.017664pt;}
.ls0{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.019200pt;}
.ls12{letter-spacing:0.028800pt;}
.ls30{letter-spacing:0.101888pt;}
.ls31{letter-spacing:0.103936pt;}
.ls19{letter-spacing:0.166528pt;}
.ls33{letter-spacing:0.193024pt;}
.ls34{letter-spacing:0.230144pt;}
.ls32{letter-spacing:0.244992pt;}
.ls2b{letter-spacing:0.259840pt;}
.lsd{letter-spacing:0.784256pt;}
.ls2e{letter-spacing:43.929472pt;}
.ls1b{letter-spacing:43.929600pt;}
.ls2f{letter-spacing:44.158720pt;}
.ls28{letter-spacing:47.774848pt;}
.ls29{letter-spacing:48.574208pt;}
.ls2a{letter-spacing:48.782592pt;}
.ls1a{letter-spacing:52.380032pt;}
.lsc{letter-spacing:287.774720pt;}
.ls35{letter-spacing:1937.041536pt;}
.ws0{word-spacing:-33.845760pt;}
.ws1{word-spacing:-33.606144pt;}
.wsa{word-spacing:-21.724800pt;}
.wse{word-spacing:-21.715200pt;}
.ws11{word-spacing:-21.676800pt;}
.ws18{word-spacing:-17.038080pt;}
.ws13{word-spacing:-14.464000pt;}
.ws8{word-spacing:-13.306880pt;}
.wsd{word-spacing:-13.277440pt;}
.ws7{word-spacing:-13.236224pt;}
.wsb{word-spacing:-13.230336pt;}
.ws17{word-spacing:-13.218560pt;}
.ws10{word-spacing:-13.206784pt;}
.wsc{word-spacing:-13.189120pt;}
.ws19{word-spacing:-13.177344pt;}
.wsf{word-spacing:-13.171456pt;}
.ws12{word-spacing:-13.147904pt;}
.ws1a{word-spacing:-13.124352pt;}
.ws9{word-spacing:-12.149760pt;}
.ws5{word-spacing:-11.837952pt;}
.ws4{word-spacing:-11.827200pt;}
.ws2{word-spacing:-11.820800pt;}
.ws3{word-spacing:-11.788800pt;}
.ws16{word-spacing:-0.058880pt;}
.ws15{word-spacing:-0.053760pt;}
.ws6{word-spacing:0.000000pt;}
.ws14{word-spacing:0.194560pt;}
._6{margin-left:-10.098304pt;}
._5{margin-left:-9.193856pt;}
._4{margin-left:-5.270144pt;}
._7{margin-left:-3.841280pt;}
._1{margin-left:-2.767360pt;}
._a{margin-left:-1.828736pt;}
._3{margin-left:-0.938624pt;}
._0{width:0.956160pt;}
._11{width:2.032640pt;}
._b{width:3.002880pt;}
._d{width:4.003840pt;}
._f{width:5.711360pt;}
._12{width:8.243200pt;}
._13{width:10.362880pt;}
._c{width:11.481600pt;}
._9{width:15.956480pt;}
._10{width:18.076160pt;}
._e{width:25.259520pt;}
._2{width:178.693120pt;}
._14{width:753.536000pt;}
._15{width:754.693120pt;}
._8{width:1966.670336pt;}
.fs7{font-size:51.200000pt;}
.fs4{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs6{font-size:74.240000pt;}
.fs5{font-size:96.000000pt;}
.fs2{font-size:106.240000pt;}
.fs1{font-size:149.760000pt;}
.y0{bottom:0.000000pt;}
.y15{bottom:4.266667pt;}
.y17{bottom:4.373333pt;}
.y19{bottom:4.480000pt;}
.yd1{bottom:4.640000pt;}
.yc7{bottom:4.693333pt;}
.yaa{bottom:4.853333pt;}
.y8c{bottom:5.120000pt;}
.y7e{bottom:5.173333pt;}
.y73{bottom:5.226667pt;}
.y59{bottom:5.280000pt;}
.y116{bottom:5.333333pt;}
.ya8{bottom:5.440000pt;}
.y4c{bottom:5.546667pt;}
.yc5{bottom:5.600000pt;}
.y8a{bottom:5.706667pt;}
.yf3{bottom:5.760000pt;}
.y71{bottom:5.813333pt;}
.y57{bottom:5.866667pt;}
.y114{bottom:5.920000pt;}
.y7c{bottom:6.080000pt;}
.y4a{bottom:6.133333pt;}
.ydd{bottom:6.186667pt;}
.yf1{bottom:6.346667pt;}
.ycf{bottom:6.560000pt;}
.yfc{bottom:12.693333pt;}
.y98{bottom:12.960000pt;}
.ye5{bottom:13.066667pt;}
.yda{bottom:13.226667pt;}
.yca{bottom:13.280000pt;}
.ye{bottom:13.333333pt;}
.y6e{bottom:13.600000pt;}
.yc2{bottom:13.653333pt;}
.y87{bottom:13.760000pt;}
.ya5{bottom:13.813333pt;}
.y79{bottom:14.133333pt;}
.y54{bottom:14.240000pt;}
.y11{bottom:17.706667pt;}
.y10{bottom:34.026667pt;}
.y97{bottom:34.400000pt;}
.yfb{bottom:34.453333pt;}
.ye4{bottom:34.506667pt;}
.yd9{bottom:34.666667pt;}
.yb3{bottom:34.773333pt;}
.y6d{bottom:35.040000pt;}
.yc1{bottom:35.093333pt;}
.ya4{bottom:35.253333pt;}
.y86{bottom:35.520000pt;}
.y78{bottom:35.573333pt;}
.y53{bottom:35.680000pt;}
.yf{bottom:50.346667pt;}
.y12{bottom:50.880000pt;}
.y23{bottom:51.200000pt;}
.y96{bottom:55.840000pt;}
.yfa{bottom:55.893333pt;}
.ye3{bottom:55.946667pt;}
.yd8{bottom:56.106667pt;}
.yb2{bottom:56.213333pt;}
.yee{bottom:56.266667pt;}
.y6c{bottom:56.480000pt;}
.ya3{bottom:56.693333pt;}
.yc0{bottom:56.853333pt;}
.y85{bottom:56.960000pt;}
.y8f{bottom:57.013333pt;}
.y52{bottom:57.120000pt;}
.y77{bottom:57.333333pt;}
.y11c{bottom:62.560000pt;}
.y95{bottom:77.280000pt;}
.yf9{bottom:77.333333pt;}
.yd7{bottom:77.546667pt;}
.y111{bottom:77.600000pt;}
.yb1{bottom:77.653333pt;}
.ye2{bottom:77.706667pt;}
.y6b{bottom:77.920000pt;}
.ya2{bottom:78.133333pt;}
.ybf{bottom:78.293333pt;}
.y84{bottom:78.400000pt;}
.y8e{bottom:78.453333pt;}
.y76{bottom:78.773333pt;}
.y51{bottom:78.880000pt;}
.y11b{bottom:84.000000pt;}
.y94{bottom:98.720000pt;}
.yf8{bottom:98.773333pt;}
.yd6{bottom:98.986667pt;}
.y110{bottom:99.040000pt;}
.yb0{bottom:99.093333pt;}
.ye1{bottom:99.146667pt;}
.y6a{bottom:99.360000pt;}
.ya1{bottom:99.573333pt;}
.ybe{bottom:99.733333pt;}
.y83{bottom:99.840000pt;}
.y104{bottom:99.893333pt;}
.y75{bottom:100.213333pt;}
.y50{bottom:100.320000pt;}
.y11a{bottom:105.440000pt;}
.y93{bottom:120.160000pt;}
.yf7{bottom:120.213333pt;}
.yd5{bottom:120.426667pt;}
.y10f{bottom:120.480000pt;}
.yaf{bottom:120.533333pt;}
.ye0{bottom:120.586667pt;}
.y69{bottom:120.800000pt;}
.ya0{bottom:121.013333pt;}
.ybd{bottom:121.173333pt;}
.y82{bottom:121.280000pt;}
.yb8{bottom:121.333333pt;}
.y4f{bottom:121.760000pt;}
.y119{bottom:126.880000pt;}
.yf6{bottom:141.653333pt;}
.y10e{bottom:141.920000pt;}
.yae{bottom:141.973333pt;}
.yed{bottom:142.026667pt;}
.yd4{bottom:142.186667pt;}
.y68{bottom:142.240000pt;}
.y9f{bottom:142.453333pt;}
.y81{bottom:142.720000pt;}
.yb7{bottom:142.773333pt;}
.y4e{bottom:143.200000pt;}
.ye6{bottom:147.200000pt;}
.y118{bottom:148.320000pt;}
.y48{bottom:151.680000pt;}
.yf5{bottom:163.093333pt;}
.y10d{bottom:163.360000pt;}
.yec{bottom:163.466667pt;}
.yd3{bottom:163.626667pt;}
.yc9{bottom:163.680000pt;}
.yad{bottom:163.733333pt;}
.y67{bottom:164.000000pt;}
.y80{bottom:164.160000pt;}
.y9e{bottom:164.213333pt;}
.ycc{bottom:169.280000pt;}
.ydf{bottom:169.333333pt;}
.y47{bottom:170.880000pt;}
.y6f{bottom:174.400000pt;}
.y10c{bottom:184.800000pt;}
.yeb{bottom:184.906667pt;}
.yac{bottom:185.173333pt;}
.y66{bottom:185.440000pt;}
.y9d{bottom:185.653333pt;}
.ycb{bottom:190.080000pt;}
.y5a{bottom:196.000000pt;}
.y46{bottom:200.960000pt;}
.y10b{bottom:206.240000pt;}
.yea{bottom:206.666667pt;}
.y65{bottom:206.880000pt;}
.y9c{bottom:207.093333pt;}
.yc8{bottom:212.000000pt;}
.y45{bottom:220.160000pt;}
.y10a{bottom:228.000000pt;}
.ye9{bottom:228.106667pt;}
.y64{bottom:228.320000pt;}
.y9b{bottom:228.533333pt;}
.y103{bottom:228.853333pt;}
.y44{bottom:239.360000pt;}
.y109{bottom:249.440000pt;}
.ye8{bottom:249.546667pt;}
.y63{bottom:249.760000pt;}
.y102{bottom:250.293333pt;}
.y108{bottom:270.880000pt;}
.y62{bottom:271.200000pt;}
.y101{bottom:271.733333pt;}
.y43{bottom:273.280000pt;}
.y91{bottom:276.480000pt;}
.y106{bottom:292.160000pt;}
.y61{bottom:292.640000pt;}
.y100{bottom:293.173333pt;}
.y42{bottom:294.080000pt;}
.y90{bottom:297.600000pt;}
.yb5{bottom:303.680000pt;}
.y105{bottom:313.280000pt;}
.y60{bottom:314.400000pt;}
.y41{bottom:314.560000pt;}
.yde{bottom:316.000000pt;}
.y8d{bottom:318.666667pt;}
.yb4{bottom:324.800000pt;}
.yff{bottom:334.666667pt;}
.yfe{bottom:335.360000pt;}
.y5f{bottom:335.840000pt;}
.y40{bottom:344.640000pt;}
.yab{bottom:346.666667pt;}
.ydc{bottom:349.333333pt;}
.y11d{bottom:352.320000pt;}
.yfd{bottom:356.480000pt;}
.y5e{bottom:357.280000pt;}
.y117{bottom:372.000000pt;}
.y3f{bottom:374.400000pt;}
.yf4{bottom:378.666667pt;}
.y5d{bottom:378.720000pt;}
.y3e{bottom:393.920000pt;}
.ydb{bottom:399.360000pt;}
.y5c{bottom:400.160000pt;}
.yc6{bottom:402.666667pt;}
.y3d{bottom:413.120000pt;}
.yd2{bottom:421.333333pt;}
.y5b{bottom:421.600000pt;}
.y8b{bottom:424.000000pt;}
.yc4{bottom:436.000000pt;}
.y3c{bottom:436.160000pt;}
.y89{bottom:457.333333pt;}
.y3b{bottom:480.000000pt;}
.yc3{bottom:485.120000pt;}
.y3a{bottom:499.520000pt;}
.ybc{bottom:506.666667pt;}
.y88{bottom:506.880000pt;}
.y7f{bottom:528.000000pt;}
.y39{bottom:533.440000pt;}
.y115{bottom:546.666667pt;}
.y99{bottom:551.040000pt;}
.y38{bottom:554.560000pt;}
.ya9{bottom:558.666667pt;}
.yf2{bottom:568.000000pt;}
.y92{bottom:572.000000pt;}
.y37{bottom:576.000000pt;}
.y113{bottom:580.000000pt;}
.ya7{bottom:592.000000pt;}
.y36{bottom:597.440000pt;}
.yf0{bottom:601.333333pt;}
.yd0{bottom:612.000000pt;}
.y35{bottom:618.560000pt;}
.y112{bottom:629.760000pt;}
.y34{bottom:640.000000pt;}
.ya6{bottom:641.280000pt;}
.y58{bottom:644.000000pt;}
.yef{bottom:651.200000pt;}
.y107{bottom:652.000000pt;}
.ybb{bottom:654.666667pt;}
.y33{bottom:661.440000pt;}
.y9a{bottom:662.666667pt;}
.ye7{bottom:673.333333pt;}
.y56{bottom:677.333333pt;}
.y22{bottom:682.880000pt;}
.yba{bottom:688.000000pt;}
.y32{bottom:692.480000pt;}
.yce{bottom:694.400000pt;}
.yd{bottom:704.960000pt;}
.y31{bottom:711.680000pt;}
.y21{bottom:712.960000pt;}
.ycd{bottom:716.000000pt;}
.y7d{bottom:718.666667pt;}
.yc{bottom:723.200000pt;}
.y55{bottom:727.040000pt;}
.y30{bottom:730.880000pt;}
.yb9{bottom:737.280000pt;}
.y20{bottom:743.040000pt;}
.yb{bottom:745.600000pt;}
.y4d{bottom:748.000000pt;}
.y2f{bottom:750.400000pt;}
.y7b{bottom:752.000000pt;}
.yb6{bottom:758.666667pt;}
.y1f{bottom:768.960000pt;}
.y2e{bottom:769.600000pt;}
.ya{bottom:781.120000pt;}
.y1e{bottom:794.880000pt;}
.y2d{bottom:799.680000pt;}
.y7a{bottom:801.600000pt;}
.y2c{bottom:818.880000pt;}
.y1d{bottom:820.800000pt;}
.y74{bottom:822.666667pt;}
.y9{bottom:832.640000pt;}
.y2b{bottom:838.400000pt;}
.y1c{bottom:847.040000pt;}
.y8{bottom:862.400000pt;}
.y2a{bottom:868.160000pt;}
.y1b{bottom:869.760000pt;}
.y29{bottom:887.680000pt;}
.y7{bottom:892.480000pt;}
.y28{bottom:906.880000pt;}
.y1a{bottom:913.920000pt;}
.y4b{bottom:917.333333pt;}
.y6{bottom:922.560000pt;}
.y18{bottom:928.000000pt;}
.y27{bottom:936.960000pt;}
.y16{bottom:946.666667pt;}
.y72{bottom:949.333333pt;}
.y49{bottom:950.666667pt;}
.y5{bottom:952.640000pt;}
.y26{bottom:956.160000pt;}
.y14{bottom:965.333333pt;}
.y25{bottom:975.680000pt;}
.y4{bottom:982.400000pt;}
.y70{bottom:982.666667pt;}
.y24{bottom:998.400000pt;}
.y13{bottom:1003.840000pt;}
.y3{bottom:1012.480000pt;}
.y2{bottom:1043.520000pt;}
.y1{bottom:1061.440000pt;}
.h9{height:18.666667pt;}
.h17{height:20.000000pt;}
.hd{height:21.333333pt;}
.h7{height:36.750000pt;}
.hb{height:37.333333pt;}
.h19{height:38.666667pt;}
.ha{height:40.020000pt;}
.h2{height:42.262500pt;}
.h5{height:42.656250pt;}
.hc{height:51.438750pt;}
.h6{height:64.000000pt;}
.h8{height:65.625000pt;}
.h4{height:70.809375pt;}
.h12{height:93.333333pt;}
.h3{height:99.815625pt;}
.h10{height:114.666667pt;}
.h13{height:134.666667pt;}
.h16{height:136.000000pt;}
.he{height:157.333333pt;}
.h1e{height:162.666667pt;}
.h1b{height:177.333333pt;}
.h11{height:178.666667pt;}
.h15{height:200.000000pt;}
.h18{height:221.333333pt;}
.h14{height:242.666667pt;}
.h1a{height:264.000000pt;}
.h1d{height:285.333333pt;}
.h1c{height:308.000000pt;}
.hf{height:436.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:184.000000pt;}
.w2{width:333.333333pt;}
.w4{width:417.333333pt;}
.w5{width:593.333333pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.xa{left:7.680032pt;}
.xf{left:10.879872pt;}
.x10{left:34.746432pt;}
.x6{left:35.678709pt;}
.x11{left:58.479840pt;}
.x7{left:66.424181pt;}
.x12{left:82.946624pt;}
.x1{left:96.000000pt;}
.xe{left:104.000000pt;}
.x13{left:106.879872pt;}
.xc{left:120.000000pt;}
.x8{left:127.973653pt;}
.x9{left:133.490560pt;}
.xd{left:144.000000pt;}
.x5{left:230.666667pt;}
.x2{left:235.948576pt;}
.xb{left:280.000000pt;}
.x4{left:358.492800pt;}
.x3{left:396.866560pt;}
}




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