
    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_043740c8b4646755c575f76a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.197754;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_9901f45610fc8983bbb3e6e5.woff')format("woff");}.ff2{font-family:ff2;line-height:1.084961;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_e2621191500a210e98184fac.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_900f2452a8dc3e2e923d7853.woff')format("woff");}.ff4{font-family:ff4;line-height:0.931000;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_ef395b46f26a434cbc7637a9.woff')format("woff");}.ff5{font-family:ff5;line-height:0.862000;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_cf885d088c9500396312e02b.woff')format("woff");}.ff6{font-family:ff6;line-height:1.082000;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_ef395b46f26a434cbc7637a9.woff')format("woff");}.ff7{font-family:ff7;line-height:0.862000;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_cf885d088c9500396312e02b.woff')format("woff");}.ff8{font-family:ff8;line-height:1.082000;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m3{transform:matrix(0.265373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265373,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.275171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275171,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-22.200000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.372934px;}
.v3{vertical-align:3.000000px;}
.v1{vertical-align:26.640000px;}
.ls4{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.025800px;}
.ls9{letter-spacing:0.129600px;}
.lsf{letter-spacing:0.177000px;}
.ls7{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.360000px;}
.lse{letter-spacing:0.576000px;}
.lsa{letter-spacing:1.511400px;}
.ls13{letter-spacing:3.379800px;}
.ls10{letter-spacing:4.035600px;}
.ls5{letter-spacing:4.197333px;}
.ls0{letter-spacing:4.200000px;}
.ls16{letter-spacing:5.760000px;}
.ls11{letter-spacing:6.000000px;}
.ls8{letter-spacing:6.070200px;}
.ls15{letter-spacing:6.480000px;}
.lsb{letter-spacing:6.528000px;}
.ls1{letter-spacing:6.600000px;}
.ls3{letter-spacing:7.200000px;}
.ls2{letter-spacing:10.200000px;}
.ls14{letter-spacing:10.956000px;}
.lsc{letter-spacing:11.478600px;}
.ls17{letter-spacing:19.800000px;}
.lsd{letter-spacing:180.165965px;}
.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;}
}
.ws6{word-spacing:-180.205852px;}
.ws1b{word-spacing:-36.102000px;}
.ws5{word-spacing:-27.432000px;}
.ws18{word-spacing:-22.860000px;}
.ws16{word-spacing:-20.592000px;}
.ws8{word-spacing:-20.232000px;}
.ws19{word-spacing:-18.546000px;}
.ws15{word-spacing:-18.144000px;}
.ws17{word-spacing:-17.784000px;}
.ws4{word-spacing:-16.860000px;}
.ws1a{word-spacing:-16.302000px;}
.ws2{word-spacing:-16.017000px;}
.ws1c{word-spacing:-14.820000px;}
.ws1{word-spacing:-14.079000px;}
.ws0{word-spacing:-12.139200px;}
.ws9{word-spacing:-0.055921px;}
.wse{word-spacing:-0.050849px;}
.ws3{word-spacing:0.000000px;}
.ws7{word-spacing:11.048477px;}
.ws11{word-spacing:14.237832px;}
.ws14{word-spacing:169.481050px;}
.wsf{word-spacing:171.159080px;}
.ws13{word-spacing:171.718424px;}
.ws10{word-spacing:172.735412px;}
.wsb{word-spacing:179.505126px;}
.ws12{word-spacing:187.634286px;}
.wsa{word-spacing:191.136611px;}
.wsc{word-spacing:193.653038px;}
.wsd{word-spacing:193.820800px;}
._f{margin-left:-1584.128933px;}
._1b{margin-left:-817.910667px;}
._10{margin-left:-370.288133px;}
._17{margin-left:-179.687331px;}
._3b{margin-left:-147.585133px;}
._15{margin-left:-20.342800px;}
._3a{margin-left:-18.911200px;}
._13{margin-left:-14.274000px;}
._38{margin-left:-11.537067px;}
._5{margin-left:-9.588000px;}
._c{margin-left:-7.792000px;}
._4{margin-left:-6.732000px;}
._3{margin-left:-5.610000px;}
._0{margin-left:-4.410000px;}
._9{margin-left:-2.520000px;}
._2{margin-left:-1.296000px;}
._1{width:1.397333px;}
._7{width:2.706667px;}
._b{width:4.682667px;}
._a{width:5.874667px;}
._d{width:7.598000px;}
._8{width:8.651333px;}
._6{width:10.284667px;}
._12{width:12.186333px;}
._14{width:13.625667px;}
._11{width:15.624000px;}
._1c{width:16.632000px;}
._37{width:17.712000px;}
._39{width:20.064000px;}
._3c{width:21.069333px;}
._3d{width:22.421333px;}
._16{width:38.923200px;}
._e{width:56.923800px;}
._35{width:168.260665px;}
._30{width:169.794904px;}
._2d{width:172.295223px;}
._32{width:177.238538px;}
._2c{width:179.142436px;}
._2e{width:181.560737px;}
._31{width:183.645563px;}
._21{width:185.432710px;}
._20{width:192.426358px;}
._27{width:195.442497px;}
._24{width:197.008274px;}
._29{width:198.238527px;}
._1f{width:199.301018px;}
._1d{width:201.202319px;}
._28{width:202.991778px;}
._23{width:210.373297px;}
._22{width:213.053913px;}
._1e{width:214.951059px;}
._26{width:219.600196px;}
._2a{width:225.032222px;}
._25{width:227.093557px;}
._34{width:238.280288px;}
._2b{width:261.671012px;}
._2f{width:269.857766px;}
._33{width:290.350074px;}
._36{width:298.536827px;}
._1a{width:947.595218px;}
._19{width:996.296269px;}
._18{width:1005.151005px;}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:36.000000px;}
.fsa{font-size:39.886200px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:43.200000px;}
.fs1{font-size:48.000000px;}
.fsc{font-size:50.849400px;}
.fs9{font-size:54.000000px;}
.fsb{font-size:55.920600px;}
.fs8{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.yba{bottom:8.456777px;}
.yb9{bottom:29.510883px;}
.yb8{bottom:50.564989px;}
.yb7{bottom:71.619095px;}
.yb6{bottom:92.673201px;}
.y1{bottom:107.837550px;}
.yb5{bottom:113.098200px;}
.y20{bottom:171.813150px;}
.y16c{bottom:176.762550px;}
.y65{bottom:177.363150px;}
.y146{bottom:181.000350px;}
.y1f{bottom:188.313150px;}
.y125{bottom:189.121500px;}
.y92{bottom:193.863150px;}
.y16b{bottom:194.762550px;}
.y145{bottom:200.800350px;}
.y44{bottom:204.813150px;}
.y124{bottom:208.921500px;}
.y1e{bottom:210.363150px;}
.yfd{bottom:211.098750px;}
.yab{bottom:211.311450px;}
.y16a{bottom:212.762550px;}
.yaa{bottom:218.114550px;}
.y144{bottom:220.600350px;}
.y1d{bottom:221.313150px;}
.y91{bottom:226.863150px;}
.y123{bottom:228.721500px;}
.y169{bottom:230.762550px;}
.yfc{bottom:230.898750px;}
.yed{bottom:237.602700px;}
.y1c{bottom:237.813150px;}
.y143{bottom:240.400350px;}
.yb3{bottom:240.700650px;}
.y43{bottom:243.363150px;}
.yeb{bottom:246.106650px;}
.y122{bottom:248.521500px;}
.yfb{bottom:250.698750px;}
.ya7{bottom:253.612500px;}
.y1b{bottom:254.313150px;}
.y64{bottom:259.012500px;}
.yec{bottom:259.202700px;}
.y42{bottom:259.863150px;}
.yb2{bottom:262.300650px;}
.y168{bottom:266.762550px;}
.yea{bottom:267.706650px;}
.y121{bottom:268.321500px;}
.yfa{bottom:270.498900px;}
.y1a{bottom:270.813150px;}
.ya6{bottom:275.662500px;}
.y63{bottom:280.612500px;}
.y142{bottom:281.800350px;}
.yb1{bottom:283.900650px;}
.y167{bottom:284.762550px;}
.y41{bottom:287.313150px;}
.y120{bottom:288.121500px;}
.ye9{bottom:289.306650px;}
.yf9{bottom:290.298750px;}
.y19{bottom:292.863150px;}
.ya5{bottom:297.712500px;}
.y62{bottom:302.212500px;}
.y166{bottom:302.762550px;}
.y40{bottom:303.813150px;}
.yb0{bottom:305.500650px;}
.y11f{bottom:307.921500px;}
.y90{bottom:309.363150px;}
.yf8{bottom:310.098750px;}
.ye8{bottom:310.906650px;}
.y141{bottom:311.904300px;}
.ya4{bottom:319.762500px;}
.y3f{bottom:320.313150px;}
.y165{bottom:320.762550px;}
.y61{bottom:324.112500px;}
.y82{bottom:324.308550px;}
.ya9{bottom:325.863150px;}
.yaf{bottom:327.100650px;}
.y11e{bottom:327.721500px;}
.yf7{bottom:329.898750px;}
.ye7{bottom:332.506650px;}
.y18{bottom:332.738850px;}
.y140{bottom:333.504300px;}
.ya8{bottom:336.813150px;}
.ya3{bottom:341.812500px;}
.y3e{bottom:342.363150px;}
.y81{bottom:345.908550px;}
.y60{bottom:346.012500px;}
.y11d{bottom:347.521500px;}
.yae{bottom:348.700650px;}
.yf6{bottom:349.698750px;}
.y3d{bottom:353.313150px;}
.ye6{bottom:354.106650px;}
.y17{bottom:354.338850px;}
.y13f{bottom:355.104150px;}
.y8f{bottom:358.863150px;}
.ya2{bottom:363.862500px;}
.y11c{bottom:367.321500px;}
.y80{bottom:367.508550px;}
.y5f{bottom:367.912500px;}
.yf5{bottom:369.498900px;}
.y3c{bottom:369.813150px;}
.ye5{bottom:375.706650px;}
.y16{bottom:375.938850px;}
.y164{bottom:385.562550px;}
.ya1{bottom:385.912500px;}
.y11b{bottom:387.121500px;}
.y7f{bottom:389.108550px;}
.yf4{bottom:389.298750px;}
.y5e{bottom:389.812500px;}
.y3b{bottom:391.863150px;}
.ye4{bottom:397.306650px;}
.y15{bottom:397.538850px;}
.yad{bottom:400.404600px;}
.y3a{bottom:402.813150px;}
.y163{bottom:405.362550px;}
.y11a{bottom:406.921500px;}
.ya0{bottom:407.962500px;}
.yf3{bottom:409.098750px;}
.y7e{bottom:410.708550px;}
.y5d{bottom:411.712500px;}
.y8e{bottom:414.308550px;}
.ye3{bottom:418.906650px;}
.y14{bottom:419.138850px;}
.y39{bottom:419.313150px;}
.y162{bottom:425.162550px;}
.y119{bottom:426.721500px;}
.yf2{bottom:428.898750px;}
.y9f{bottom:430.012500px;}
.y13e{bottom:430.704300px;}
.yb4{bottom:431.443500px;}
.y7d{bottom:432.308550px;}
.y5c{bottom:433.612500px;}
.ye2{bottom:440.506650px;}
.y13{bottom:440.738850px;}
.y38{bottom:441.363150px;}
.y161{bottom:444.962550px;}
.y118{bottom:446.521500px;}
.yf1{bottom:448.698750px;}
.y9e{bottom:452.062500px;}
.y37{bottom:452.313150px;}
.y7c{bottom:453.908550px;}
.y5b{bottom:455.512500px;}
.ye1{bottom:462.106650px;}
.y12{bottom:462.338850px;}
.y160{bottom:464.762550px;}
.y13d{bottom:464.904300px;}
.y117{bottom:466.321500px;}
.yf0{bottom:468.498900px;}
.y36{bottom:468.813150px;}
.y9d{bottom:474.112500px;}
.y93{bottom:474.150750px;}
.y7b{bottom:475.508550px;}
.y5a{bottom:477.412500px;}
.ye0{bottom:483.706650px;}
.y11{bottom:483.938850px;}
.y15f{bottom:484.562550px;}
.y13c{bottom:484.704300px;}
.y35{bottom:485.313150px;}
.y116{bottom:486.121500px;}
.yef{bottom:488.298750px;}
.y9c{bottom:496.162500px;}
.y7a{bottom:497.108550px;}
.y59{bottom:499.312500px;}
.y15e{bottom:504.362550px;}
.y13b{bottom:504.504300px;}
.y94{bottom:505.149600px;}
.ydf{bottom:505.306650px;}
.y10{bottom:505.538850px;}
.y115{bottom:505.921500px;}
.yee{bottom:516.602700px;}
.y9b{bottom:518.212500px;}
.y79{bottom:518.708550px;}
.y58{bottom:521.212500px;}
.y15d{bottom:524.162550px;}
.y13a{bottom:524.304300px;}
.y114{bottom:525.721500px;}
.yde{bottom:526.906650px;}
.yf{bottom:527.138850px;}
.y34{bottom:540.262500px;}
.y78{bottom:540.308550px;}
.y57{bottom:543.112500px;}
.y15c{bottom:543.962550px;}
.y139{bottom:544.104150px;}
.y113{bottom:545.521500px;}
.ydd{bottom:548.506650px;}
.ye{bottom:548.738850px;}
.y98{bottom:551.053629px;}
.y77{bottom:561.908550px;}
.y33{bottom:562.312500px;}
.y15b{bottom:563.762550px;}
.y138{bottom:563.904300px;}
.y56{bottom:565.012500px;}
.y112{bottom:565.321500px;}
.y9a{bottom:569.672706px;}
.ydc{bottom:570.106650px;}
.yd{bottom:570.338850px;}
.y99{bottom:582.047400px;}
.y76{bottom:583.508550px;}
.y15a{bottom:583.562550px;}
.y137{bottom:583.704300px;}
.y32{bottom:584.362500px;}
.y111{bottom:585.121500px;}
.y55{bottom:586.912500px;}
.ydb{bottom:591.706650px;}
.yc{bottom:591.938850px;}
.y159{bottom:603.362550px;}
.y136{bottom:603.504300px;}
.y110{bottom:604.921500px;}
.y75{bottom:605.108550px;}
.y31{bottom:606.412500px;}
.y54{bottom:608.812500px;}
.yac{bottom:611.812500px;}
.yda{bottom:613.306650px;}
.yb{bottom:613.538850px;}
.y158{bottom:623.162550px;}
.y135{bottom:623.304300px;}
.y10f{bottom:624.721500px;}
.y74{bottom:626.708550px;}
.y95{bottom:627.949238px;}
.y30{bottom:628.462500px;}
.y53{bottom:630.712500px;}
.yd9{bottom:634.906650px;}
.ya{bottom:635.138850px;}
.y157{bottom:642.962550px;}
.y134{bottom:643.104150px;}
.y10e{bottom:644.521500px;}
.y97{bottom:646.571106px;}
.y73{bottom:648.308550px;}
.yc9{bottom:649.166127px;}
.y2f{bottom:650.512500px;}
.y52{bottom:652.612500px;}
.yd8{bottom:656.506650px;}
.y9{bottom:656.738850px;}
.y96{bottom:658.945800px;}
.y156{bottom:662.762550px;}
.y133{bottom:662.904300px;}
.y10d{bottom:664.321500px;}
.yc8{bottom:665.221825px;}
.y72{bottom:669.908550px;}
.y2e{bottom:672.562500px;}
.y51{bottom:674.512500px;}
.yd7{bottom:678.106650px;}
.yc7{bottom:681.277523px;}
.y155{bottom:682.562550px;}
.y132{bottom:682.704300px;}
.y10c{bottom:684.121500px;}
.y8{bottom:686.842800px;}
.y71{bottom:691.508550px;}
.y2d{bottom:694.612500px;}
.y50{bottom:696.412500px;}
.yc6{bottom:697.333221px;}
.yd6{bottom:699.706650px;}
.y8d{bottom:700.012500px;}
.y154{bottom:702.362550px;}
.y131{bottom:702.504300px;}
.y10b{bottom:703.921500px;}
.y70{bottom:713.108550px;}
.yc5{bottom:713.388919px;}
.y2c{bottom:716.662500px;}
.y4f{bottom:718.312500px;}
.yd5{bottom:721.306650px;}
.y8c{bottom:721.612500px;}
.y153{bottom:722.162550px;}
.y130{bottom:722.304300px;}
.y10a{bottom:723.721500px;}
.yc4{bottom:729.444618px;}
.y6f{bottom:734.708550px;}
.y2b{bottom:738.712500px;}
.y4e{bottom:740.212500px;}
.y152{bottom:741.962550px;}
.y12f{bottom:742.104150px;}
.yd4{bottom:742.906650px;}
.y8b{bottom:743.212500px;}
.y109{bottom:743.521500px;}
.yc3{bottom:745.500316px;}
.y6e{bottom:756.308550px;}
.y2a{bottom:760.762500px;}
.yc2{bottom:761.556014px;}
.y151{bottom:761.762550px;}
.y12e{bottom:761.904300px;}
.y4d{bottom:762.112500px;}
.y108{bottom:763.321500px;}
.yd3{bottom:764.506650px;}
.y8a{bottom:764.812500px;}
.yc1{bottom:777.611712px;}
.y6d{bottom:777.908550px;}
.y150{bottom:781.562550px;}
.y12d{bottom:781.704300px;}
.y29{bottom:782.812500px;}
.y107{bottom:783.121500px;}
.y4c{bottom:784.012500px;}
.yd2{bottom:786.106650px;}
.y89{bottom:786.412500px;}
.yc0{bottom:793.667410px;}
.y7{bottom:794.842800px;}
.y6c{bottom:799.508550px;}
.y14f{bottom:801.362550px;}
.y12c{bottom:801.504300px;}
.y106{bottom:802.921500px;}
.y28{bottom:804.862500px;}
.y4b{bottom:805.912500px;}
.yd1{bottom:807.706650px;}
.y88{bottom:808.012500px;}
.ybf{bottom:809.723108px;}
.y6b{bottom:821.108550px;}
.y14e{bottom:821.162550px;}
.y12b{bottom:821.304150px;}
.y105{bottom:822.721500px;}
.y6{bottom:825.442800px;}
.ybe{bottom:825.778806px;}
.y27{bottom:826.912500px;}
.y4a{bottom:827.812500px;}
.yd0{bottom:829.306650px;}
.y87{bottom:829.612500px;}
.y14d{bottom:840.962550px;}
.y12a{bottom:841.104150px;}
.ybd{bottom:841.834504px;}
.y104{bottom:842.521500px;}
.y6a{bottom:842.708550px;}
.y26{bottom:848.962500px;}
.y49{bottom:849.712500px;}
.ycf{bottom:850.906650px;}
.y86{bottom:851.212500px;}
.ybc{bottom:857.890202px;}
.y14c{bottom:860.762550px;}
.y129{bottom:860.904300px;}
.y103{bottom:862.321500px;}
.y69{bottom:864.308550px;}
.y25{bottom:871.012500px;}
.y48{bottom:871.612500px;}
.yce{bottom:872.506650px;}
.y85{bottom:872.812500px;}
.ybb{bottom:873.945900px;}
.y14b{bottom:880.562550px;}
.y5{bottom:880.704300px;}
.y102{bottom:882.121500px;}
.y68{bottom:885.908550px;}
.y24{bottom:893.062500px;}
.y47{bottom:893.512500px;}
.ycd{bottom:894.106650px;}
.y84{bottom:894.412500px;}
.y4{bottom:898.704300px;}
.y14a{bottom:900.362550px;}
.y128{bottom:900.504300px;}
.y101{bottom:901.921500px;}
.y67{bottom:907.508550px;}
.y23{bottom:915.112500px;}
.y46{bottom:915.412500px;}
.ycc{bottom:915.706650px;}
.y83{bottom:916.012500px;}
.y149{bottom:920.162550px;}
.y127{bottom:920.304150px;}
.y100{bottom:921.721500px;}
.y22{bottom:937.162500px;}
.ycb{bottom:937.306650px;}
.y45{bottom:937.312500px;}
.y66{bottom:937.612500px;}
.y148{bottom:939.962550px;}
.y126{bottom:940.104150px;}
.y3{bottom:941.304150px;}
.yff{bottom:941.521500px;}
.yca{bottom:958.906650px;}
.y21{bottom:959.212500px;}
.y147{bottom:959.762550px;}
.y2{bottom:959.904300px;}
.yfe{bottom:961.321500px;}
.hc{height:28.718064px;}
.h7{height:34.734375px;}
.ha{height:40.523438px;}
.hf{height:43.171141px;}
.h13{height:43.272839px;}
.h12{height:43.374538px;}
.h9{height:43.523438px;}
.h11{height:44.493225px;}
.h10{height:44.544074px;}
.h2{height:46.312500px;}
.he{height:47.476589px;}
.h15{height:50.947266px;}
.h8{height:54.996094px;}
.h4{height:56.041992px;}
.h3{height:57.890625px;}
.h14{height:61.136719px;}
.hb{height:63.679688px;}
.h6{height:69.468750px;}
.h5{height:98.414062px;}
.hd{height:135.496500px;}
.h0{height:1083.472500px;}
.h1{height:1083.750000px;}
.w2{width:546.726000px;}
.w0{width:785.835000px;}
.w1{width:786.000000px;}
.x0{left:0.000000px;}
.xd{left:4.665110px;}
.x3{left:108.035400px;}
.xb{left:110.254350px;}
.x4{left:129.295200px;}
.x9{left:143.107050px;}
.x11{left:149.230800px;}
.x7{left:150.555150px;}
.x10{left:153.602340px;}
.xc{left:159.770700px;}
.x12{left:170.490600px;}
.x5{left:182.170350px;}
.x8{left:187.924200px;}
.x1{left:211.992150px;}
.xe{left:225.816600px;}
.xf{left:228.069360px;}
.x6{left:302.077950px;}
.xa{left:466.439250px;}
.x13{left:553.449600px;}
.x2{left:603.664350px;}
@media print{
.v2{vertical-align:-19.733333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.220386pt;}
.v3{vertical-align:2.666667pt;}
.v1{vertical-align:23.680000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.022933pt;}
.ls9{letter-spacing:0.115200pt;}
.lsf{letter-spacing:0.157333pt;}
.ls7{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.512000pt;}
.lsa{letter-spacing:1.343467pt;}
.ls13{letter-spacing:3.004267pt;}
.ls10{letter-spacing:3.587200pt;}
.ls5{letter-spacing:3.730963pt;}
.ls0{letter-spacing:3.733333pt;}
.ls16{letter-spacing:5.120000pt;}
.ls11{letter-spacing:5.333333pt;}
.ls8{letter-spacing:5.395733pt;}
.ls15{letter-spacing:5.760000pt;}
.lsb{letter-spacing:5.802667pt;}
.ls1{letter-spacing:5.866667pt;}
.ls3{letter-spacing:6.400000pt;}
.ls2{letter-spacing:9.066667pt;}
.ls14{letter-spacing:9.738667pt;}
.lsc{letter-spacing:10.203200pt;}
.ls17{letter-spacing:17.600000pt;}
.lsd{letter-spacing:160.147525pt;}
.ws6{word-spacing:-160.182979pt;}
.ws1b{word-spacing:-32.090667pt;}
.ws5{word-spacing:-24.384000pt;}
.ws18{word-spacing:-20.320000pt;}
.ws16{word-spacing:-18.304000pt;}
.ws8{word-spacing:-17.984000pt;}
.ws19{word-spacing:-16.485333pt;}
.ws15{word-spacing:-16.128000pt;}
.ws17{word-spacing:-15.808000pt;}
.ws4{word-spacing:-14.986667pt;}
.ws1a{word-spacing:-14.490667pt;}
.ws2{word-spacing:-14.237333pt;}
.ws1c{word-spacing:-13.173333pt;}
.ws1{word-spacing:-12.514667pt;}
.ws0{word-spacing:-10.790400pt;}
.ws9{word-spacing:-0.049707pt;}
.wse{word-spacing:-0.045199pt;}
.ws3{word-spacing:0.000000pt;}
.ws7{word-spacing:9.820869pt;}
.ws11{word-spacing:12.655851pt;}
.ws14{word-spacing:150.649822pt;}
.wsf{word-spacing:152.141405pt;}
.ws13{word-spacing:152.638599pt;}
.ws10{word-spacing:153.542588pt;}
.wsb{word-spacing:159.560112pt;}
.ws12{word-spacing:166.786032pt;}
.wsa{word-spacing:169.899210pt;}
.wsc{word-spacing:172.136034pt;}
.wsd{word-spacing:172.285155pt;}
._f{margin-left:-1408.114607pt;}
._1b{margin-left:-727.031704pt;}
._10{margin-left:-329.145007pt;}
._17{margin-left:-159.722072pt;}
._3b{margin-left:-131.186785pt;}
._15{margin-left:-18.082489pt;}
._3a{margin-left:-16.809956pt;}
._13{margin-left:-12.688000pt;}
._38{margin-left:-10.255170pt;}
._5{margin-left:-8.522667pt;}
._c{margin-left:-6.926222pt;}
._4{margin-left:-5.984000pt;}
._3{margin-left:-4.986667pt;}
._0{margin-left:-3.920000pt;}
._9{margin-left:-2.240000pt;}
._2{margin-left:-1.152000pt;}
._1{width:1.242074pt;}
._7{width:2.405926pt;}
._b{width:4.162370pt;}
._a{width:5.221926pt;}
._d{width:6.753778pt;}
._8{width:7.690074pt;}
._6{width:9.141926pt;}
._12{width:10.832296pt;}
._14{width:12.111704pt;}
._11{width:13.888000pt;}
._1c{width:14.784000pt;}
._37{width:15.744000pt;}
._39{width:17.834667pt;}
._3c{width:18.728296pt;}
._3d{width:19.930074pt;}
._16{width:34.598400pt;}
._e{width:50.598933pt;}
._35{width:149.565035pt;}
._30{width:150.928803pt;}
._2d{width:153.151309pt;}
._32{width:157.545367pt;}
._2c{width:159.237721pt;}
._2e{width:161.387322pt;}
._31{width:163.240500pt;}
._21{width:164.829075pt;}
._20{width:171.045651pt;}
._27{width:173.726664pt;}
._24{width:175.118466pt;}
._29{width:176.212024pt;}
._1f{width:177.156461pt;}
._1d{width:178.846506pt;}
._28{width:180.437136pt;}
._23{width:186.998486pt;}
._22{width:189.381256pt;}
._1e{width:191.067608pt;}
._26{width:195.200174pt;}
._2a{width:200.028642pt;}
._25{width:201.860939pt;}
._34{width:211.804701pt;}
._2b{width:232.596455pt;}
._2f{width:239.873570pt;}
._33{width:258.088955pt;}
._36{width:265.366069pt;}
._1a{width:842.306861pt;}
._19{width:885.596683pt;}
._18{width:893.467560pt;}
.fs7{font-size:32.000000pt;}
.fsa{font-size:35.454400pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:38.400000pt;}
.fs1{font-size:42.666667pt;}
.fsc{font-size:45.199467pt;}
.fs9{font-size:48.000000pt;}
.fsb{font-size:49.707200pt;}
.fs8{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.yba{bottom:7.517135pt;}
.yb9{bottom:26.231896pt;}
.yb8{bottom:44.946657pt;}
.yb7{bottom:63.661418pt;}
.yb6{bottom:82.376179pt;}
.y1{bottom:95.855600pt;}
.yb5{bottom:100.531733pt;}
.y20{bottom:152.722800pt;}
.y16c{bottom:157.122267pt;}
.y65{bottom:157.656133pt;}
.y146{bottom:160.889200pt;}
.y1f{bottom:167.389467pt;}
.y125{bottom:168.108000pt;}
.y92{bottom:172.322800pt;}
.y16b{bottom:173.122267pt;}
.y145{bottom:178.489200pt;}
.y44{bottom:182.056133pt;}
.y124{bottom:185.708000pt;}
.y1e{bottom:186.989467pt;}
.yfd{bottom:187.643333pt;}
.yab{bottom:187.832400pt;}
.y16a{bottom:189.122267pt;}
.yaa{bottom:193.879600pt;}
.y144{bottom:196.089200pt;}
.y1d{bottom:196.722800pt;}
.y91{bottom:201.656133pt;}
.y123{bottom:203.308000pt;}
.y169{bottom:205.122267pt;}
.yfc{bottom:205.243333pt;}
.yed{bottom:211.202400pt;}
.y1c{bottom:211.389467pt;}
.y143{bottom:213.689200pt;}
.yb3{bottom:213.956133pt;}
.y43{bottom:216.322800pt;}
.yeb{bottom:218.761467pt;}
.y122{bottom:220.908000pt;}
.yfb{bottom:222.843333pt;}
.ya7{bottom:225.433333pt;}
.y1b{bottom:226.056133pt;}
.y64{bottom:230.233333pt;}
.yec{bottom:230.402400pt;}
.y42{bottom:230.989467pt;}
.yb2{bottom:233.156133pt;}
.y168{bottom:237.122267pt;}
.yea{bottom:237.961467pt;}
.y121{bottom:238.508000pt;}
.yfa{bottom:240.443467pt;}
.y1a{bottom:240.722800pt;}
.ya6{bottom:245.033333pt;}
.y63{bottom:249.433333pt;}
.y142{bottom:250.489200pt;}
.yb1{bottom:252.356133pt;}
.y167{bottom:253.122267pt;}
.y41{bottom:255.389467pt;}
.y120{bottom:256.108000pt;}
.ye9{bottom:257.161467pt;}
.yf9{bottom:258.043333pt;}
.y19{bottom:260.322800pt;}
.ya5{bottom:264.633333pt;}
.y62{bottom:268.633333pt;}
.y166{bottom:269.122267pt;}
.y40{bottom:270.056133pt;}
.yb0{bottom:271.556133pt;}
.y11f{bottom:273.708000pt;}
.y90{bottom:274.989467pt;}
.yf8{bottom:275.643333pt;}
.ye8{bottom:276.361467pt;}
.y141{bottom:277.248267pt;}
.ya4{bottom:284.233333pt;}
.y3f{bottom:284.722800pt;}
.y165{bottom:285.122267pt;}
.y61{bottom:288.100000pt;}
.y82{bottom:288.274267pt;}
.ya9{bottom:289.656133pt;}
.yaf{bottom:290.756133pt;}
.y11e{bottom:291.308000pt;}
.yf7{bottom:293.243333pt;}
.ye7{bottom:295.561467pt;}
.y18{bottom:295.767867pt;}
.y140{bottom:296.448267pt;}
.ya8{bottom:299.389467pt;}
.ya3{bottom:303.833333pt;}
.y3e{bottom:304.322800pt;}
.y81{bottom:307.474267pt;}
.y60{bottom:307.566667pt;}
.y11d{bottom:308.908000pt;}
.yae{bottom:309.956133pt;}
.yf6{bottom:310.843333pt;}
.y3d{bottom:314.056133pt;}
.ye6{bottom:314.761467pt;}
.y17{bottom:314.967867pt;}
.y13f{bottom:315.648133pt;}
.y8f{bottom:318.989467pt;}
.ya2{bottom:323.433333pt;}
.y11c{bottom:326.508000pt;}
.y80{bottom:326.674267pt;}
.y5f{bottom:327.033333pt;}
.yf5{bottom:328.443467pt;}
.y3c{bottom:328.722800pt;}
.ye5{bottom:333.961467pt;}
.y16{bottom:334.167867pt;}
.y164{bottom:342.722267pt;}
.ya1{bottom:343.033333pt;}
.y11b{bottom:344.108000pt;}
.y7f{bottom:345.874267pt;}
.yf4{bottom:346.043333pt;}
.y5e{bottom:346.500000pt;}
.y3b{bottom:348.322800pt;}
.ye4{bottom:353.161467pt;}
.y15{bottom:353.367867pt;}
.yad{bottom:355.915200pt;}
.y3a{bottom:358.056133pt;}
.y163{bottom:360.322267pt;}
.y11a{bottom:361.708000pt;}
.ya0{bottom:362.633333pt;}
.yf3{bottom:363.643333pt;}
.y7e{bottom:365.074267pt;}
.y5d{bottom:365.966667pt;}
.y8e{bottom:368.274267pt;}
.ye3{bottom:372.361467pt;}
.y14{bottom:372.567867pt;}
.y39{bottom:372.722800pt;}
.y162{bottom:377.922267pt;}
.y119{bottom:379.308000pt;}
.yf2{bottom:381.243333pt;}
.y9f{bottom:382.233333pt;}
.y13e{bottom:382.848267pt;}
.yb4{bottom:383.505333pt;}
.y7d{bottom:384.274267pt;}
.y5c{bottom:385.433333pt;}
.ye2{bottom:391.561467pt;}
.y13{bottom:391.767867pt;}
.y38{bottom:392.322800pt;}
.y161{bottom:395.522267pt;}
.y118{bottom:396.908000pt;}
.yf1{bottom:398.843333pt;}
.y9e{bottom:401.833333pt;}
.y37{bottom:402.056133pt;}
.y7c{bottom:403.474267pt;}
.y5b{bottom:404.900000pt;}
.ye1{bottom:410.761467pt;}
.y12{bottom:410.967867pt;}
.y160{bottom:413.122267pt;}
.y13d{bottom:413.248267pt;}
.y117{bottom:414.508000pt;}
.yf0{bottom:416.443467pt;}
.y36{bottom:416.722800pt;}
.y9d{bottom:421.433333pt;}
.y93{bottom:421.467333pt;}
.y7b{bottom:422.674267pt;}
.y5a{bottom:424.366667pt;}
.ye0{bottom:429.961467pt;}
.y11{bottom:430.167867pt;}
.y15f{bottom:430.722267pt;}
.y13c{bottom:430.848267pt;}
.y35{bottom:431.389467pt;}
.y116{bottom:432.108000pt;}
.yef{bottom:434.043333pt;}
.y9c{bottom:441.033333pt;}
.y7a{bottom:441.874267pt;}
.y59{bottom:443.833333pt;}
.y15e{bottom:448.322267pt;}
.y13b{bottom:448.448267pt;}
.y94{bottom:449.021867pt;}
.ydf{bottom:449.161467pt;}
.y10{bottom:449.367867pt;}
.y115{bottom:449.708000pt;}
.yee{bottom:459.202400pt;}
.y9b{bottom:460.633333pt;}
.y79{bottom:461.074267pt;}
.y58{bottom:463.300000pt;}
.y15d{bottom:465.922267pt;}
.y13a{bottom:466.048267pt;}
.y114{bottom:467.308000pt;}
.yde{bottom:468.361467pt;}
.yf{bottom:468.567867pt;}
.y34{bottom:480.233333pt;}
.y78{bottom:480.274267pt;}
.y57{bottom:482.766667pt;}
.y15c{bottom:483.522267pt;}
.y139{bottom:483.648133pt;}
.y113{bottom:484.908000pt;}
.ydd{bottom:487.561467pt;}
.ye{bottom:487.767867pt;}
.y98{bottom:489.825448pt;}
.y77{bottom:499.474267pt;}
.y33{bottom:499.833333pt;}
.y15b{bottom:501.122267pt;}
.y138{bottom:501.248267pt;}
.y56{bottom:502.233333pt;}
.y112{bottom:502.508000pt;}
.y9a{bottom:506.375739pt;}
.ydc{bottom:506.761467pt;}
.yd{bottom:506.967867pt;}
.y99{bottom:517.375467pt;}
.y76{bottom:518.674267pt;}
.y15a{bottom:518.722267pt;}
.y137{bottom:518.848267pt;}
.y32{bottom:519.433333pt;}
.y111{bottom:520.108000pt;}
.y55{bottom:521.700000pt;}
.ydb{bottom:525.961467pt;}
.yc{bottom:526.167867pt;}
.y159{bottom:536.322267pt;}
.y136{bottom:536.448267pt;}
.y110{bottom:537.708000pt;}
.y75{bottom:537.874267pt;}
.y31{bottom:539.033333pt;}
.y54{bottom:541.166667pt;}
.yac{bottom:543.833333pt;}
.yda{bottom:545.161467pt;}
.yb{bottom:545.367867pt;}
.y158{bottom:553.922267pt;}
.y135{bottom:554.048267pt;}
.y10f{bottom:555.308000pt;}
.y74{bottom:557.074267pt;}
.y95{bottom:558.177101pt;}
.y30{bottom:558.633333pt;}
.y53{bottom:560.633333pt;}
.yd9{bottom:564.361467pt;}
.ya{bottom:564.567867pt;}
.y157{bottom:571.522267pt;}
.y134{bottom:571.648133pt;}
.y10e{bottom:572.908000pt;}
.y97{bottom:574.729872pt;}
.y73{bottom:576.274267pt;}
.yc9{bottom:577.036558pt;}
.y2f{bottom:578.233333pt;}
.y52{bottom:580.100000pt;}
.yd8{bottom:583.561467pt;}
.y9{bottom:583.767867pt;}
.y96{bottom:585.729600pt;}
.y156{bottom:589.122267pt;}
.y133{bottom:589.248267pt;}
.y10d{bottom:590.508000pt;}
.yc8{bottom:591.308289pt;}
.y72{bottom:595.474267pt;}
.y2e{bottom:597.833333pt;}
.y51{bottom:599.566667pt;}
.yd7{bottom:602.761467pt;}
.yc7{bottom:605.580021pt;}
.y155{bottom:606.722267pt;}
.y132{bottom:606.848267pt;}
.y10c{bottom:608.108000pt;}
.y8{bottom:610.526933pt;}
.y71{bottom:614.674267pt;}
.y2d{bottom:617.433333pt;}
.y50{bottom:619.033333pt;}
.yc6{bottom:619.851752pt;}
.yd6{bottom:621.961467pt;}
.y8d{bottom:622.233333pt;}
.y154{bottom:624.322267pt;}
.y131{bottom:624.448267pt;}
.y10b{bottom:625.708000pt;}
.y70{bottom:633.874267pt;}
.yc5{bottom:634.123484pt;}
.y2c{bottom:637.033333pt;}
.y4f{bottom:638.500000pt;}
.yd5{bottom:641.161467pt;}
.y8c{bottom:641.433333pt;}
.y153{bottom:641.922267pt;}
.y130{bottom:642.048267pt;}
.y10a{bottom:643.308000pt;}
.yc4{bottom:648.395216pt;}
.y6f{bottom:653.074267pt;}
.y2b{bottom:656.633333pt;}
.y4e{bottom:657.966667pt;}
.y152{bottom:659.522267pt;}
.y12f{bottom:659.648133pt;}
.yd4{bottom:660.361467pt;}
.y8b{bottom:660.633333pt;}
.y109{bottom:660.908000pt;}
.yc3{bottom:662.666947pt;}
.y6e{bottom:672.274267pt;}
.y2a{bottom:676.233333pt;}
.yc2{bottom:676.938679pt;}
.y151{bottom:677.122267pt;}
.y12e{bottom:677.248267pt;}
.y4d{bottom:677.433333pt;}
.y108{bottom:678.508000pt;}
.yd3{bottom:679.561467pt;}
.y8a{bottom:679.833333pt;}
.yc1{bottom:691.210410pt;}
.y6d{bottom:691.474267pt;}
.y150{bottom:694.722267pt;}
.y12d{bottom:694.848267pt;}
.y29{bottom:695.833333pt;}
.y107{bottom:696.108000pt;}
.y4c{bottom:696.900000pt;}
.yd2{bottom:698.761467pt;}
.y89{bottom:699.033333pt;}
.yc0{bottom:705.482142pt;}
.y7{bottom:706.526933pt;}
.y6c{bottom:710.674267pt;}
.y14f{bottom:712.322267pt;}
.y12c{bottom:712.448267pt;}
.y106{bottom:713.708000pt;}
.y28{bottom:715.433333pt;}
.y4b{bottom:716.366667pt;}
.yd1{bottom:717.961467pt;}
.y88{bottom:718.233333pt;}
.ybf{bottom:719.753874pt;}
.y6b{bottom:729.874267pt;}
.y14e{bottom:729.922267pt;}
.y12b{bottom:730.048133pt;}
.y105{bottom:731.308000pt;}
.y6{bottom:733.726933pt;}
.ybe{bottom:734.025605pt;}
.y27{bottom:735.033333pt;}
.y4a{bottom:735.833333pt;}
.yd0{bottom:737.161467pt;}
.y87{bottom:737.433333pt;}
.y14d{bottom:747.522267pt;}
.y12a{bottom:747.648133pt;}
.ybd{bottom:748.297337pt;}
.y104{bottom:748.908000pt;}
.y6a{bottom:749.074267pt;}
.y26{bottom:754.633333pt;}
.y49{bottom:755.300000pt;}
.ycf{bottom:756.361467pt;}
.y86{bottom:756.633333pt;}
.ybc{bottom:762.569068pt;}
.y14c{bottom:765.122267pt;}
.y129{bottom:765.248267pt;}
.y103{bottom:766.508000pt;}
.y69{bottom:768.274267pt;}
.y25{bottom:774.233333pt;}
.y48{bottom:774.766667pt;}
.yce{bottom:775.561467pt;}
.y85{bottom:775.833333pt;}
.ybb{bottom:776.840800pt;}
.y14b{bottom:782.722267pt;}
.y5{bottom:782.848267pt;}
.y102{bottom:784.108000pt;}
.y68{bottom:787.474267pt;}
.y24{bottom:793.833333pt;}
.y47{bottom:794.233333pt;}
.ycd{bottom:794.761467pt;}
.y84{bottom:795.033333pt;}
.y4{bottom:798.848267pt;}
.y14a{bottom:800.322267pt;}
.y128{bottom:800.448267pt;}
.y101{bottom:801.708000pt;}
.y67{bottom:806.674267pt;}
.y23{bottom:813.433333pt;}
.y46{bottom:813.700000pt;}
.ycc{bottom:813.961467pt;}
.y83{bottom:814.233333pt;}
.y149{bottom:817.922267pt;}
.y127{bottom:818.048133pt;}
.y100{bottom:819.308000pt;}
.y22{bottom:833.033333pt;}
.ycb{bottom:833.161467pt;}
.y45{bottom:833.166667pt;}
.y66{bottom:833.433333pt;}
.y148{bottom:835.522267pt;}
.y126{bottom:835.648133pt;}
.y3{bottom:836.714800pt;}
.yff{bottom:836.908000pt;}
.yca{bottom:852.361467pt;}
.y21{bottom:852.633333pt;}
.y147{bottom:853.122267pt;}
.y2{bottom:853.248267pt;}
.yfe{bottom:854.508000pt;}
.hc{height:25.527168pt;}
.h7{height:30.875000pt;}
.ha{height:36.020833pt;}
.hf{height:38.374347pt;}
.h13{height:38.464746pt;}
.h12{height:38.555145pt;}
.h9{height:38.687500pt;}
.h11{height:39.549533pt;}
.h10{height:39.594733pt;}
.h2{height:41.166667pt;}
.he{height:42.201413pt;}
.h15{height:45.286458pt;}
.h8{height:48.885417pt;}
.h4{height:49.815104pt;}
.h3{height:51.458333pt;}
.h14{height:54.343750pt;}
.hb{height:56.604167pt;}
.h6{height:61.750000pt;}
.h5{height:87.479167pt;}
.hd{height:120.441333pt;}
.h0{height:963.086667pt;}
.h1{height:963.333333pt;}
.w2{width:485.978667pt;}
.w0{width:698.520000pt;}
.w1{width:698.666667pt;}
.x0{left:0.000000pt;}
.xd{left:4.146765pt;}
.x3{left:96.031467pt;}
.xb{left:98.003867pt;}
.x4{left:114.929067pt;}
.x9{left:127.206267pt;}
.x11{left:132.649600pt;}
.x7{left:133.826800pt;}
.x10{left:136.535413pt;}
.xc{left:142.018400pt;}
.x12{left:151.547200pt;}
.x5{left:161.929200pt;}
.x8{left:167.043733pt;}
.x1{left:188.437467pt;}
.xe{left:200.725867pt;}
.xf{left:202.728320pt;}
.x6{left:268.513733pt;}
.xa{left:414.612667pt;}
.x13{left:491.955200pt;}
.x2{left:536.590533pt;}
}




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