
    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_b517081183f13f69a2e2262c.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_1adc74cbb60c3cbc9e261340.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.904297;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_bc18ac5d562847738a37d386.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_75d2b46eef7681f603404cce.woff2')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_cbe34662dfe0b7b6a6b47069.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_3ac576395a5827cd6d5b4296.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9213c78526d24419f1f66ad0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.674316;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_4bc742bfaa744a87597c9954.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.675293;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_2397ac3053ffa16f76d8cf1f.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;}
.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);}
.v5{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:14.422320px;}
.v1{vertical-align:18.720000px;}
.v4{vertical-align:33.142320px;}
.v2{vertical-align:38.880000px;}
.ls23{letter-spacing:-0.936000px;}
.ls1e{letter-spacing:-0.794880px;}
.ls1b{letter-spacing:-0.728640px;}
.ls25{letter-spacing:-0.662400px;}
.ls18{letter-spacing:-0.596160px;}
.ls14{letter-spacing:-0.529920px;}
.ls5{letter-spacing:-0.421200px;}
.ls1c{letter-spacing:-0.397440px;}
.ls11{letter-spacing:-0.331200px;}
.ls9{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.264960px;}
.lsa{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.198720px;}
.lsf{letter-spacing:-0.162000px;}
.ls8{letter-spacing:-0.144000px;}
.ls16{letter-spacing:-0.132480px;}
.ls15{letter-spacing:-0.108000px;}
.lsd{letter-spacing:-0.066240px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.066240px;}
.ls7{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.084240px;}
.ls1{letter-spacing:0.112608px;}
.lsc{letter-spacing:0.132480px;}
.ls0{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.149760px;}
.ls24{letter-spacing:0.198720px;}
.ls12{letter-spacing:0.216000px;}
.ls1d{letter-spacing:0.264960px;}
.lse{letter-spacing:0.324000px;}
.ls6{letter-spacing:0.331200px;}
.ls20{letter-spacing:1.142640px;}
.ls21{letter-spacing:1.146240px;}
.ls1f{letter-spacing:2.786400px;}
.ls1a{letter-spacing:12.866400px;}
.ls17{letter-spacing:49.985280px;}
.ls19{letter-spacing:50.011200px;}
.ls22{letter-spacing:54.864000px;}
.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:-19.122480px;}
.ws1{word-spacing:-18.617040px;}
.ws40{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.856000px;}
.ws41{word-spacing:-17.064000px;}
.ws2{word-spacing:-15.301440px;}
.ws28{word-spacing:-15.235200px;}
.ws42{word-spacing:-15.168960px;}
.ws18{word-spacing:-15.102720px;}
.ws9{word-spacing:-15.036480px;}
.ws4{word-spacing:-14.970240px;}
.ws5{word-spacing:-14.904000px;}
.ws1f{word-spacing:-14.837760px;}
.ws6{word-spacing:-14.771520px;}
.ws8{word-spacing:-14.705280px;}
.ws7{word-spacing:-14.639040px;}
.ws27{word-spacing:-14.572800px;}
.ws29{word-spacing:-14.440320px;}
.ws20{word-spacing:-14.374080px;}
.ws43{word-spacing:-14.307840px;}
.ws26{word-spacing:-14.241600px;}
.ws17{word-spacing:-12.420000px;}
.ws3e{word-spacing:-12.042000px;}
.ws3f{word-spacing:-9.437760px;}
.ws24{word-spacing:-3.576960px;}
.ws23{word-spacing:-3.179520px;}
.ws25{word-spacing:-0.728640px;}
.ws44{word-spacing:-0.662400px;}
.ws2a{word-spacing:-0.529920px;}
.ws12{word-spacing:-0.331200px;}
.ws16{word-spacing:-0.324000px;}
.ws1a{word-spacing:-0.270000px;}
.ws45{word-spacing:-0.264960px;}
.wsf{word-spacing:-0.144000px;}
.ws13{word-spacing:-0.132480px;}
.wsc{word-spacing:-0.072000px;}
.ws21{word-spacing:-0.066240px;}
.wsa{word-spacing:0.000000px;}
.ws19{word-spacing:0.054000px;}
.ws14{word-spacing:0.066240px;}
.ws1d{word-spacing:0.132480px;}
.ws1c{word-spacing:0.162000px;}
.ws15{word-spacing:0.198720px;}
.wse{word-spacing:0.216000px;}
.ws22{word-spacing:0.264960px;}
.wsd{word-spacing:0.288000px;}
.ws33{word-spacing:0.331200px;}
.ws11{word-spacing:0.397440px;}
.ws1e{word-spacing:0.529920px;}
.ws1b{word-spacing:0.662400px;}
.wsb{word-spacing:0.720000px;}
.ws34{word-spacing:0.927360px;}
.ws10{word-spacing:1.440000px;}
.ws3b{word-spacing:2.384640px;}
.ws2d{word-spacing:3.113280px;}
.ws3c{word-spacing:3.312000px;}
.ws35{word-spacing:5.961600px;}
.ws38{word-spacing:6.160320px;}
.ws36{word-spacing:8.147520px;}
.ws2b{word-spacing:8.876160px;}
.ws37{word-spacing:10.267200px;}
.ws39{word-spacing:10.797120px;}
.ws2c{word-spacing:14.639040px;}
.ws32{word-spacing:15.168960px;}
.ws31{word-spacing:15.235200px;}
.ws30{word-spacing:15.367680px;}
.ws3d{word-spacing:19.673280px;}
.ws3a{word-spacing:24.707520px;}
.ws2e{word-spacing:61.205760px;}
.ws2f{word-spacing:241.908480px;}
._5{margin-left:-241.012080px;}
._4{margin-left:-61.956720px;}
._3{margin-left:-2.330640px;}
._0{margin-left:-1.095120px;}
._1{width:1.311120px;}
._2{width:62.784000px;}
.fc2{color:transparent;}
.fc1{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yda{bottom:0.180000px;}
.ybc{bottom:0.360000px;}
.y31{bottom:4.500000px;}
.ye8{bottom:4.679850px;}
.y1b{bottom:4.680000px;}
.y10f{bottom:4.860000px;}
.y10d{bottom:5.040000px;}
.y39{bottom:5.220000px;}
.y3b{bottom:5.400000px;}
.y9e{bottom:5.760000px;}
.y18{bottom:6.840000px;}
.yd7{bottom:7.740000px;}
.yd9{bottom:8.460000px;}
.y112{bottom:9.360000px;}
.y21{bottom:9.720000px;}
.ya1{bottom:10.620000px;}
.y24{bottom:11.160000px;}
.y1e{bottom:13.500000px;}
.ye4{bottom:14.400000px;}
.ybf{bottom:14.580000px;}
.y27{bottom:14.760000px;}
.yad{bottom:14.940000px;}
.ydd{bottom:15.480000px;}
.y3d{bottom:15.660000px;}
.y9b{bottom:15.840000px;}
.y4e{bottom:16.560000px;}
.yba{bottom:18.360000px;}
.yb7{bottom:19.980000px;}
.y93{bottom:24.660000px;}
.y29{bottom:24.840000px;}
.yaf{bottom:25.200000px;}
.y9d{bottom:25.920000px;}
.y43{bottom:26.280000px;}
.yfa{bottom:34.920000px;}
.yb9{bottom:35.460000px;}
.y62{bottom:45.000000px;}
.y2{bottom:57.786480px;}
.y97{bottom:65.160000px;}
.y1{bottom:77.940000px;}
.yce{bottom:109.800000px;}
.y68{bottom:119.880000px;}
.y94{bottom:122.940000px;}
.ycf{bottom:124.380000px;}
.y95{bottom:137.700000px;}
.y67{bottom:141.660000px;}
.y35{bottom:151.565040px;}
.ycd{bottom:151.920000px;}
.y65{bottom:163.440000px;}
.y105{bottom:163.819440px;}
.y91{bottom:165.240000px;}
.y34{bottom:171.552960px;}
.ycc{bottom:173.880000px;}
.y66{bottom:178.200000px;}
.y92{bottom:180.000000px;}
.y104{bottom:183.972960px;}
.y33{bottom:191.706480px;}
.yca{bottom:195.840000px;}
.y103{bottom:204.126480px;}
.y63{bottom:205.380000px;}
.y90{bottom:207.360000px;}
.ycb{bottom:210.600000px;}
.y32{bottom:211.860000px;}
.y64{bottom:220.140000px;}
.y102{bottom:224.280000px;}
.y30{bottom:228.960000px;}
.yc8{bottom:238.140000px;}
.y101{bottom:241.200000px;}
.y60{bottom:247.320000px;}
.y8f{bottom:248.040000px;}
.y2e{bottom:250.740000px;}
.yc9{bottom:252.720000px;}
.y2f{bottom:260.460000px;}
.y8e{bottom:265.519440px;}
.y61{bottom:272.160000px;}
.yc6{bottom:280.260000px;}
.y2c{bottom:282.600000px;}
.yff{bottom:283.320000px;}
.y8d{bottom:285.672960px;}
.yc7{bottom:295.020000px;}
.y2d{bottom:297.360000px;}
.y100{bottom:298.080000px;}
.y8c{bottom:305.826480px;}
.y5f{bottom:309.420000px;}
.yc5{bottom:322.380000px;}
.y2a{bottom:324.720000px;}
.yfe{bottom:325.440000px;}
.y8b{bottom:325.980000px;}
.y5d{bottom:331.200000px;}
.y2b{bottom:339.480000px;}
.y5e{bottom:345.960000px;}
.y8a{bottom:346.133520px;}
.yfc{bottom:347.580000px;}
.yfd{bottom:362.340000px;}
.yc3{bottom:364.500000px;}
.y26{bottom:366.840000px;}
.y5b{bottom:373.140000px;}
.yc4{bottom:379.260000px;}
.y89{bottom:379.800000px;}
.y28{bottom:381.600000px;}
.y5c{bottom:387.900000px;}
.yf9{bottom:389.700000px;}
.y87{bottom:396.720000px;}
.y123{bottom:402.666480px;}
.yc1{bottom:406.620000px;}
.y23{bottom:408.960000px;}
.y88{bottom:411.480000px;}
.y59{bottom:415.080000px;}
.y25{bottom:420.120000px;}
.yc2{bottom:421.380000px;}
.yfb{bottom:424.620000px;}
.y5a{bottom:429.840000px;}
.y122{bottom:436.498560px;}
.y85{bottom:438.660000px;}
.y20{bottom:443.880000px;}
.ybe{bottom:448.920000px;}
.yf8{bottom:451.980000px;}
.y86{bottom:453.420000px;}
.y22{bottom:453.600000px;}
.y57{bottom:457.020000px;}
.yc0{bottom:463.500000px;}
.y121{bottom:470.165040px;}
.y58{bottom:471.780000px;}
.y1d{bottom:475.920000px;}
.y83{bottom:480.600000px;}
.y1f{bottom:489.420000px;}
.yb6{bottom:491.040000px;}
.yf7{bottom:494.100000px;}
.ybd{bottom:495.000000px;}
.y84{bottom:495.360000px;}
.y55{bottom:498.960000px;}
.y120{bottom:503.997120px;}
.yb8{bottom:511.020000px;}
.y56{bottom:513.720000px;}
.ybb{bottom:513.900000px;}
.y1c{bottom:515.520000px;}
.y82{bottom:522.540000px;}
.yf6{bottom:536.400000px;}
.y11f{bottom:537.663600px;}
.y53{bottom:540.900000px;}
.y1a{bottom:541.800000px;}
.yb4{bottom:543.780000px;}
.y81{bottom:544.320000px;}
.y54{bottom:555.660000px;}
.yb5{bottom:558.540000px;}
.y11e{bottom:559.440000px;}
.y17{bottom:563.760000px;}
.y7f{bottom:566.100000px;}
.y19{bottom:570.600000px;}
.yf4{bottom:578.520000px;}
.y80{bottom:580.860000px;}
.y51{bottom:582.840000px;}
.yb3{bottom:585.900000px;}
.y11d{bottom:593.100000px;}
.yf5{bottom:593.280000px;}
.y52{bottom:597.600000px;}
.y7e{bottom:608.040000px;}
.y16{bottom:608.760000px;}
.yf2{bottom:620.640000px;}
.yb2{bottom:622.800000px;}
.y50{bottom:624.780000px;}
.y15{bottom:626.253840px;}
.y11c{bottom:628.747920px;}
.y7d{bottom:629.820000px;}
.yf3{bottom:635.400000px;}
.y14{bottom:646.407360px;}
.y4d{bottom:646.560000px;}
.yb1{bottom:650.160000px;}
.y7b{bottom:651.600000px;}
.y11b{bottom:662.580000px;}
.yf0{bottom:662.760000px;}
.y4f{bottom:663.120000px;}
.y7c{bottom:666.360000px;}
.y13{bottom:666.560880px;}
.yf1{bottom:677.520000px;}
.y12{bottom:686.714400px;}
.yac{bottom:692.280000px;}
.y7a{bottom:693.540000px;}
.y11a{bottom:696.060000px;}
.yb0{bottom:703.080000px;}
.yee{bottom:704.880000px;}
.y11{bottom:706.867920px;}
.yae{bottom:707.220000px;}
.y4c{bottom:710.824500px;}
.y78{bottom:715.320000px;}
.y119{bottom:718.200000px;}
.yef{bottom:719.640000px;}
.y10{bottom:727.021440px;}
.yab{bottom:734.760000px;}
.y79{bottom:740.160000px;}
.y4b{bottom:742.320000px;}
.yeb{bottom:747.180000px;}
.y118{bottom:752.959440px;}
.yed{bottom:753.294420px;}
.y4a{bottom:759.792960px;}
.yf{bottom:760.687920px;}
.yec{bottom:771.300000px;}
.y117{bottom:773.112960px;}
.yaa{bottom:776.880000px;}
.y76{bottom:777.420000px;}
.y49{bottom:779.946480px;}
.ye7{bottom:789.300000px;}
.y116{bottom:793.266480px;}
.ye{bottom:794.520000px;}
.yea{bottom:795.414420px;}
.ya9{bottom:799.020000px;}
.y48{bottom:800.100000px;}
.y77{bottom:802.260000px;}
.ye9{bottom:813.420000px;}
.y47{bottom:817.020000px;}
.ya7{bottom:820.980000px;}
.y115{bottom:830.340000px;}
.ye3{bottom:831.420000px;}
.yd{bottom:835.380000px;}
.ya8{bottom:835.740000px;}
.ye6{bottom:837.534420px;}
.y45{bottom:838.980000px;}
.y74{bottom:839.520000px;}
.y114{bottom:852.660000px;}
.y46{bottom:853.740000px;}
.ye5{bottom:855.540000px;}
.yc{bottom:856.080000px;}
.ya6{bottom:863.100000px;}
.y75{bottom:864.360000px;}
.ye0{bottom:873.540000px;}
.y111{bottom:875.160000px;}
.ye2{bottom:880.734420px;}
.y42{bottom:881.280000px;}
.y113{bottom:884.520000px;}
.ya5{bottom:885.240000px;}
.yb{bottom:897.660000px;}
.ye1{bottom:898.740000px;}
.y72{bottom:901.620000px;}
.y110{bottom:906.480000px;}
.ya3{bottom:907.200000px;}
.y44{bottom:907.560000px;}
.ydc{bottom:915.660000px;}
.y73{bottom:916.380000px;}
.ya{bottom:918.540000px;}
.ydf{bottom:922.854420px;}
.y10e{bottom:928.980000px;}
.ya4{bottom:933.480000px;}
.y9{bottom:939.240000px;}
.yde{bottom:940.860000px;}
.y70{bottom:943.560000px;}
.y40{bottom:946.440000px;}
.y10c{bottom:951.300000px;}
.yd6{bottom:957.960000px;}
.y71{bottom:958.320000px;}
.y41{bottom:961.200000px;}
.ydb{bottom:961.740000px;}
.yd8{bottom:965.700000px;}
.ya0{bottom:972.360000px;}
.y10b{bottom:973.800000px;}
.y8{bottom:981.180000px;}
.ya2{bottom:982.980000px;}
.y6e{bottom:985.500000px;}
.yd5{bottom:986.220000px;}
.y3f{bottom:988.560000px;}
.y108{bottom:995.580000px;}
.y6f{bottom:1000.260000px;}
.y9f{bottom:1006.200000px;}
.y3c{bottom:1010.700000px;}
.y7{bottom:1010.880000px;}
.y3e{bottom:1026.360000px;}
.y6c{bottom:1027.440000px;}
.y9a{bottom:1028.160000px;}
.yd4{bottom:1028.340000px;}
.y6{bottom:1031.580000px;}
.y109{bottom:1040.580000px;}
.y9c{bottom:1044.000000px;}
.y10a{bottom:1046.520000px;}
.y6d{bottom:1052.280000px;}
.y3a{bottom:1054.800000px;}
.y5{bottom:1065.967920px;}
.yd2{bottom:1070.640000px;}
.y96{bottom:1072.440000px;}
.y106{bottom:1077.840000px;}
.y38{bottom:1078.200000px;}
.yd3{bottom:1085.220000px;}
.y6b{bottom:1089.540000px;}
.y107{bottom:1094.400000px;}
.y99{bottom:1097.280000px;}
.y4{bottom:1099.800000px;}
.y37{bottom:1101.420000px;}
.y6a{bottom:1111.320000px;}
.yd0{bottom:1112.760000px;}
.y98{bottom:1117.440000px;}
.yd1{bottom:1127.520000px;}
.y69{bottom:1133.100000px;}
.y3{bottom:1134.900000px;}
.y36{bottom:1142.100000px;}
.he{height:19.980000px;}
.hf{height:20.160000px;}
.h8{height:20.161500px;}
.h2e{height:20.700000px;}
.h2b{height:20.701500px;}
.h2a{height:20.878500px;}
.h2d{height:20.880000px;}
.h10{height:21.240000px;}
.h11{height:21.420000px;}
.h7{height:24.480000px;}
.h21{height:25.913672px;}
.h24{height:26.460000px;}
.h2c{height:29.700000px;}
.h29{height:29.974219px;}
.hd{height:30.060000px;}
.ha{height:30.240000px;}
.h1c{height:31.860000px;}
.h1f{height:32.152148px;}
.h27{height:32.529023px;}
.hb{height:33.121500px;}
.h6{height:37.415039px;}
.h9{height:37.800000px;}
.h15{height:38.759766px;}
.h19{height:40.140000px;}
.h23{height:40.141500px;}
.h13{height:40.318500px;}
.hc{height:40.320000px;}
.h1d{height:40.680000px;}
.h12{height:42.300000px;}
.h1b{height:42.480000px;}
.h28{height:43.920000px;}
.h16{height:43.921500px;}
.h1e{height:44.149219px;}
.h18{height:45.895781px;}
.h2{height:47.545312px;}
.h4{height:48.095156px;}
.h5{height:49.992188px;}
.h20{height:50.941500px;}
.h17{height:60.480000px;}
.h3{height:61.164492px;}
.h14{height:63.360000px;}
.h22{height:66.265313px;}
.h25{height:71.032148px;}
.h1a{height:80.640000px;}
.h26{height:80.687632px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wf{width:36.360000px;}
.wc{width:57.960000px;}
.w6{width:62.280000px;}
.w3{width:62.281500px;}
.w9{width:73.081500px;}
.we{width:91.260000px;}
.w5{width:136.620000px;}
.w2{width:147.420000px;}
.w8{width:169.020000px;}
.wb{width:205.018500px;}
.wa{width:529.380000px;}
.wd{width:540.540000px;}
.w4{width:593.820000px;}
.w7{width:604.440000px;}
.w10{width:643.680000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3f{left:2.520000px;}
.x3c{left:21.780000px;}
.x39{left:27.000000px;}
.x5{left:66.240000px;}
.x34{left:81.000000px;}
.xe{left:90.720000px;}
.x6{left:98.100000px;}
.xd{left:100.800000px;}
.x2{left:107.996400px;}
.x32{left:113.400000px;}
.x28{left:115.380000px;}
.x25{left:117.720000px;}
.x27{left:119.340000px;}
.x33{left:121.140000px;}
.x22{left:122.940000px;}
.x26{left:125.460000px;}
.x2d{left:129.780000px;}
.x20{left:131.580000px;}
.x3{left:135.000000px;}
.x29{left:137.340000px;}
.x23{left:138.420000px;}
.x15{left:140.040000px;}
.x4f{left:141.840000px;}
.x3a{left:145.620000px;}
.x2a{left:150.840000px;}
.x2f{left:153.360000px;}
.x2c{left:158.940000px;}
.x51{left:161.091360px;}
.x17{left:178.200000px;}
.x36{left:180.360000px;}
.x19{left:185.400000px;}
.x4d{left:197.100000px;}
.x11{left:204.480000px;}
.x7{left:215.100000px;}
.x47{left:226.800000px;}
.x1a{left:234.360000px;}
.x1c{left:236.700000px;}
.x8{left:248.220000px;}
.x13{left:252.180000px;}
.x16{left:254.700000px;}
.x3d{left:256.320000px;}
.xf{left:258.480000px;}
.xb{left:262.800000px;}
.x12{left:268.200000px;}
.x1d{left:269.820000px;}
.x24{left:271.800000px;}
.x4e{left:275.580000px;}
.x9{left:278.820000px;}
.x21{left:280.080000px;}
.x4{left:285.120000px;}
.x1b{left:301.860000px;}
.x1e{left:311.400000px;}
.x31{left:332.100000px;}
.x40{left:340.740000px;}
.x3e{left:343.620000px;}
.x3b{left:346.320000px;}
.x30{left:350.280000px;}
.xa{left:357.300000px;}
.x1f{left:389.880000px;}
.x2e{left:406.980000px;}
.x35{left:413.100000px;}
.x37{left:430.740000px;}
.x1{left:442.260000px;}
.x46{left:492.660000px;}
.x4a{left:558.357300px;}
.x49{left:559.800000px;}
.x48{left:565.020000px;}
.xc{left:582.840000px;}
.x18{left:586.260000px;}
.x41{left:588.240000px;}
.x50{left:596.700000px;}
.x44{left:642.060000px;}
.x38{left:683.100000px;}
.x42{left:687.060000px;}
.x10{left:689.040000px;}
.x43{left:741.420000px;}
.x45{left:756.720000px;}
.x2b{left:790.020000px;}
.x4c{left:794.880000px;}
.x4b{left:805.500000px;}
.x14{left:811.800000px;}
@media print{
.v5{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:12.819840pt;}
.v1{vertical-align:16.640000pt;}
.v4{vertical-align:29.459840pt;}
.v2{vertical-align:34.560000pt;}
.ls23{letter-spacing:-0.832000pt;}
.ls1e{letter-spacing:-0.706560pt;}
.ls1b{letter-spacing:-0.647680pt;}
.ls25{letter-spacing:-0.588800pt;}
.ls18{letter-spacing:-0.529920pt;}
.ls14{letter-spacing:-0.471040pt;}
.ls5{letter-spacing:-0.374400pt;}
.ls1c{letter-spacing:-0.353280pt;}
.ls11{letter-spacing:-0.294400pt;}
.ls9{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.235520pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.176640pt;}
.lsf{letter-spacing:-0.144000pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls16{letter-spacing:-0.117760pt;}
.ls15{letter-spacing:-0.096000pt;}
.lsd{letter-spacing:-0.058880pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.058880pt;}
.ls7{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.074880pt;}
.ls1{letter-spacing:0.100096pt;}
.lsc{letter-spacing:0.117760pt;}
.ls0{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.133120pt;}
.ls24{letter-spacing:0.176640pt;}
.ls12{letter-spacing:0.192000pt;}
.ls1d{letter-spacing:0.235520pt;}
.lse{letter-spacing:0.288000pt;}
.ls6{letter-spacing:0.294400pt;}
.ls20{letter-spacing:1.015680pt;}
.ls21{letter-spacing:1.018880pt;}
.ls1f{letter-spacing:2.476800pt;}
.ls1a{letter-spacing:11.436800pt;}
.ls17{letter-spacing:44.431360pt;}
.ls19{letter-spacing:44.454400pt;}
.ls22{letter-spacing:48.768000pt;}
.ws0{word-spacing:-16.997760pt;}
.ws1{word-spacing:-16.548480pt;}
.ws40{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.872000pt;}
.ws41{word-spacing:-15.168000pt;}
.ws2{word-spacing:-13.601280pt;}
.ws28{word-spacing:-13.542400pt;}
.ws42{word-spacing:-13.483520pt;}
.ws18{word-spacing:-13.424640pt;}
.ws9{word-spacing:-13.365760pt;}
.ws4{word-spacing:-13.306880pt;}
.ws5{word-spacing:-13.248000pt;}
.ws1f{word-spacing:-13.189120pt;}
.ws6{word-spacing:-13.130240pt;}
.ws8{word-spacing:-13.071360pt;}
.ws7{word-spacing:-13.012480pt;}
.ws27{word-spacing:-12.953600pt;}
.ws29{word-spacing:-12.835840pt;}
.ws20{word-spacing:-12.776960pt;}
.ws43{word-spacing:-12.718080pt;}
.ws26{word-spacing:-12.659200pt;}
.ws17{word-spacing:-11.040000pt;}
.ws3e{word-spacing:-10.704000pt;}
.ws3f{word-spacing:-8.389120pt;}
.ws24{word-spacing:-3.179520pt;}
.ws23{word-spacing:-2.826240pt;}
.ws25{word-spacing:-0.647680pt;}
.ws44{word-spacing:-0.588800pt;}
.ws2a{word-spacing:-0.471040pt;}
.ws12{word-spacing:-0.294400pt;}
.ws16{word-spacing:-0.288000pt;}
.ws1a{word-spacing:-0.240000pt;}
.ws45{word-spacing:-0.235520pt;}
.wsf{word-spacing:-0.128000pt;}
.ws13{word-spacing:-0.117760pt;}
.wsc{word-spacing:-0.064000pt;}
.ws21{word-spacing:-0.058880pt;}
.wsa{word-spacing:0.000000pt;}
.ws19{word-spacing:0.048000pt;}
.ws14{word-spacing:0.058880pt;}
.ws1d{word-spacing:0.117760pt;}
.ws1c{word-spacing:0.144000pt;}
.ws15{word-spacing:0.176640pt;}
.wse{word-spacing:0.192000pt;}
.ws22{word-spacing:0.235520pt;}
.wsd{word-spacing:0.256000pt;}
.ws33{word-spacing:0.294400pt;}
.ws11{word-spacing:0.353280pt;}
.ws1e{word-spacing:0.471040pt;}
.ws1b{word-spacing:0.588800pt;}
.wsb{word-spacing:0.640000pt;}
.ws34{word-spacing:0.824320pt;}
.ws10{word-spacing:1.280000pt;}
.ws3b{word-spacing:2.119680pt;}
.ws2d{word-spacing:2.767360pt;}
.ws3c{word-spacing:2.944000pt;}
.ws35{word-spacing:5.299200pt;}
.ws38{word-spacing:5.475840pt;}
.ws36{word-spacing:7.242240pt;}
.ws2b{word-spacing:7.889920pt;}
.ws37{word-spacing:9.126400pt;}
.ws39{word-spacing:9.597440pt;}
.ws2c{word-spacing:13.012480pt;}
.ws32{word-spacing:13.483520pt;}
.ws31{word-spacing:13.542400pt;}
.ws30{word-spacing:13.660160pt;}
.ws3d{word-spacing:17.487360pt;}
.ws3a{word-spacing:21.962240pt;}
.ws2e{word-spacing:54.405120pt;}
.ws2f{word-spacing:215.029760pt;}
._5{margin-left:-214.232960pt;}
._4{margin-left:-55.072640pt;}
._3{margin-left:-2.071680pt;}
._0{margin-left:-0.973440pt;}
._1{width:1.165440pt;}
._2{width:55.808000pt;}
.fs5{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yda{bottom:0.160000pt;}
.ybc{bottom:0.320000pt;}
.y31{bottom:4.000000pt;}
.ye8{bottom:4.159867pt;}
.y1b{bottom:4.160000pt;}
.y10f{bottom:4.320000pt;}
.y10d{bottom:4.480000pt;}
.y39{bottom:4.640000pt;}
.y3b{bottom:4.800000pt;}
.y9e{bottom:5.120000pt;}
.y18{bottom:6.080000pt;}
.yd7{bottom:6.880000pt;}
.yd9{bottom:7.520000pt;}
.y112{bottom:8.320000pt;}
.y21{bottom:8.640000pt;}
.ya1{bottom:9.440000pt;}
.y24{bottom:9.920000pt;}
.y1e{bottom:12.000000pt;}
.ye4{bottom:12.800000pt;}
.ybf{bottom:12.960000pt;}
.y27{bottom:13.120000pt;}
.yad{bottom:13.280000pt;}
.ydd{bottom:13.760000pt;}
.y3d{bottom:13.920000pt;}
.y9b{bottom:14.080000pt;}
.y4e{bottom:14.720000pt;}
.yba{bottom:16.320000pt;}
.yb7{bottom:17.760000pt;}
.y93{bottom:21.920000pt;}
.y29{bottom:22.080000pt;}
.yaf{bottom:22.400000pt;}
.y9d{bottom:23.040000pt;}
.y43{bottom:23.360000pt;}
.yfa{bottom:31.040000pt;}
.yb9{bottom:31.520000pt;}
.y62{bottom:40.000000pt;}
.y2{bottom:51.365760pt;}
.y97{bottom:57.920000pt;}
.y1{bottom:69.280000pt;}
.yce{bottom:97.600000pt;}
.y68{bottom:106.560000pt;}
.y94{bottom:109.280000pt;}
.ycf{bottom:110.560000pt;}
.y95{bottom:122.400000pt;}
.y67{bottom:125.920000pt;}
.y35{bottom:134.724480pt;}
.ycd{bottom:135.040000pt;}
.y65{bottom:145.280000pt;}
.y105{bottom:145.617280pt;}
.y91{bottom:146.880000pt;}
.y34{bottom:152.491520pt;}
.ycc{bottom:154.560000pt;}
.y66{bottom:158.400000pt;}
.y92{bottom:160.000000pt;}
.y104{bottom:163.531520pt;}
.y33{bottom:170.405760pt;}
.yca{bottom:174.080000pt;}
.y103{bottom:181.445760pt;}
.y63{bottom:182.560000pt;}
.y90{bottom:184.320000pt;}
.ycb{bottom:187.200000pt;}
.y32{bottom:188.320000pt;}
.y64{bottom:195.680000pt;}
.y102{bottom:199.360000pt;}
.y30{bottom:203.520000pt;}
.yc8{bottom:211.680000pt;}
.y101{bottom:214.400000pt;}
.y60{bottom:219.840000pt;}
.y8f{bottom:220.480000pt;}
.y2e{bottom:222.880000pt;}
.yc9{bottom:224.640000pt;}
.y2f{bottom:231.520000pt;}
.y8e{bottom:236.017280pt;}
.y61{bottom:241.920000pt;}
.yc6{bottom:249.120000pt;}
.y2c{bottom:251.200000pt;}
.yff{bottom:251.840000pt;}
.y8d{bottom:253.931520pt;}
.yc7{bottom:262.240000pt;}
.y2d{bottom:264.320000pt;}
.y100{bottom:264.960000pt;}
.y8c{bottom:271.845760pt;}
.y5f{bottom:275.040000pt;}
.yc5{bottom:286.560000pt;}
.y2a{bottom:288.640000pt;}
.yfe{bottom:289.280000pt;}
.y8b{bottom:289.760000pt;}
.y5d{bottom:294.400000pt;}
.y2b{bottom:301.760000pt;}
.y5e{bottom:307.520000pt;}
.y8a{bottom:307.674240pt;}
.yfc{bottom:308.960000pt;}
.yfd{bottom:322.080000pt;}
.yc3{bottom:324.000000pt;}
.y26{bottom:326.080000pt;}
.y5b{bottom:331.680000pt;}
.yc4{bottom:337.120000pt;}
.y89{bottom:337.600000pt;}
.y28{bottom:339.200000pt;}
.y5c{bottom:344.800000pt;}
.yf9{bottom:346.400000pt;}
.y87{bottom:352.640000pt;}
.y123{bottom:357.925760pt;}
.yc1{bottom:361.440000pt;}
.y23{bottom:363.520000pt;}
.y88{bottom:365.760000pt;}
.y59{bottom:368.960000pt;}
.y25{bottom:373.440000pt;}
.yc2{bottom:374.560000pt;}
.yfb{bottom:377.440000pt;}
.y5a{bottom:382.080000pt;}
.y122{bottom:387.998720pt;}
.y85{bottom:389.920000pt;}
.y20{bottom:394.560000pt;}
.ybe{bottom:399.040000pt;}
.yf8{bottom:401.760000pt;}
.y86{bottom:403.040000pt;}
.y22{bottom:403.200000pt;}
.y57{bottom:406.240000pt;}
.yc0{bottom:412.000000pt;}
.y121{bottom:417.924480pt;}
.y58{bottom:419.360000pt;}
.y1d{bottom:423.040000pt;}
.y83{bottom:427.200000pt;}
.y1f{bottom:435.040000pt;}
.yb6{bottom:436.480000pt;}
.yf7{bottom:439.200000pt;}
.ybd{bottom:440.000000pt;}
.y84{bottom:440.320000pt;}
.y55{bottom:443.520000pt;}
.y120{bottom:447.997440pt;}
.yb8{bottom:454.240000pt;}
.y56{bottom:456.640000pt;}
.ybb{bottom:456.800000pt;}
.y1c{bottom:458.240000pt;}
.y82{bottom:464.480000pt;}
.yf6{bottom:476.800000pt;}
.y11f{bottom:477.923200pt;}
.y53{bottom:480.800000pt;}
.y1a{bottom:481.600000pt;}
.yb4{bottom:483.360000pt;}
.y81{bottom:483.840000pt;}
.y54{bottom:493.920000pt;}
.yb5{bottom:496.480000pt;}
.y11e{bottom:497.280000pt;}
.y17{bottom:501.120000pt;}
.y7f{bottom:503.200000pt;}
.y19{bottom:507.200000pt;}
.yf4{bottom:514.240000pt;}
.y80{bottom:516.320000pt;}
.y51{bottom:518.080000pt;}
.yb3{bottom:520.800000pt;}
.y11d{bottom:527.200000pt;}
.yf5{bottom:527.360000pt;}
.y52{bottom:531.200000pt;}
.y7e{bottom:540.480000pt;}
.y16{bottom:541.120000pt;}
.yf2{bottom:551.680000pt;}
.yb2{bottom:553.600000pt;}
.y50{bottom:555.360000pt;}
.y15{bottom:556.670080pt;}
.y11c{bottom:558.887040pt;}
.y7d{bottom:559.840000pt;}
.yf3{bottom:564.800000pt;}
.y14{bottom:574.584320pt;}
.y4d{bottom:574.720000pt;}
.yb1{bottom:577.920000pt;}
.y7b{bottom:579.200000pt;}
.y11b{bottom:588.960000pt;}
.yf0{bottom:589.120000pt;}
.y4f{bottom:589.440000pt;}
.y7c{bottom:592.320000pt;}
.y13{bottom:592.498560pt;}
.yf1{bottom:602.240000pt;}
.y12{bottom:610.412800pt;}
.yac{bottom:615.360000pt;}
.y7a{bottom:616.480000pt;}
.y11a{bottom:618.720000pt;}
.yb0{bottom:624.960000pt;}
.yee{bottom:626.560000pt;}
.y11{bottom:628.327040pt;}
.yae{bottom:628.640000pt;}
.y4c{bottom:631.844000pt;}
.y78{bottom:635.840000pt;}
.y119{bottom:638.400000pt;}
.yef{bottom:639.680000pt;}
.y10{bottom:646.241280pt;}
.yab{bottom:653.120000pt;}
.y79{bottom:657.920000pt;}
.y4b{bottom:659.840000pt;}
.yeb{bottom:664.160000pt;}
.y118{bottom:669.297280pt;}
.yed{bottom:669.595040pt;}
.y4a{bottom:675.371520pt;}
.yf{bottom:676.167040pt;}
.yec{bottom:685.600000pt;}
.y117{bottom:687.211520pt;}
.yaa{bottom:690.560000pt;}
.y76{bottom:691.040000pt;}
.y49{bottom:693.285760pt;}
.ye7{bottom:701.600000pt;}
.y116{bottom:705.125760pt;}
.ye{bottom:706.240000pt;}
.yea{bottom:707.035040pt;}
.ya9{bottom:710.240000pt;}
.y48{bottom:711.200000pt;}
.y77{bottom:713.120000pt;}
.ye9{bottom:723.040000pt;}
.y47{bottom:726.240000pt;}
.ya7{bottom:729.760000pt;}
.y115{bottom:738.080000pt;}
.ye3{bottom:739.040000pt;}
.yd{bottom:742.560000pt;}
.ya8{bottom:742.880000pt;}
.ye6{bottom:744.475040pt;}
.y45{bottom:745.760000pt;}
.y74{bottom:746.240000pt;}
.y114{bottom:757.920000pt;}
.y46{bottom:758.880000pt;}
.ye5{bottom:760.480000pt;}
.yc{bottom:760.960000pt;}
.ya6{bottom:767.200000pt;}
.y75{bottom:768.320000pt;}
.ye0{bottom:776.480000pt;}
.y111{bottom:777.920000pt;}
.ye2{bottom:782.875040pt;}
.y42{bottom:783.360000pt;}
.y113{bottom:786.240000pt;}
.ya5{bottom:786.880000pt;}
.yb{bottom:797.920000pt;}
.ye1{bottom:798.880000pt;}
.y72{bottom:801.440000pt;}
.y110{bottom:805.760000pt;}
.ya3{bottom:806.400000pt;}
.y44{bottom:806.720000pt;}
.ydc{bottom:813.920000pt;}
.y73{bottom:814.560000pt;}
.ya{bottom:816.480000pt;}
.ydf{bottom:820.315040pt;}
.y10e{bottom:825.760000pt;}
.ya4{bottom:829.760000pt;}
.y9{bottom:834.880000pt;}
.yde{bottom:836.320000pt;}
.y70{bottom:838.720000pt;}
.y40{bottom:841.280000pt;}
.y10c{bottom:845.600000pt;}
.yd6{bottom:851.520000pt;}
.y71{bottom:851.840000pt;}
.y41{bottom:854.400000pt;}
.ydb{bottom:854.880000pt;}
.yd8{bottom:858.400000pt;}
.ya0{bottom:864.320000pt;}
.y10b{bottom:865.600000pt;}
.y8{bottom:872.160000pt;}
.ya2{bottom:873.760000pt;}
.y6e{bottom:876.000000pt;}
.yd5{bottom:876.640000pt;}
.y3f{bottom:878.720000pt;}
.y108{bottom:884.960000pt;}
.y6f{bottom:889.120000pt;}
.y9f{bottom:894.400000pt;}
.y3c{bottom:898.400000pt;}
.y7{bottom:898.560000pt;}
.y3e{bottom:912.320000pt;}
.y6c{bottom:913.280000pt;}
.y9a{bottom:913.920000pt;}
.yd4{bottom:914.080000pt;}
.y6{bottom:916.960000pt;}
.y109{bottom:924.960000pt;}
.y9c{bottom:928.000000pt;}
.y10a{bottom:930.240000pt;}
.y6d{bottom:935.360000pt;}
.y3a{bottom:937.600000pt;}
.y5{bottom:947.527040pt;}
.yd2{bottom:951.680000pt;}
.y96{bottom:953.280000pt;}
.y106{bottom:958.080000pt;}
.y38{bottom:958.400000pt;}
.yd3{bottom:964.640000pt;}
.y6b{bottom:968.480000pt;}
.y107{bottom:972.800000pt;}
.y99{bottom:975.360000pt;}
.y4{bottom:977.600000pt;}
.y37{bottom:979.040000pt;}
.y6a{bottom:987.840000pt;}
.yd0{bottom:989.120000pt;}
.y98{bottom:993.280000pt;}
.yd1{bottom:1002.240000pt;}
.y69{bottom:1007.200000pt;}
.y3{bottom:1008.800000pt;}
.y36{bottom:1015.200000pt;}
.he{height:17.760000pt;}
.hf{height:17.920000pt;}
.h8{height:17.921333pt;}
.h2e{height:18.400000pt;}
.h2b{height:18.401333pt;}
.h2a{height:18.558667pt;}
.h2d{height:18.560000pt;}
.h10{height:18.880000pt;}
.h11{height:19.040000pt;}
.h7{height:21.760000pt;}
.h21{height:23.034375pt;}
.h24{height:23.520000pt;}
.h2c{height:26.400000pt;}
.h29{height:26.643750pt;}
.hd{height:26.720000pt;}
.ha{height:26.880000pt;}
.h1c{height:28.320000pt;}
.h1f{height:28.579687pt;}
.h27{height:28.914687pt;}
.hb{height:29.441333pt;}
.h6{height:33.257812pt;}
.h9{height:33.600000pt;}
.h15{height:34.453125pt;}
.h19{height:35.680000pt;}
.h23{height:35.681333pt;}
.h13{height:35.838667pt;}
.hc{height:35.840000pt;}
.h1d{height:36.160000pt;}
.h12{height:37.600000pt;}
.h1b{height:37.760000pt;}
.h28{height:39.040000pt;}
.h16{height:39.041333pt;}
.h1e{height:39.243750pt;}
.h18{height:40.796250pt;}
.h2{height:42.262500pt;}
.h4{height:42.751250pt;}
.h5{height:44.437500pt;}
.h20{height:45.281333pt;}
.h17{height:53.760000pt;}
.h3{height:54.368437pt;}
.h14{height:56.320000pt;}
.h22{height:58.902500pt;}
.h25{height:63.139687pt;}
.h1a{height:71.680000pt;}
.h26{height:71.722340pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wf{width:32.320000pt;}
.wc{width:51.520000pt;}
.w6{width:55.360000pt;}
.w3{width:55.361333pt;}
.w9{width:64.961333pt;}
.we{width:81.120000pt;}
.w5{width:121.440000pt;}
.w2{width:131.040000pt;}
.w8{width:150.240000pt;}
.wb{width:182.238667pt;}
.wa{width:470.560000pt;}
.wd{width:480.480000pt;}
.w4{width:527.840000pt;}
.w7{width:537.280000pt;}
.w10{width:572.160000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3f{left:2.240000pt;}
.x3c{left:19.360000pt;}
.x39{left:24.000000pt;}
.x5{left:58.880000pt;}
.x34{left:72.000000pt;}
.xe{left:80.640000pt;}
.x6{left:87.200000pt;}
.xd{left:89.600000pt;}
.x2{left:95.996800pt;}
.x32{left:100.800000pt;}
.x28{left:102.560000pt;}
.x25{left:104.640000pt;}
.x27{left:106.080000pt;}
.x33{left:107.680000pt;}
.x22{left:109.280000pt;}
.x26{left:111.520000pt;}
.x2d{left:115.360000pt;}
.x20{left:116.960000pt;}
.x3{left:120.000000pt;}
.x29{left:122.080000pt;}
.x23{left:123.040000pt;}
.x15{left:124.480000pt;}
.x4f{left:126.080000pt;}
.x3a{left:129.440000pt;}
.x2a{left:134.080000pt;}
.x2f{left:136.320000pt;}
.x2c{left:141.280000pt;}
.x51{left:143.192320pt;}
.x17{left:158.400000pt;}
.x36{left:160.320000pt;}
.x19{left:164.800000pt;}
.x4d{left:175.200000pt;}
.x11{left:181.760000pt;}
.x7{left:191.200000pt;}
.x47{left:201.600000pt;}
.x1a{left:208.320000pt;}
.x1c{left:210.400000pt;}
.x8{left:220.640000pt;}
.x13{left:224.160000pt;}
.x16{left:226.400000pt;}
.x3d{left:227.840000pt;}
.xf{left:229.760000pt;}
.xb{left:233.600000pt;}
.x12{left:238.400000pt;}
.x1d{left:239.840000pt;}
.x24{left:241.600000pt;}
.x4e{left:244.960000pt;}
.x9{left:247.840000pt;}
.x21{left:248.960000pt;}
.x4{left:253.440000pt;}
.x1b{left:268.320000pt;}
.x1e{left:276.800000pt;}
.x31{left:295.200000pt;}
.x40{left:302.880000pt;}
.x3e{left:305.440000pt;}
.x3b{left:307.840000pt;}
.x30{left:311.360000pt;}
.xa{left:317.600000pt;}
.x1f{left:346.560000pt;}
.x2e{left:361.760000pt;}
.x35{left:367.200000pt;}
.x37{left:382.880000pt;}
.x1{left:393.120000pt;}
.x46{left:437.920000pt;}
.x4a{left:496.317600pt;}
.x49{left:497.600000pt;}
.x48{left:502.240000pt;}
.xc{left:518.080000pt;}
.x18{left:521.120000pt;}
.x41{left:522.880000pt;}
.x50{left:530.400000pt;}
.x44{left:570.720000pt;}
.x38{left:607.200000pt;}
.x42{left:610.720000pt;}
.x10{left:612.480000pt;}
.x43{left:659.040000pt;}
.x45{left:672.640000pt;}
.x2b{left:702.240000pt;}
.x4c{left:706.560000pt;}
.x4b{left:716.000000pt;}
.x14{left:721.600000pt;}
}




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