
    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_7e0ab55fe3a005d4c6a88edb.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4368960c3b010f92b73d621c.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a1a2a1f47d411b6f603df02e.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_abe571c3a4a9c3075c89afe9.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_80a22581efbe68d65778592f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.935547;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_726816fc5087e7e2a190d065.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6f6909302a042e367a3f1731.woff')format("woff");}.ff7{font-family:ff7;line-height:0.895508;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);}
.v4{vertical-align:-20.880000px;}
.v3{vertical-align:-18.000000px;}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:18.017280px;}
.v5{vertical-align:20.903040px;}
.v1{vertical-align:23.803200px;}
.ls2b{letter-spacing:-1.722240px;}
.ls1a{letter-spacing:-1.059840px;}
.ls1c{letter-spacing:-0.861120px;}
.ls3c{letter-spacing:-0.728640px;}
.ls1b{letter-spacing:-0.463680px;}
.ls13{letter-spacing:-0.397440px;}
.ls19{letter-spacing:-0.331200px;}
.ls12{letter-spacing:-0.298800px;}
.lse{letter-spacing:-0.252720px;}
.ls24{letter-spacing:-0.227520px;}
.lsc{letter-spacing:-0.191520px;}
.ls11{letter-spacing:-0.132480px;}
.lsf{letter-spacing:-0.119520px;}
.ls10{letter-spacing:-0.059760px;}
.lsb{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.056880px;}
.ls2{letter-spacing:0.059760px;}
.lsd{letter-spacing:0.084240px;}
.ls8{letter-spacing:0.108000px;}
.ls2c{letter-spacing:0.132480px;}
.ls21{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.168480px;}
.ls1{letter-spacing:0.180000px;}
.ls3b{letter-spacing:0.225216px;}
.ls3{letter-spacing:0.227088px;}
.ls5{letter-spacing:0.239040px;}
.ls14{letter-spacing:0.264960px;}
.ls33{letter-spacing:0.304704px;}
.ls4{letter-spacing:0.331200px;}
.ls26{letter-spacing:0.337824px;}
.ls30{letter-spacing:0.357696px;}
.ls1e{letter-spacing:0.384192px;}
.ls7{letter-spacing:0.388440px;}
.ls6{letter-spacing:0.406368px;}
.ls38{letter-spacing:0.443808px;}
.ls32{letter-spacing:0.457056px;}
.ls9{letter-spacing:0.472104px;}
.ls20{letter-spacing:0.483552px;}
.ls36{letter-spacing:0.496800px;}
.ls34{letter-spacing:0.503424px;}
.ls2e{letter-spacing:0.510048px;}
.ls3e{letter-spacing:0.523296px;}
.ls2d{letter-spacing:0.655776px;}
.ls15{letter-spacing:0.682272px;}
.ls25{letter-spacing:0.781632px;}
.ls31{letter-spacing:0.794880px;}
.ls3d{letter-spacing:0.900864px;}
.ls29{letter-spacing:0.993600px;}
.ls39{letter-spacing:1.000224px;}
.ls18{letter-spacing:1.059840px;}
.ls1f{letter-spacing:1.145952px;}
.lsa{letter-spacing:1.213128px;}
.ls27{letter-spacing:1.258560px;}
.ls2f{letter-spacing:1.722240px;}
.ls3a{letter-spacing:2.119680px;}
.ls28{letter-spacing:2.450880px;}
.ls17{letter-spacing:4.636800px;}
.ls2a{letter-spacing:5.365440px;}
.ls1d{letter-spacing:6.094080px;}
.ls22{letter-spacing:48.973680px;}
.ls35{letter-spacing:57.893760px;}
.ls16{letter-spacing:59.351040px;}
.ls37{letter-spacing:78.759360px;}
.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;}
}
.ws13{word-spacing:-66.240000px;}
.ws0{word-spacing:-19.122480px;}
.ws1{word-spacing:-18.785520px;}
.ws28{word-spacing:-18.414720px;}
.ws3{word-spacing:-18.282240px;}
.ws12{word-spacing:-18.083520px;}
.ws44{word-spacing:-17.553600px;}
.ws11{word-spacing:-17.354880px;}
.ws2{word-spacing:-16.673040px;}
.ws4{word-spacing:-16.493760px;}
.ws29{word-spacing:-15.869520px;}
.ws2a{word-spacing:-15.812640px;}
.ws27{word-spacing:-11.609280px;}
.ws4c{word-spacing:-3.841920px;}
.ws52{word-spacing:-3.640320px;}
.ws17{word-spacing:-3.179520px;}
.ws3d{word-spacing:-2.980800px;}
.ws2e{word-spacing:-2.900880px;}
.ws19{word-spacing:-2.450880px;}
.ws46{word-spacing:-2.252160px;}
.ws1e{word-spacing:-1.722240px;}
.ws34{word-spacing:-1.478880px;}
.ws15{word-spacing:-0.993600px;}
.ws14{word-spacing:-0.794880px;}
.ws39{word-spacing:-0.739440px;}
.ws7{word-spacing:-0.505440px;}
.ws48{word-spacing:-0.331200px;}
.wsb{word-spacing:-0.298800px;}
.ws16{word-spacing:-0.264960px;}
.ws3a{word-spacing:-0.198720px;}
.ws8{word-spacing:-0.084240px;}
.ws22{word-spacing:-0.066240px;}
.ws31{word-spacing:-0.056880px;}
.ws5{word-spacing:0.000000px;}
.ws9{word-spacing:0.059760px;}
.wsa{word-spacing:0.132480px;}
.ws6{word-spacing:0.191520px;}
.wsd{word-spacing:0.239040px;}
.ws10{word-spacing:0.331200px;}
.wsf{word-spacing:0.397440px;}
.wse{word-spacing:0.463680px;}
.ws23{word-spacing:0.662400px;}
.ws37{word-spacing:0.682560px;}
.ws4f{word-spacing:0.728640px;}
.wsc{word-spacing:0.776880px;}
.ws4b{word-spacing:0.861120px;}
.ws4d{word-spacing:1.059840px;}
.ws1d{word-spacing:1.192320px;}
.ws33{word-spacing:1.422000px;}
.ws3f{word-spacing:1.722240px;}
.ws18{word-spacing:1.920960px;}
.ws1a{word-spacing:2.583360px;}
.ws2f{word-spacing:2.844000px;}
.ws1b{word-spacing:3.312000px;}
.ws32{word-spacing:3.583440px;}
.ws20{word-spacing:4.040640px;}
.ws24{word-spacing:4.769280px;}
.ws3c{word-spacing:5.497920px;}
.ws45{word-spacing:5.696640px;}
.ws2d{word-spacing:5.744880px;}
.ws2b{word-spacing:6.226560px;}
.ws1f{word-spacing:6.955200px;}
.ws36{word-spacing:7.166880px;}
.ws3e{word-spacing:7.683840px;}
.ws30{word-spacing:7.906320px;}
.ws35{word-spacing:8.190720px;}
.ws4e{word-spacing:8.346240px;}
.ws25{word-spacing:9.074880px;}
.ws26{word-spacing:9.803520px;}
.ws2c{word-spacing:10.532160px;}
.ws1c{word-spacing:11.260800px;}
.ws38{word-spacing:11.489760px;}
.ws21{word-spacing:11.989440px;}
.ws41{word-spacing:12.229200px;}
.ws49{word-spacing:12.718080px;}
.ws51{word-spacing:13.380480px;}
.ws47{word-spacing:14.109120px;}
.ws40{word-spacing:14.837760px;}
.ws3b{word-spacing:17.023680px;}
.ws42{word-spacing:17.234640px;}
.ws50{word-spacing:19.872000px;}
.ws4a{word-spacing:22.057920px;}
.ws43{word-spacing:59.724000px;}
._a{margin-left:-3.892248px;}
._7{margin-left:-2.559600px;}
._1{margin-left:-1.440504px;}
._0{width:1.015056px;}
._2{width:2.094624px;}
._5{width:3.485592px;}
._4{width:5.365440px;}
._6{width:7.994736px;}
._b{width:12.370104px;}
._9{width:14.617584px;}
._8{width:60.690960px;}
._3{width:845.333424px;}
.fc4{color:rgb(5,99,193);}
.fc3{color:transparent;}
.fc2{color:rgb(79,129,189);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs9{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs5{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:90.000000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:8.100000px;}
.y5{bottom:62.096400px;}
.y4{bottom:85.860000px;}
.y112{bottom:104.577120px;}
.ya3{bottom:104.578560px;}
.ycb{bottom:104.580000px;}
.y11c{bottom:110.518560px;}
.yf8{bottom:115.071840px;}
.y59{bottom:117.224640px;}
.y30{bottom:117.730080px;}
.yca{bottom:120.958560px;}
.ya2{bottom:126.180000px;}
.y11b{bottom:132.120000px;}
.ya1{bottom:137.335680px;}
.yf7{bottom:138.835440px;}
.ydc{bottom:139.459680px;}
.y58{bottom:140.988240px;}
.y2f{bottom:141.493680px;}
.yc9{bottom:142.560000px;}
.y11a{bottom:148.320000px;}
.ya0{bottom:153.717120px;}
.yc8{bottom:155.165040px;}
.y111{bottom:158.580000px;}
.y2e{bottom:160.570800px;}
.yf6{bottom:162.416880px;}
.ydb{bottom:163.223280px;}
.y57{bottom:164.751840px;}
.y9f{bottom:170.098560px;}
.yc7{bottom:173.878560px;}
.y2d{bottom:179.647920px;}
.y110{bottom:185.183280px;}
.yf5{bottom:186.180480px;}
.y9e{bottom:186.475680px;}
.yda{bottom:186.986880px;}
.y56{bottom:188.333280px;}
.yc6{bottom:195.480000px;}
.y2c{bottom:198.542880px;}
.y9d{bottom:202.857120px;}
.y10f{bottom:208.946880px;}
.y7b{bottom:209.427120px;}
.yf4{bottom:209.944080px;}
.yc5{bottom:211.500000px;}
.yd9{bottom:211.826880px;}
.y55{bottom:212.096880px;}
.y2b{bottom:217.620000px;}
.y9c{bottom:219.238560px;}
.y10e{bottom:232.528320px;}
.y7a{bottom:233.190720px;}
.yf3{bottom:233.707680px;}
.yd8{bottom:235.408320px;}
.y9b{bottom:235.620000px;}
.y54{bottom:235.860480px;}
.y2a{bottom:236.349360px;}
.y9a{bottom:252.173340px;}
.y29{bottom:255.248460px;}
.y10d{bottom:256.291920px;}
.y79{bottom:256.954320px;}
.yf2{bottom:257.289120px;}
.yc4{bottom:259.147440px;}
.yd7{bottom:259.171920px;}
.y53{bottom:259.624080px;}
.y28{bottom:274.326840px;}
.y99{bottom:274.500000px;}
.y78{bottom:280.717920px;}
.yf1{bottom:281.052720px;}
.y10c{bottom:281.131920px;}
.yc3{bottom:282.911040px;}
.yd6{bottom:282.935520px;}
.y52{bottom:283.205520px;}
.y98{bottom:285.654240px;}
.y27{bottom:293.225940px;}
.y97{bottom:302.035680px;}
.y77{bottom:304.299360px;}
.yf0{bottom:304.816320px;}
.y10b{bottom:304.895520px;}
.yc2{bottom:306.674640px;}
.yd5{bottom:306.699120px;}
.y51{bottom:306.969120px;}
.y26{bottom:312.304320px;}
.y96{bottom:318.417120px;}
.y76{bottom:328.062960px;}
.yef{bottom:328.579920px;}
.y10a{bottom:328.659120px;}
.yc1{bottom:330.256080px;}
.yd4{bottom:330.280560px;}
.y50{bottom:330.732720px;}
.y25{bottom:331.203420px;}
.y95{bottom:334.798560px;}
.y24{bottom:350.281800px;}
.y75{bottom:351.826560px;}
.yee{bottom:352.161360px;}
.y109{bottom:352.240560px;}
.yc0{bottom:354.019680px;}
.yd3{bottom:354.044160px;}
.y4f{bottom:354.496320px;}
.y94{bottom:356.400000px;}
.y23{bottom:369.180900px;}
.y93{bottom:372.600000px;}
.y74{bottom:375.590160px;}
.yed{bottom:375.924960px;}
.y108{bottom:376.004160px;}
.ybf{bottom:377.783280px;}
.y4e{bottom:378.259920px;}
.yd2{bottom:378.884160px;}
.y22{bottom:388.080000px;}
.y73{bottom:399.171600px;}
.yec{bottom:399.688560px;}
.y107{bottom:399.767760px;}
.ybe{bottom:401.546880px;}
.y4d{bottom:401.841360px;}
.yd1{bottom:402.647760px;}
.y21{bottom:407.340000px;}
.y72{bottom:422.935200px;}
.yeb{bottom:423.452160px;}
.y106{bottom:423.531360px;}
.ybd{bottom:425.128320px;}
.y4c{bottom:425.604960px;}
.y20{bottom:426.242880px;}
.yd0{bottom:426.411360px;}
.y1f{bottom:445.321080px;}
.y71{bottom:446.698800px;}
.y105{bottom:447.112800px;}
.yea{bottom:447.215760px;}
.ybc{bottom:448.891920px;}
.y4b{bottom:449.368560px;}
.ycf{bottom:449.992800px;}
.y92{bottom:459.159120px;}
.y1e{bottom:464.040900px;}
.y104{bottom:470.876400px;}
.y70{bottom:471.538800px;}
.ye9{bottom:471.873600px;}
.ybb{bottom:472.655520px;}
.y4a{bottom:473.132160px;}
.yce{bottom:473.756400px;}
.y91{bottom:482.922720px;}
.y1d{bottom:482.940000px;}
.ye8{bottom:495.637200px;}
.y103{bottom:495.716400px;}
.y6f{bottom:496.378800px;}
.yba{bottom:496.419120px;}
.y49{bottom:496.713600px;}
.ycd{bottom:497.520000px;}
.y1c{bottom:502.201800px;}
.y90{bottom:507.762720px;}
.ye7{bottom:519.400800px;}
.yb9{bottom:520.182720px;}
.y48{bottom:520.477200px;}
.y1b{bottom:520.921620px;}
.y6e{bottom:521.218800px;}
.ycc{bottom:525.060000px;}
.y8f{bottom:532.602720px;}
.y1a{bottom:540.000000px;}
.ye6{bottom:543.164400px;}
.yb8{bottom:543.764160px;}
.y47{bottom:544.240800px;}
.y6d{bottom:544.800240px;}
.y8e{bottom:556.366320px;}
.y19{bottom:559.080900px;}
.ye5{bottom:566.745840px;}
.yb7{bottom:567.527760px;}
.y46{bottom:568.004400px;}
.y6c{bottom:568.563840px;}
.y18{bottom:577.980000px;}
.y8d{bottom:579.947760px;}
.ye4{bottom:590.509440px;}
.yb6{bottom:591.291360px;}
.y45{bottom:591.585840px;}
.y6b{bottom:592.327440px;}
.y17{bottom:597.060180px;}
.y8c{bottom:603.711360px;}
.ye3{bottom:614.273040px;}
.yb5{bottom:615.054960px;}
.y44{bottom:615.349440px;}
.y16{bottom:615.780000px;}
.y6a{bottom:616.091040px;}
.y8b{bottom:627.474960px;}
.y15{bottom:635.042520px;}
.ye2{bottom:638.036640px;}
.yb4{bottom:638.636400px;}
.y43{bottom:639.113040px;}
.y69{bottom:639.854640px;}
.y8a{bottom:652.314960px;}
.y14{bottom:653.762340px;}
.ye1{bottom:661.618080px;}
.yb3{bottom:662.380560px;}
.y42{bottom:662.876640px;}
.y68{bottom:663.436080px;}
.y13{bottom:673.023420px;}
.y89{bottom:676.078560px;}
.ye0{bottom:685.381680px;}
.yb2{bottom:686.144160px;}
.y41{bottom:686.458080px;}
.y67{bottom:687.199680px;}
.y12{bottom:691.743240px;}
.y88{bottom:699.842160px;}
.ydf{bottom:709.145280px;}
.yb1{bottom:709.907760px;}
.y40{bottom:710.221680px;}
.y11{bottom:710.642340px;}
.y66{bottom:710.963280px;}
.y87{bottom:724.500000px;}
.y10{bottom:729.900180px;}
.yde{bottom:732.908880px;}
.yb0{bottom:733.489200px;}
.y3f{bottom:733.985280px;}
.y65{bottom:734.726880px;}
.y86{bottom:748.240560px;}
.yf{bottom:748.620000px;}
.ydd{bottom:756.672480px;}
.yaf{bottom:757.252800px;}
.y3e{bottom:757.748880px;}
.y64{bottom:758.308320px;}
.ye{bottom:768.960000px;}
.y85{bottom:772.004160px;}
.y102{bottom:780.253920px;}
.yae{bottom:781.016400px;}
.y3d{bottom:781.330320px;}
.y63{bottom:782.071920px;}
.yd{bottom:795.771000px;}
.y84{bottom:796.844160px;}
.y101{bottom:804.017520px;}
.yad{bottom:804.766320px;}
.y3c{bottom:805.093920px;}
.y62{bottom:805.835520px;}
.y83{bottom:820.607760px;}
.yc{bottom:821.506320px;}
.y100{bottom:827.781120px;}
.yac{bottom:828.347760px;}
.y3b{bottom:828.857520px;}
.y119{bottom:828.879120px;}
.y61{bottom:829.599120px;}
.y82{bottom:844.189200px;}
.yb{bottom:847.073160px;}
.yff{bottom:851.544720px;}
.yab{bottom:852.111360px;}
.y3a{bottom:852.621120px;}
.y118{bottom:852.642720px;}
.y60{bottom:853.180560px;}
.y81{bottom:867.952800px;}
.ya{bottom:872.640000px;}
.yfe{bottom:875.126160px;}
.yaa{bottom:875.874960px;}
.y39{bottom:876.202560px;}
.y117{bottom:876.224160px;}
.y5f{bottom:876.944160px;}
.y80{bottom:891.716400px;}
.yfd{bottom:898.889760px;}
.ya9{bottom:899.638560px;}
.y38{bottom:899.966160px;}
.y116{bottom:899.987760px;}
.y5e{bottom:900.707760px;}
.y7f{bottom:915.480000px;}
.y9{bottom:919.603440px;}
.yfc{bottom:922.653360px;}
.ya8{bottom:923.220000px;}
.y37{bottom:923.729760px;}
.y115{bottom:923.751360px;}
.y5d{bottom:924.471360px;}
.yfb{bottom:946.416960px;}
.y36{bottom:947.493360px;}
.y114{bottom:947.514960px;}
.y5c{bottom:948.052800px;}
.ya7{bottom:950.760000px;}
.y7e{bottom:951.840000px;}
.y8{bottom:953.981280px;}
.yfa{bottom:969.998400px;}
.y35{bottom:971.256960px;}
.y113{bottom:971.278560px;}
.y5b{bottom:971.816400px;}
.y7{bottom:988.550640px;}
.yf9{bottom:993.762000px;}
.y34{bottom:994.838400px;}
.y5a{bottom:995.580000px;}
.ya6{bottom:1017.525600px;}
.y33{bottom:1018.602000px;}
.y7d{bottom:1018.612800px;}
.y6{bottom:1023.120000px;}
.ya5{bottom:1041.289200px;}
.y32{bottom:1042.365600px;}
.y7c{bottom:1042.376400px;}
.ya4{bottom:1065.052800px;}
.y31{bottom:1066.129200px;}
.y3{bottom:1094.580000px;}
.y1{bottom:1110.240000px;}
.h1{height:23.760000px;}
.h11{height:26.244141px;}
.h12{height:41.465742px;}
.h6{height:43.565273px;}
.h14{height:43.591913px;}
.h15{height:46.360952px;}
.h13{height:47.147181px;}
.h17{height:47.525153px;}
.h18{height:48.224531px;}
.h8{height:48.275539px;}
.h9{height:48.279139px;}
.hb{height:48.282019px;}
.hc{height:48.284899px;}
.ha{height:48.285619px;}
.h7{height:48.288499px;}
.h2{height:48.289219px;}
.hf{height:54.203203px;}
.hd{height:54.246403px;}
.h16{height:54.257923px;}
.h10{height:54.280963px;}
.h1a{height:54.289603px;}
.h19{height:54.520003px;}
.h4{height:57.585938px;}
.h5{height:65.610352px;}
.h3{height:69.715898px;}
.he{height:69.809414px;}
.h0{height:1188.000000px;}
.w3{width:235.080000px;}
.w2{width:235.081500px;}
.w1{width:235.258500px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:106.200000px;}
.x1d{left:111.585420px;}
.x1f{left:115.708860px;}
.x3{left:117.540000px;}
.x27{left:127.436580px;}
.x24{left:133.176240px;}
.x23{left:152.998560px;}
.x25{left:160.218720px;}
.x20{left:165.399300px;}
.xc{left:173.175660px;}
.x11{left:180.901260px;}
.x14{left:194.220000px;}
.x13{left:200.876760px;}
.x7{left:224.280000px;}
.x1c{left:228.774780px;}
.x5{left:235.620000px;}
.x1e{left:239.202900px;}
.x16{left:241.740000px;}
.xb{left:248.760000px;}
.x15{left:255.780000px;}
.x12{left:267.463620px;}
.x17{left:272.889900px;}
.xf{left:275.040000px;}
.x18{left:277.200000px;}
.x9{left:284.225760px;}
.x1b{left:313.380000px;}
.x26{left:322.200000px;}
.x10{left:336.772080px;}
.x19{left:340.007760px;}
.x2{left:341.460000px;}
.xe{left:349.574220px;}
.xa{left:354.776940px;}
.x8{left:366.124500px;}
.x21{left:373.274460px;}
.xd{left:388.809000px;}
.x22{left:416.161440px;}
.x1a{left:458.820000px;}
.x4{left:576.540000px;}
.x6{left:802.440000px;}
@media print{
.v4{vertical-align:-18.560000pt;}
.v3{vertical-align:-16.000000pt;}
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:16.015360pt;}
.v5{vertical-align:18.580480pt;}
.v1{vertical-align:21.158400pt;}
.ls2b{letter-spacing:-1.530880pt;}
.ls1a{letter-spacing:-0.942080pt;}
.ls1c{letter-spacing:-0.765440pt;}
.ls3c{letter-spacing:-0.647680pt;}
.ls1b{letter-spacing:-0.412160pt;}
.ls13{letter-spacing:-0.353280pt;}
.ls19{letter-spacing:-0.294400pt;}
.ls12{letter-spacing:-0.265600pt;}
.lse{letter-spacing:-0.224640pt;}
.ls24{letter-spacing:-0.202240pt;}
.lsc{letter-spacing:-0.170240pt;}
.ls11{letter-spacing:-0.117760pt;}
.lsf{letter-spacing:-0.106240pt;}
.ls10{letter-spacing:-0.053120pt;}
.lsb{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.050560pt;}
.ls2{letter-spacing:0.053120pt;}
.lsd{letter-spacing:0.074880pt;}
.ls8{letter-spacing:0.096000pt;}
.ls2c{letter-spacing:0.117760pt;}
.ls21{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.149760pt;}
.ls1{letter-spacing:0.160000pt;}
.ls3b{letter-spacing:0.200192pt;}
.ls3{letter-spacing:0.201856pt;}
.ls5{letter-spacing:0.212480pt;}
.ls14{letter-spacing:0.235520pt;}
.ls33{letter-spacing:0.270848pt;}
.ls4{letter-spacing:0.294400pt;}
.ls26{letter-spacing:0.300288pt;}
.ls30{letter-spacing:0.317952pt;}
.ls1e{letter-spacing:0.341504pt;}
.ls7{letter-spacing:0.345280pt;}
.ls6{letter-spacing:0.361216pt;}
.ls38{letter-spacing:0.394496pt;}
.ls32{letter-spacing:0.406272pt;}
.ls9{letter-spacing:0.419648pt;}
.ls20{letter-spacing:0.429824pt;}
.ls36{letter-spacing:0.441600pt;}
.ls34{letter-spacing:0.447488pt;}
.ls2e{letter-spacing:0.453376pt;}
.ls3e{letter-spacing:0.465152pt;}
.ls2d{letter-spacing:0.582912pt;}
.ls15{letter-spacing:0.606464pt;}
.ls25{letter-spacing:0.694784pt;}
.ls31{letter-spacing:0.706560pt;}
.ls3d{letter-spacing:0.800768pt;}
.ls29{letter-spacing:0.883200pt;}
.ls39{letter-spacing:0.889088pt;}
.ls18{letter-spacing:0.942080pt;}
.ls1f{letter-spacing:1.018624pt;}
.lsa{letter-spacing:1.078336pt;}
.ls27{letter-spacing:1.118720pt;}
.ls2f{letter-spacing:1.530880pt;}
.ls3a{letter-spacing:1.884160pt;}
.ls28{letter-spacing:2.178560pt;}
.ls17{letter-spacing:4.121600pt;}
.ls2a{letter-spacing:4.769280pt;}
.ls1d{letter-spacing:5.416960pt;}
.ls22{letter-spacing:43.532160pt;}
.ls35{letter-spacing:51.461120pt;}
.ls16{letter-spacing:52.756480pt;}
.ls37{letter-spacing:70.008320pt;}
.ws13{word-spacing:-58.880000pt;}
.ws0{word-spacing:-16.997760pt;}
.ws1{word-spacing:-16.698240pt;}
.ws28{word-spacing:-16.368640pt;}
.ws3{word-spacing:-16.250880pt;}
.ws12{word-spacing:-16.074240pt;}
.ws44{word-spacing:-15.603200pt;}
.ws11{word-spacing:-15.426560pt;}
.ws2{word-spacing:-14.820480pt;}
.ws4{word-spacing:-14.661120pt;}
.ws29{word-spacing:-14.106240pt;}
.ws2a{word-spacing:-14.055680pt;}
.ws27{word-spacing:-10.319360pt;}
.ws4c{word-spacing:-3.415040pt;}
.ws52{word-spacing:-3.235840pt;}
.ws17{word-spacing:-2.826240pt;}
.ws3d{word-spacing:-2.649600pt;}
.ws2e{word-spacing:-2.578560pt;}
.ws19{word-spacing:-2.178560pt;}
.ws46{word-spacing:-2.001920pt;}
.ws1e{word-spacing:-1.530880pt;}
.ws34{word-spacing:-1.314560pt;}
.ws15{word-spacing:-0.883200pt;}
.ws14{word-spacing:-0.706560pt;}
.ws39{word-spacing:-0.657280pt;}
.ws7{word-spacing:-0.449280pt;}
.ws48{word-spacing:-0.294400pt;}
.wsb{word-spacing:-0.265600pt;}
.ws16{word-spacing:-0.235520pt;}
.ws3a{word-spacing:-0.176640pt;}
.ws8{word-spacing:-0.074880pt;}
.ws22{word-spacing:-0.058880pt;}
.ws31{word-spacing:-0.050560pt;}
.ws5{word-spacing:0.000000pt;}
.ws9{word-spacing:0.053120pt;}
.wsa{word-spacing:0.117760pt;}
.ws6{word-spacing:0.170240pt;}
.wsd{word-spacing:0.212480pt;}
.ws10{word-spacing:0.294400pt;}
.wsf{word-spacing:0.353280pt;}
.wse{word-spacing:0.412160pt;}
.ws23{word-spacing:0.588800pt;}
.ws37{word-spacing:0.606720pt;}
.ws4f{word-spacing:0.647680pt;}
.wsc{word-spacing:0.690560pt;}
.ws4b{word-spacing:0.765440pt;}
.ws4d{word-spacing:0.942080pt;}
.ws1d{word-spacing:1.059840pt;}
.ws33{word-spacing:1.264000pt;}
.ws3f{word-spacing:1.530880pt;}
.ws18{word-spacing:1.707520pt;}
.ws1a{word-spacing:2.296320pt;}
.ws2f{word-spacing:2.528000pt;}
.ws1b{word-spacing:2.944000pt;}
.ws32{word-spacing:3.185280pt;}
.ws20{word-spacing:3.591680pt;}
.ws24{word-spacing:4.239360pt;}
.ws3c{word-spacing:4.887040pt;}
.ws45{word-spacing:5.063680pt;}
.ws2d{word-spacing:5.106560pt;}
.ws2b{word-spacing:5.534720pt;}
.ws1f{word-spacing:6.182400pt;}
.ws36{word-spacing:6.370560pt;}
.ws3e{word-spacing:6.830080pt;}
.ws30{word-spacing:7.027840pt;}
.ws35{word-spacing:7.280640pt;}
.ws4e{word-spacing:7.418880pt;}
.ws25{word-spacing:8.066560pt;}
.ws26{word-spacing:8.714240pt;}
.ws2c{word-spacing:9.361920pt;}
.ws1c{word-spacing:10.009600pt;}
.ws38{word-spacing:10.213120pt;}
.ws21{word-spacing:10.657280pt;}
.ws41{word-spacing:10.870400pt;}
.ws49{word-spacing:11.304960pt;}
.ws51{word-spacing:11.893760pt;}
.ws47{word-spacing:12.541440pt;}
.ws40{word-spacing:13.189120pt;}
.ws3b{word-spacing:15.132160pt;}
.ws42{word-spacing:15.319680pt;}
.ws50{word-spacing:17.664000pt;}
.ws4a{word-spacing:19.607040pt;}
.ws43{word-spacing:53.088000pt;}
._a{margin-left:-3.459776pt;}
._7{margin-left:-2.275200pt;}
._1{margin-left:-1.280448pt;}
._0{width:0.902272pt;}
._2{width:1.861888pt;}
._5{width:3.098304pt;}
._4{width:4.769280pt;}
._6{width:7.106432pt;}
._b{width:10.995648pt;}
._9{width:12.993408pt;}
._8{width:53.947520pt;}
._3{width:751.407488pt;}
.fs7{font-size:32.000000pt;}
.fs9{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs5{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:80.000000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:7.200000pt;}
.y5{bottom:55.196800pt;}
.y4{bottom:76.320000pt;}
.y112{bottom:92.957440pt;}
.ya3{bottom:92.958720pt;}
.ycb{bottom:92.960000pt;}
.y11c{bottom:98.238720pt;}
.yf8{bottom:102.286080pt;}
.y59{bottom:104.199680pt;}
.y30{bottom:104.648960pt;}
.yca{bottom:107.518720pt;}
.ya2{bottom:112.160000pt;}
.y11b{bottom:117.440000pt;}
.ya1{bottom:122.076160pt;}
.yf7{bottom:123.409280pt;}
.ydc{bottom:123.964160pt;}
.y58{bottom:125.322880pt;}
.y2f{bottom:125.772160pt;}
.yc9{bottom:126.720000pt;}
.y11a{bottom:131.840000pt;}
.ya0{bottom:136.637440pt;}
.yc8{bottom:137.924480pt;}
.y111{bottom:140.960000pt;}
.y2e{bottom:142.729600pt;}
.yf6{bottom:144.370560pt;}
.ydb{bottom:145.087360pt;}
.y57{bottom:146.446080pt;}
.y9f{bottom:151.198720pt;}
.yc7{bottom:154.558720pt;}
.y2d{bottom:159.687040pt;}
.y110{bottom:164.607360pt;}
.yf5{bottom:165.493760pt;}
.y9e{bottom:165.756160pt;}
.yda{bottom:166.210560pt;}
.y56{bottom:167.407360pt;}
.yc6{bottom:173.760000pt;}
.y2c{bottom:176.482560pt;}
.y9d{bottom:180.317440pt;}
.y10f{bottom:185.730560pt;}
.y7b{bottom:186.157440pt;}
.yf4{bottom:186.616960pt;}
.yc5{bottom:188.000000pt;}
.yd9{bottom:188.290560pt;}
.y55{bottom:188.530560pt;}
.y2b{bottom:193.440000pt;}
.y9c{bottom:194.878720pt;}
.y10e{bottom:206.691840pt;}
.y7a{bottom:207.280640pt;}
.yf3{bottom:207.740160pt;}
.yd8{bottom:209.251840pt;}
.y9b{bottom:209.440000pt;}
.y54{bottom:209.653760pt;}
.y2a{bottom:210.088320pt;}
.y9a{bottom:224.154080pt;}
.y29{bottom:226.887520pt;}
.y10d{bottom:227.815040pt;}
.y79{bottom:228.403840pt;}
.yf2{bottom:228.701440pt;}
.yc4{bottom:230.353280pt;}
.yd7{bottom:230.375040pt;}
.y53{bottom:230.776960pt;}
.y28{bottom:243.846080pt;}
.y99{bottom:244.000000pt;}
.y78{bottom:249.527040pt;}
.yf1{bottom:249.824640pt;}
.y10c{bottom:249.895040pt;}
.yc3{bottom:251.476480pt;}
.yd6{bottom:251.498240pt;}
.y52{bottom:251.738240pt;}
.y98{bottom:253.914880pt;}
.y27{bottom:260.645280pt;}
.y97{bottom:268.476160pt;}
.y77{bottom:270.488320pt;}
.yf0{bottom:270.947840pt;}
.y10b{bottom:271.018240pt;}
.yc2{bottom:272.599680pt;}
.yd5{bottom:272.621440pt;}
.y51{bottom:272.861440pt;}
.y26{bottom:277.603840pt;}
.y96{bottom:283.037440pt;}
.y76{bottom:291.611520pt;}
.yef{bottom:292.071040pt;}
.y10a{bottom:292.141440pt;}
.yc1{bottom:293.560960pt;}
.yd4{bottom:293.582720pt;}
.y50{bottom:293.984640pt;}
.y25{bottom:294.403040pt;}
.y95{bottom:297.598720pt;}
.y24{bottom:311.361600pt;}
.y75{bottom:312.734720pt;}
.yee{bottom:313.032320pt;}
.y109{bottom:313.102720pt;}
.yc0{bottom:314.684160pt;}
.yd3{bottom:314.705920pt;}
.y4f{bottom:315.107840pt;}
.y94{bottom:316.800000pt;}
.y23{bottom:328.160800pt;}
.y93{bottom:331.200000pt;}
.y74{bottom:333.857920pt;}
.yed{bottom:334.155520pt;}
.y108{bottom:334.225920pt;}
.ybf{bottom:335.807360pt;}
.y4e{bottom:336.231040pt;}
.yd2{bottom:336.785920pt;}
.y22{bottom:344.960000pt;}
.y73{bottom:354.819200pt;}
.yec{bottom:355.278720pt;}
.y107{bottom:355.349120pt;}
.ybe{bottom:356.930560pt;}
.y4d{bottom:357.192320pt;}
.yd1{bottom:357.909120pt;}
.y21{bottom:362.080000pt;}
.y72{bottom:375.942400pt;}
.yeb{bottom:376.401920pt;}
.y106{bottom:376.472320pt;}
.ybd{bottom:377.891840pt;}
.y4c{bottom:378.315520pt;}
.y20{bottom:378.882560pt;}
.yd0{bottom:379.032320pt;}
.y1f{bottom:395.840960pt;}
.y71{bottom:397.065600pt;}
.y105{bottom:397.433600pt;}
.yea{bottom:397.525120pt;}
.ybc{bottom:399.015040pt;}
.y4b{bottom:399.438720pt;}
.ycf{bottom:399.993600pt;}
.y92{bottom:408.141440pt;}
.y1e{bottom:412.480800pt;}
.y104{bottom:418.556800pt;}
.y70{bottom:419.145600pt;}
.ye9{bottom:419.443200pt;}
.ybb{bottom:420.138240pt;}
.y4a{bottom:420.561920pt;}
.yce{bottom:421.116800pt;}
.y91{bottom:429.264640pt;}
.y1d{bottom:429.280000pt;}
.ye8{bottom:440.566400pt;}
.y103{bottom:440.636800pt;}
.y6f{bottom:441.225600pt;}
.yba{bottom:441.261440pt;}
.y49{bottom:441.523200pt;}
.ycd{bottom:442.240000pt;}
.y1c{bottom:446.401600pt;}
.y90{bottom:451.344640pt;}
.ye7{bottom:461.689600pt;}
.yb9{bottom:462.384640pt;}
.y48{bottom:462.646400pt;}
.y1b{bottom:463.041440pt;}
.y6e{bottom:463.305600pt;}
.ycc{bottom:466.720000pt;}
.y8f{bottom:473.424640pt;}
.y1a{bottom:480.000000pt;}
.ye6{bottom:482.812800pt;}
.yb8{bottom:483.345920pt;}
.y47{bottom:483.769600pt;}
.y6d{bottom:484.266880pt;}
.y8e{bottom:494.547840pt;}
.y19{bottom:496.960800pt;}
.ye5{bottom:503.774080pt;}
.yb7{bottom:504.469120pt;}
.y46{bottom:504.892800pt;}
.y6c{bottom:505.390080pt;}
.y18{bottom:513.760000pt;}
.y8d{bottom:515.509120pt;}
.ye4{bottom:524.897280pt;}
.yb6{bottom:525.592320pt;}
.y45{bottom:525.854080pt;}
.y6b{bottom:526.513280pt;}
.y17{bottom:530.720160pt;}
.y8c{bottom:536.632320pt;}
.ye3{bottom:546.020480pt;}
.yb5{bottom:546.715520pt;}
.y44{bottom:546.977280pt;}
.y16{bottom:547.360000pt;}
.y6a{bottom:547.636480pt;}
.y8b{bottom:557.755520pt;}
.y15{bottom:564.482240pt;}
.ye2{bottom:567.143680pt;}
.yb4{bottom:567.676800pt;}
.y43{bottom:568.100480pt;}
.y69{bottom:568.759680pt;}
.y8a{bottom:579.835520pt;}
.y14{bottom:581.122080pt;}
.ye1{bottom:588.104960pt;}
.yb3{bottom:588.782720pt;}
.y42{bottom:589.223680pt;}
.y68{bottom:589.720960pt;}
.y13{bottom:598.243040pt;}
.y89{bottom:600.958720pt;}
.ye0{bottom:609.228160pt;}
.yb2{bottom:609.905920pt;}
.y41{bottom:610.184960pt;}
.y67{bottom:610.844160pt;}
.y12{bottom:614.882880pt;}
.y88{bottom:622.081920pt;}
.ydf{bottom:630.351360pt;}
.yb1{bottom:631.029120pt;}
.y40{bottom:631.308160pt;}
.y11{bottom:631.682080pt;}
.y66{bottom:631.967360pt;}
.y87{bottom:644.000000pt;}
.y10{bottom:648.800160pt;}
.yde{bottom:651.474560pt;}
.yb0{bottom:651.990400pt;}
.y3f{bottom:652.431360pt;}
.y65{bottom:653.090560pt;}
.y86{bottom:665.102720pt;}
.yf{bottom:665.440000pt;}
.ydd{bottom:672.597760pt;}
.yaf{bottom:673.113600pt;}
.y3e{bottom:673.554560pt;}
.y64{bottom:674.051840pt;}
.ye{bottom:683.520000pt;}
.y85{bottom:686.225920pt;}
.y102{bottom:693.559040pt;}
.yae{bottom:694.236800pt;}
.y3d{bottom:694.515840pt;}
.y63{bottom:695.175040pt;}
.yd{bottom:707.352000pt;}
.y84{bottom:708.305920pt;}
.y101{bottom:714.682240pt;}
.yad{bottom:715.347840pt;}
.y3c{bottom:715.639040pt;}
.y62{bottom:716.298240pt;}
.y83{bottom:729.429120pt;}
.yc{bottom:730.227840pt;}
.y100{bottom:735.805440pt;}
.yac{bottom:736.309120pt;}
.y3b{bottom:736.762240pt;}
.y119{bottom:736.781440pt;}
.y61{bottom:737.421440pt;}
.y82{bottom:750.390400pt;}
.yb{bottom:752.953920pt;}
.yff{bottom:756.928640pt;}
.yab{bottom:757.432320pt;}
.y3a{bottom:757.885440pt;}
.y118{bottom:757.904640pt;}
.y60{bottom:758.382720pt;}
.y81{bottom:771.513600pt;}
.ya{bottom:775.680000pt;}
.yfe{bottom:777.889920pt;}
.yaa{bottom:778.555520pt;}
.y39{bottom:778.846720pt;}
.y117{bottom:778.865920pt;}
.y5f{bottom:779.505920pt;}
.y80{bottom:792.636800pt;}
.yfd{bottom:799.013120pt;}
.ya9{bottom:799.678720pt;}
.y38{bottom:799.969920pt;}
.y116{bottom:799.989120pt;}
.y5e{bottom:800.629120pt;}
.y7f{bottom:813.760000pt;}
.y9{bottom:817.425280pt;}
.yfc{bottom:820.136320pt;}
.ya8{bottom:820.640000pt;}
.y37{bottom:821.093120pt;}
.y115{bottom:821.112320pt;}
.y5d{bottom:821.752320pt;}
.yfb{bottom:841.259520pt;}
.y36{bottom:842.216320pt;}
.y114{bottom:842.235520pt;}
.y5c{bottom:842.713600pt;}
.ya7{bottom:845.120000pt;}
.y7e{bottom:846.080000pt;}
.y8{bottom:847.983360pt;}
.yfa{bottom:862.220800pt;}
.y35{bottom:863.339520pt;}
.y113{bottom:863.358720pt;}
.y5b{bottom:863.836800pt;}
.y7{bottom:878.711680pt;}
.yf9{bottom:883.344000pt;}
.y34{bottom:884.300800pt;}
.y5a{bottom:884.960000pt;}
.ya6{bottom:904.467200pt;}
.y33{bottom:905.424000pt;}
.y7d{bottom:905.433600pt;}
.y6{bottom:909.440000pt;}
.ya5{bottom:925.590400pt;}
.y32{bottom:926.547200pt;}
.y7c{bottom:926.556800pt;}
.ya4{bottom:946.713600pt;}
.y31{bottom:947.670400pt;}
.y3{bottom:972.960000pt;}
.y1{bottom:986.880000pt;}
.h1{height:21.120000pt;}
.h11{height:23.328125pt;}
.h12{height:36.858438pt;}
.h6{height:38.724688pt;}
.h14{height:38.748367pt;}
.h15{height:41.209735pt;}
.h13{height:41.908605pt;}
.h17{height:42.244580pt;}
.h18{height:42.866250pt;}
.h8{height:42.911590pt;}
.h9{height:42.914790pt;}
.hb{height:42.917350pt;}
.hc{height:42.919910pt;}
.ha{height:42.920550pt;}
.h7{height:42.923110pt;}
.h2{height:42.923750pt;}
.hf{height:48.180625pt;}
.hd{height:48.219025pt;}
.h16{height:48.229265pt;}
.h10{height:48.249745pt;}
.h1a{height:48.257425pt;}
.h19{height:48.462225pt;}
.h4{height:51.187500pt;}
.h5{height:58.320312pt;}
.h3{height:61.969687pt;}
.he{height:62.052813pt;}
.h0{height:1056.000000pt;}
.w3{width:208.960000pt;}
.w2{width:208.961333pt;}
.w1{width:209.118667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.400000pt;}
.x1d{left:99.187040pt;}
.x1f{left:102.852320pt;}
.x3{left:104.480000pt;}
.x27{left:113.276960pt;}
.x24{left:118.378880pt;}
.x23{left:135.998720pt;}
.x25{left:142.416640pt;}
.x20{left:147.021600pt;}
.xc{left:153.933920pt;}
.x11{left:160.801120pt;}
.x14{left:172.640000pt;}
.x13{left:178.557120pt;}
.x7{left:199.360000pt;}
.x1c{left:203.355360pt;}
.x5{left:209.440000pt;}
.x1e{left:212.624800pt;}
.x16{left:214.880000pt;}
.xb{left:221.120000pt;}
.x15{left:227.360000pt;}
.x12{left:237.745440pt;}
.x17{left:242.568800pt;}
.xf{left:244.480000pt;}
.x18{left:246.400000pt;}
.x9{left:252.645120pt;}
.x1b{left:278.560000pt;}
.x26{left:286.400000pt;}
.x10{left:299.352960pt;}
.x19{left:302.229120pt;}
.x2{left:303.520000pt;}
.xe{left:310.732640pt;}
.xa{left:315.357280pt;}
.x8{left:325.444000pt;}
.x21{left:331.799520pt;}
.xd{left:345.608000pt;}
.x22{left:369.921280pt;}
.x1a{left:407.840000pt;}
.x4{left:512.480000pt;}
.x6{left:713.280000pt;}
}




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