
    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_aa1d184f4d819cd874c0988f.woff')format("woff");}.ff1{font-family:ff1;line-height:1.123047;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_aa460fe39dabd5bbcaa6242c.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_89448d62f8ce4f7607a89b4b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.012695;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_1327fad2c89e63426bb74e18.woff')format("woff");}.ff4{font-family:ff4;line-height:0.716809;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_e7687b59c135c95eeadada38.woff')format("woff");}.ff5{font-family:ff5;line-height:1.131348;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_6e48a637c58ae397e676e0c6.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_2e5bbe9c245ab47960fddeab.woff')format("woff");}.ff7{font-family:ff7;line-height:1.106934;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_4bce40eb3d1dd814c298887b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.710938;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_0482198e07c8feaed9c7a7dd.woff')format("woff");}.ff9{font-family:ff9;line-height:1.103027;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);}
.v3{vertical-align:-40.398572px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:28.516641px;}
.v2{vertical-align:40.398572px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:197.663086px;}
.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;}
}
.ws3{word-spacing:-18.336914px;}
.ws5{word-spacing:-16.403321px;}
.ws4{word-spacing:-16.371094px;}
.ws7{word-spacing:-13.335938px;}
.ws6{word-spacing:-12.650391px;}
.ws1{word-spacing:-10.715626px;}
.ws0{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
._17{margin-left:-197.663086px;}
._16{margin-left:-8.838646px;}
._18{margin-left:-7.344087px;}
._14{margin-left:-5.098193px;}
._c{margin-left:-3.975825px;}
._1{margin-left:-2.144532px;}
._0{margin-left:-1.089834px;}
._2{width:1.300767px;}
._6{width:2.483577px;}
._7{width:4.442259px;}
._9{width:8.175175px;}
._8{width:9.718490px;}
._d{width:12.623641px;}
._a{width:14.213728px;}
._19{width:17.080707px;}
._b{width:18.784180px;}
._e{width:22.481438px;}
._12{width:26.802734px;}
._13{width:27.925006px;}
._11{width:31.400329px;}
._24{width:36.190806px;}
._1e{width:40.602876px;}
._10{width:44.897126px;}
._f{width:49.455347px;}
._1c{width:54.000003px;}
._20{width:58.500001px;}
._1f{width:63.000000px;}
._22{width:76.500001px;}
._21{width:81.000000px;}
._1d{width:90.000000px;}
._23{width:94.500001px;}
._1a{width:125.200872px;}
._1b{width:179.326171px;}
._15{width:197.663086px;}
._3{width:1765.246006px;}
._4{width:2010.812415px;}
._5{width:2238.100153px;}
.fc3{color:rgb(17,85,204);}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(34,34,34);}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:43.200002px;}
.fsb{font-size:48.000002px;}
.fsa{font-size:50.999999px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:57.600001px;}
.fs6{font-size:59.999999px;}
.fs5{font-size:61.200002px;}
.fsc{font-size:63.000000px;}
.fs8{font-size:66.000002px;}
.fs9{font-size:68.999999px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:83.999997px;}
.fs4{font-size:96.000003px;}
.y0{bottom:0.000000px;}
.yfe{bottom:10.417969px;}
.y117{bottom:10.735103px;}
.y11a{bottom:10.735106px;}
.y10e{bottom:10.735108px;}
.y11f{bottom:10.735121px;}
.y127{bottom:10.735826px;}
.yf9{bottom:10.735840px;}
.y12a{bottom:10.735841px;}
.y109{bottom:10.735843px;}
.y114{bottom:10.736569px;}
.y110{bottom:10.736572px;}
.yfb{bottom:13.357911px;}
.y116{bottom:26.259518px;}
.y119{bottom:26.259521px;}
.y108{bottom:26.259523px;}
.y136{bottom:28.735826px;}
.y133{bottom:28.735841px;}
.y107{bottom:41.783203px;}
.y132{bottom:44.259521px;}
.y12f{bottom:44.259523px;}
.y12e{bottom:59.783203px;}
.ybd{bottom:112.027589px;}
.y10b{bottom:112.604744px;}
.ye9{bottom:114.011714px;}
.y61{bottom:114.708254px;}
.y38{bottom:116.970696px;}
.y141{bottom:122.041257px;}
.yd6{bottom:125.395754px;}
.y10a{bottom:129.206549px;}
.y90{bottom:131.852054px;}
.ybc{bottom:133.847174px;}
.ye8{bottom:135.831299px;}
.y60{bottom:136.527464px;}
.y140{bottom:137.564939px;}
.y37{bottom:139.330445px;}
.y18f{bottom:145.614989px;}
.yd5{bottom:147.214604px;}
.y8f{bottom:153.671624px;}
.ybb{bottom:155.666744px;}
.ye7{bottom:157.650149px;}
.y5f{bottom:158.346674px;}
.y106{bottom:161.605225px;}
.y36{bottom:161.690000px;}
.y166{bottom:162.377204px;}
.y18e{bottom:164.587649px;}
.yd4{bottom:169.034174px;}
.y13f{bottom:169.963617px;}
.y8e{bottom:175.491214px;}
.yba{bottom:177.486337px;}
.ye6{bottom:179.469734px;}
.y5e{bottom:181.241452px;}
.y165{bottom:181.351319px;}
.y18d{bottom:183.560309px;}
.y35{bottom:184.049555px;}
.y13e{bottom:185.487299px;}
.yd3{bottom:190.853759px;}
.y105{bottom:192.652589px;}
.y8d{bottom:197.310427px;}
.yb9{bottom:199.305914px;}
.ye5{bottom:201.289304px;}
.y5d{bottom:205.050661px;}
.y34{bottom:206.409299px;}
.yd2{bottom:209.827154px;}
.y13d{bottom:217.885990px;}
.y164{bottom:218.323979px;}
.y8c{bottom:219.129644px;}
.y18c{bottom:220.534424px;}
.yb8{bottom:221.124749px;}
.ye4{bottom:223.108162px;}
.y104{bottom:225.051268px;}
.y33{bottom:228.769041px;}
.yd1{bottom:228.800534px;}
.y5c{bottom:228.859131px;}
.y163{bottom:237.296624px;}
.y18b{bottom:239.508539px;}
.y8b{bottom:240.949214px;}
.yb7{bottom:242.944334px;}
.ye3{bottom:244.927739px;}
.yd0{bottom:247.773929px;}
.y13c{bottom:248.933353px;}
.y5b{bottom:251.592779px;}
.y103{bottom:257.449949px;}
.y8a{bottom:262.768799px;}
.yb6{bottom:264.763919px;}
.ycf{bottom:266.747309px;}
.y32{bottom:269.128596px;}
.y5a{bottom:273.412349px;}
.y162{bottom:274.270754px;}
.y18a{bottom:276.481199px;}
.y13b{bottom:281.332031px;}
.y89{bottom:284.588009px;}
.yb5{bottom:286.583129px;}
.yce{bottom:288.566894px;}
.y102{bottom:289.848629px;}
.y161{bottom:293.244869px;}
.y59{bottom:295.231574px;}
.y189{bottom:295.453859px;}
.y139{bottom:296.855712px;}
.y88{bottom:306.407234px;}
.yb4{bottom:308.402339px;}
.y31{bottom:309.488166px;}
.ycd{bottom:310.386479px;}
.y160{bottom:312.217529px;}
.y13a{bottom:312.379394px;}
.y188{bottom:314.427974px;}
.y58{bottom:317.050784px;}
.y101{bottom:322.247309px;}
.y100{bottom:323.972162px;}
.y87{bottom:328.226804px;}
.yb3{bottom:330.221924px;}
.ycc{bottom:332.205329px;}
.y187{bottom:333.402104px;}
.y57{bottom:338.870369px;}
.y138{bottom:344.778072px;}
.y15f{bottom:349.190189px;}
.y30{bottom:349.847710px;}
.y86{bottom:350.046375px;}
.yb2{bottom:352.041509px;}
.ycb{bottom:354.024899px;}
.ye2{bottom:354.024904px;}
.yff{bottom:354.646004px;}
.yfd{bottom:356.370857px;}
.y137{bottom:360.301754px;}
.y56{bottom:360.689939px;}
.y15e{bottom:368.164304px;}
.y186{bottom:370.374749px;}
.y2f{bottom:372.207456px;}
.y85{bottom:372.940423px;}
.yb1{bottom:373.860719px;}
.yca{bottom:375.844484px;}
.ye1{bottom:375.844486px;}
.y55{bottom:382.509149px;}
.yfa{bottom:387.044679px;}
.yfc{bottom:389.118899px;}
.y185{bottom:389.347409px;}
.y135{bottom:392.700447px;}
.y2e{bottom:394.567000px;}
.yb0{bottom:395.679929px;}
.y84{bottom:396.749625px;}
.yc9{bottom:397.663334px;}
.y15d{bottom:405.138434px;}
.y54{bottom:414.726563px;}
.y2d{bottom:416.926757px;}
.yaf{bottom:417.499514px;}
.y83{bottom:419.482904px;}
.yf8{bottom:421.517579px;}
.y15c{bottom:424.111079px;}
.y134{bottom:426.224129px;}
.y184{bottom:426.321539px;}
.y2c{bottom:439.286303px;}
.yae{bottom:439.319099px;}
.ye0{bottom:441.302485px;}
.y82{bottom:441.302489px;}
.yc8{bottom:441.302492px;}
.y15b{bottom:443.084474px;}
.y183{bottom:445.295654px;}
.y131{bottom:458.622807px;}
.yf7{bottom:460.259039px;}
.yad{bottom:461.138309px;}
.y2b{bottom:461.646055px;}
.yc7{bottom:463.122064px;}
.ydf{bottom:463.122067px;}
.y81{bottom:463.122074px;}
.y182{bottom:464.268314px;}
.y53{bottom:468.172484px;}
.y15a{bottom:481.062008px;}
.yf6{bottom:482.831537px;}
.yac{bottom:482.957519px;}
.y181{bottom:483.240974px;}
.y2a{bottom:484.005619px;}
.y80{bottom:484.941284px;}
.yde{bottom:484.941644px;}
.yc6{bottom:484.941646px;}
.y130{bottom:492.146489px;}
.yab{bottom:504.777104px;}
.yf5{bottom:504.851804px;}
.y29{bottom:506.365355px;}
.y7f{bottom:506.760494px;}
.y52{bottom:507.618171px;}
.y180{bottom:520.215089px;}
.y12d{bottom:524.545165px;}
.yaa{bottom:526.596674px;}
.yf4{bottom:527.424320px;}
.ydd{bottom:528.580064px;}
.y7e{bottom:528.580079px;}
.y28{bottom:528.724910px;}
.y51{bottom:529.977906px;}
.y159{bottom:534.507569px;}
.y17f{bottom:539.189204px;}
.ya9{bottom:548.415899px;}
.yf3{bottom:550.197512px;}
.ydc{bottom:550.399658px;}
.y7d{bottom:550.399664px;}
.y27{bottom:551.084654px;}
.y50{bottom:552.337641px;}
.y158{bottom:556.327154px;}
.y17e{bottom:558.161864px;}
.ya8{bottom:570.235109px;}
.yc5{bottom:572.218499px;}
.ydb{bottom:572.218507px;}
.y7c{bottom:572.218874px;}
.y26{bottom:573.444214px;}
.y12c{bottom:573.592528px;}
.y4f{bottom:574.697030px;}
.y17d{bottom:577.134524px;}
.y157{bottom:578.146004px;}
.ya7{bottom:592.054694px;}
.y7b{bottom:594.038084px;}
.yf2{bottom:594.038819px;}
.y25{bottom:595.803771px;}
.y4e{bottom:597.056765px;}
.y156{bottom:598.812743px;}
.y129{bottom:605.991207px;}
.y155{bottom:612.600582px;}
.ya6{bottom:613.874264px;}
.y17c{bottom:614.108639px;}
.yda{bottom:615.857665px;}
.y7a{bottom:615.857669px;}
.y4d{bottom:619.416509px;}
.y12b{bottom:621.514888px;}
.y154{bottom:628.124264px;}
.y17b{bottom:633.082769px;}
.ya5{bottom:635.693489px;}
.y24{bottom:636.163326px;}
.yf1{bottom:637.676519px;}
.yd9{bottom:637.677247px;}
.y79{bottom:637.677254px;}
.y4c{bottom:641.775884px;}
.y17a{bottom:652.055414px;}
.y128{bottom:653.913568px;}
.ya4{bottom:657.512699px;}
.y78{bottom:659.496464px;}
.yc4{bottom:659.496824px;}
.y153{bottom:660.522943px;}
.y4b{bottom:664.135626px;}
.y23{bottom:676.523076px;}
.ya3{bottom:679.332269px;}
.yd8{bottom:681.315670px;}
.y77{bottom:681.315674px;}
.yf0{bottom:681.316409px;}
.y126{bottom:686.312262px;}
.y4a{bottom:686.495361px;}
.y179{bottom:689.028074px;}
.y11{bottom:689.616583px;}
.y152{bottom:692.921624px;}
.ya2{bottom:701.151859px;}
.y125{bottom:701.835943px;}
.yd7{bottom:703.135252px;}
.y76{bottom:703.135259px;}
.y178{bottom:708.002204px;}
.y49{bottom:708.855096px;}
.y10{bottom:713.089963px;}
.y22{bottom:716.882811px;}
.ya1{bottom:722.971072px;}
.yef{bottom:724.954109px;}
.y75{bottom:724.954829px;}
.y151{bottom:725.320317px;}
.y177{bottom:726.976319px;}
.y48{bottom:731.214666px;}
.yf{bottom:736.563359px;}
.y21{bottom:739.242365px;}
.y124{bottom:740.577389px;}
.y150{bottom:740.843998px;}
.ya0{bottom:744.790289px;}
.y176{bottom:745.948979px;}
.yc3{bottom:746.773679px;}
.y74{bottom:746.774054px;}
.y47{bottom:753.574221px;}
.y20{bottom:761.601920px;}
.y123{bottom:762.396239px;}
.y175{bottom:764.921624px;}
.y9f{bottom:766.609859px;}
.y73{bottom:768.593264px;}
.yee{bottom:768.593999px;}
.y14f{bottom:773.242677px;}
.y46{bottom:775.933964px;}
.ye{bottom:777.564335px;}
.y174{bottom:783.895754px;}
.y1f{bottom:783.961664px;}
.y122{bottom:784.646489px;}
.y9e{bottom:788.429444px;}
.y14e{bottom:788.766358px;}
.y72{bottom:790.412849px;}
.y45{bottom:798.293339px;}
.y1e{bottom:806.321406px;}
.y121{bottom:806.385494px;}
.y9d{bottom:810.248654px;}
.yed{bottom:812.231684px;}
.y71{bottom:812.232419px;}
.y44{bottom:820.653081px;}
.y173{bottom:820.869869px;}
.y14d{bottom:821.165037px;}
.y11e{bottom:822.476067px;}
.yd{bottom:822.786260px;}
.y1d{bottom:828.680976px;}
.y9c{bottom:832.067875px;}
.y70{bottom:834.051629px;}
.yc2{bottom:834.052004px;}
.y14c{bottom:836.688718px;}
.y120{bottom:837.999017px;}
.y172{bottom:839.842529px;}
.yc{bottom:847.674265px;}
.y1c{bottom:851.040531px;}
.y9b{bottom:853.887457px;}
.y6f{bottom:855.870854px;}
.yec{bottom:855.871589px;}
.y195{bottom:856.116944px;}
.y171{bottom:858.815189px;}
.y43{bottom:861.012636px;}
.yb{bottom:867.117416px;}
.y14b{bottom:869.087398px;}
.y11c{bottom:870.398442px;}
.y1b{bottom:873.400274px;}
.y194{bottom:875.250367px;}
.y9a{bottom:875.707034px;}
.y6e{bottom:877.690424px;}
.yc1{bottom:877.690432px;}
.y11d{bottom:885.921392px;}
.ya{bottom:886.560581px;}
.y193{bottom:895.085812px;}
.y1a{bottom:895.760014px;}
.y170{bottom:895.789304px;}
.y99{bottom:897.526244px;}
.yeb{bottom:899.509274px;}
.y6d{bottom:899.510009px;}
.y42{bottom:901.372191px;}
.y14a{bottom:901.486079px;}
.y16f{bottom:914.763434px;}
.y19{bottom:918.119571px;}
.y118{bottom:918.320802px;}
.y98{bottom:919.345454px;}
.y9{bottom:919.736528px;}
.yc0{bottom:921.328859px;}
.y6c{bottom:921.329219px;}
.y192{bottom:932.763434px;}
.y11b{bottom:933.843752px;}
.y148{bottom:933.884769px;}
.y149{bottom:935.958989px;}
.y18{bottom:940.479126px;}
.y97{bottom:941.165039px;}
.y41{bottom:941.731941px;}
.y8{bottom:942.690316px;}
.y6b{bottom:943.148444px;}
.yea{bottom:943.149164px;}
.y16e{bottom:951.736079px;}
.y17{bottom:962.838681px;}
.y96{bottom:962.984624px;}
.y40{bottom:964.091676px;}
.y6a{bottom:964.968014px;}
.y115{bottom:966.243165px;}
.y147{bottom:968.357669px;}
.y16d{bottom:970.708739px;}
.y113{bottom:981.766114px;}
.y95{bottom:984.803834px;}
.y16{bottom:985.198426px;}
.y3f{bottom:986.451236px;}
.y7{bottom:986.746525px;}
.y69{bottom:986.787599px;}
.y16c{bottom:989.682869px;}
.y6{bottom:1006.273933px;}
.y94{bottom:1006.623047px;}
.y146{bottom:1007.098389px;}
.y15{bottom:1007.557983px;}
.y191{bottom:1007.682861px;}
.y68{bottom:1008.606812px;}
.ybf{bottom:1008.607179px;}
.y3e{bottom:1008.810791px;}
.y112{bottom:1014.165526px;}
.y111{bottom:1015.889647px;}
.y16b{bottom:1026.656982px;}
.y145{bottom:1028.918702px;}
.y93{bottom:1029.019043px;}
.y5{bottom:1029.605736px;}
.y67{bottom:1030.426026px;}
.y3d{bottom:1031.170533px;}
.y16a{bottom:1045.629639px;}
.y10f{bottom:1046.563477px;}
.y14{bottom:1050.917633px;}
.y144{bottom:1051.168212px;}
.y66{bottom:1052.245605px;}
.y4{bottom:1053.091299px;}
.y169{bottom:1064.602295px;}
.y3c{bottom:1071.530270px;}
.y143{bottom:1072.475831px;}
.y92{bottom:1074.065184px;}
.y65{bottom:1074.065186px;}
.y10d{bottom:1078.962891px;}
.y3{bottom:1079.017319px;}
.y190{bottom:1083.576416px;}
.y142{bottom:1089.077637px;}
.y3b{bottom:1093.889834px;}
.y13{bottom:1094.277375px;}
.ybe{bottom:1095.884034px;}
.y91{bottom:1095.884397px;}
.y64{bottom:1095.884400px;}
.y168{bottom:1101.576416px;}
.y2{bottom:1102.349121px;}
.y3a{bottom:1116.249389px;}
.y63{bottom:1117.703613px;}
.y10c{bottom:1117.704347px;}
.y167{bottom:1120.550537px;}
.y12{bottom:1137.896484px;}
.y1{bottom:1138.116211px;}
.y39{bottom:1138.609131px;}
.y62{bottom:1139.523194px;}
.h15{height:29.548828px;}
.h18{height:31.272949px;}
.h11{height:31.273681px;}
.h19{height:31.274414px;}
.h13{height:33.347901px;}
.h12{height:39.313477px;}
.hf{height:43.989259px;}
.h1d{height:44.789063px;}
.h1a{height:46.797363px;}
.ha{height:48.049806px;}
.h14{height:49.280273px;}
.h17{height:49.772461px;}
.h6{height:51.946876px;}
.h10{height:52.142579px;}
.h9{height:54.111327px;}
.hb{height:54.512694px;}
.h8{height:55.193556px;}
.h2{height:56.882813px;}
.h1f{height:58.910158px;}
.h1e{height:59.167970px;}
.he{height:60.231447px;}
.h3{height:61.154295px;}
.h20{height:61.857421px;}
.hc{height:62.228026px;}
.h16{height:62.321044px;}
.hd{height:62.969237px;}
.h1c{height:64.797363px;}
.h1{height:65.707031px;}
.h4{height:67.476799px;}
.h5{height:67.476802px;}
.h1b{height:80.321044px;}
.h7{height:95.592129px;}
.h0{height:1263.000000px;}
.w8{width:73.125000px;}
.w5{width:81.000000px;}
.w2{width:93.375000px;}
.w1{width:101.250000px;}
.wb{width:117.000000px;}
.w7{width:118.125000px;}
.w4{width:126.000000px;}
.w6{width:181.125000px;}
.w3{width:183.375000px;}
.wa{width:194.625000px;}
.w9{width:196.875000px;}
.wc{width:244.125000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.xd{left:6.750000px;}
.x19{left:9.156006px;}
.x9{left:13.861450px;}
.x1e{left:18.366943px;}
.x10{left:21.353027px;}
.xf{left:23.735696px;}
.x7{left:25.679443px;}
.x12{left:26.803344px;}
.xc{left:28.491943px;}
.x11{left:31.866943px;}
.x20{left:32.979859px;}
.x1b{left:34.116943px;}
.x27{left:36.718506px;}
.x14{left:38.054443px;}
.xe{left:39.733730px;}
.x13{left:41.997437px;}
.xb{left:44.147796px;}
.x1a{left:46.304078px;}
.x1f{left:50.991944px;}
.x18{left:52.108730px;}
.x17{left:56.438965px;}
.x26{left:63.359253px;}
.x21{left:72.366944px;}
.x28{left:73.487549px;}
.x25{left:85.118775px;}
.x24{left:90.835296px;}
.x4{left:108.000000px;}
.x2{left:109.185208px;}
.x6{left:135.000000px;}
.x5{left:162.000000px;}
.x8{left:211.500000px;}
.x1c{left:228.375000px;}
.x15{left:236.250000px;}
.x3{left:242.603177px;}
.x1d{left:302.625000px;}
.x22{left:304.875000px;}
.xa{left:306.000000px;}
.x16{left:318.375000px;}
.x1{left:339.898095px;}
.x23{left:423.000000px;}
.x29{left:446.456700px;}
@media print{
.v3{vertical-align:-35.909842pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:25.348126pt;}
.v2{vertical-align:35.909842pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:175.700521pt;}
.ws3{word-spacing:-16.299479pt;}
.ws5{word-spacing:-14.580730pt;}
.ws4{word-spacing:-14.552084pt;}
.ws7{word-spacing:-11.854167pt;}
.ws6{word-spacing:-11.244792pt;}
.ws1{word-spacing:-9.525001pt;}
.ws0{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
._17{margin-left:-175.700521pt;}
._16{margin-left:-7.856575pt;}
._18{margin-left:-6.528077pt;}
._14{margin-left:-4.531727pt;}
._c{margin-left:-3.534066pt;}
._1{margin-left:-1.906251pt;}
._0{margin-left:-0.968742pt;}
._2{width:1.156237pt;}
._6{width:2.207624pt;}
._7{width:3.948675pt;}
._9{width:7.266823pt;}
._8{width:8.638658pt;}
._d{width:11.221014pt;}
._a{width:12.634425pt;}
._19{width:15.182851pt;}
._b{width:16.697049pt;}
._e{width:19.983500pt;}
._12{width:23.824652pt;}
._13{width:24.822228pt;}
._11{width:27.911404pt;}
._24{width:32.169606pt;}
._1e{width:36.091445pt;}
._10{width:39.908556pt;}
._f{width:43.960309pt;}
._1c{width:48.000002pt;}
._20{width:52.000001pt;}
._1f{width:56.000000pt;}
._22{width:68.000001pt;}
._21{width:72.000000pt;}
._1d{width:80.000000pt;}
._23{width:84.000001pt;}
._1a{width:111.289664pt;}
._1b{width:159.401041pt;}
._15{width:175.700521pt;}
._3{width:1569.107561pt;}
._4{width:1787.388814pt;}
._5{width:1989.422359pt;}
.fs2{font-size:38.400002pt;}
.fsb{font-size:42.666668pt;}
.fsa{font-size:45.333332pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:51.200001pt;}
.fs6{font-size:53.333332pt;}
.fs5{font-size:54.400002pt;}
.fsc{font-size:56.000000pt;}
.fs8{font-size:58.666668pt;}
.fs9{font-size:61.333332pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.666664pt;}
.fs4{font-size:85.333336pt;}
.y0{bottom:0.000000pt;}
.yfe{bottom:9.260417pt;}
.y117{bottom:9.542314pt;}
.y11a{bottom:9.542317pt;}
.y10e{bottom:9.542318pt;}
.y11f{bottom:9.542330pt;}
.y127{bottom:9.542957pt;}
.yf9{bottom:9.542969pt;}
.y12a{bottom:9.542970pt;}
.y109{bottom:9.542971pt;}
.y114{bottom:9.543617pt;}
.y110{bottom:9.543619pt;}
.yfb{bottom:11.873699pt;}
.y116{bottom:23.341794pt;}
.y119{bottom:23.341797pt;}
.y108{bottom:23.341798pt;}
.y136{bottom:25.542957pt;}
.y133{bottom:25.542970pt;}
.y107{bottom:37.140625pt;}
.y132{bottom:39.341797pt;}
.y12f{bottom:39.341798pt;}
.y12e{bottom:53.140625pt;}
.ybd{bottom:99.580079pt;}
.y10b{bottom:100.093105pt;}
.ye9{bottom:101.343745pt;}
.y61{bottom:101.962892pt;}
.y38{bottom:103.973952pt;}
.y141{bottom:108.481117pt;}
.yd6{bottom:111.462892pt;}
.y10a{bottom:114.850265pt;}
.y90{bottom:117.201825pt;}
.ybc{bottom:118.975265pt;}
.ye8{bottom:120.738932pt;}
.y60{bottom:121.357745pt;}
.y140{bottom:122.279945pt;}
.y37{bottom:123.849285pt;}
.y18f{bottom:129.435545pt;}
.yd5{bottom:130.857425pt;}
.y8f{bottom:136.596999pt;}
.ybb{bottom:138.370439pt;}
.ye7{bottom:140.133465pt;}
.y5f{bottom:140.752599pt;}
.y106{bottom:143.649089pt;}
.y36{bottom:143.724445pt;}
.y166{bottom:144.335292pt;}
.y18e{bottom:146.300132pt;}
.yd4{bottom:150.252599pt;}
.y13f{bottom:151.078771pt;}
.y8e{bottom:155.992190pt;}
.yba{bottom:157.765633pt;}
.ye6{bottom:159.528652pt;}
.y5e{bottom:161.103513pt;}
.y165{bottom:161.201172pt;}
.y18d{bottom:163.164719pt;}
.y35{bottom:163.599605pt;}
.y13e{bottom:164.877599pt;}
.yd3{bottom:169.647785pt;}
.y105{bottom:171.246745pt;}
.y8d{bottom:175.387046pt;}
.yb9{bottom:177.160812pt;}
.ye5{bottom:178.923825pt;}
.y5d{bottom:182.267255pt;}
.y34{bottom:183.474933pt;}
.yd2{bottom:186.513025pt;}
.y13d{bottom:193.676436pt;}
.y164{bottom:194.065759pt;}
.y8c{bottom:194.781905pt;}
.y18c{bottom:196.030599pt;}
.yb8{bottom:196.555332pt;}
.ye4{bottom:198.318366pt;}
.y104{bottom:200.045572pt;}
.y33{bottom:203.350259pt;}
.yd1{bottom:203.378252pt;}
.y5c{bottom:203.430339pt;}
.y163{bottom:210.930332pt;}
.y18b{bottom:212.896479pt;}
.y8b{bottom:214.177079pt;}
.yb7{bottom:215.950519pt;}
.ye3{bottom:217.713545pt;}
.yd0{bottom:220.243492pt;}
.y13c{bottom:221.274092pt;}
.y5b{bottom:223.638025pt;}
.y103{bottom:228.844399pt;}
.y8a{bottom:233.572265pt;}
.yb6{bottom:235.345705pt;}
.ycf{bottom:237.108719pt;}
.y32{bottom:239.225419pt;}
.y5a{bottom:243.033199pt;}
.y162{bottom:243.796225pt;}
.y18a{bottom:245.761065pt;}
.y13b{bottom:250.072916pt;}
.y89{bottom:252.967119pt;}
.yb5{bottom:254.740559pt;}
.yce{bottom:256.503905pt;}
.y102{bottom:257.643225pt;}
.y161{bottom:260.662105pt;}
.y59{bottom:262.428065pt;}
.y189{bottom:262.625652pt;}
.y139{bottom:263.871744pt;}
.y88{bottom:272.361985pt;}
.yb4{bottom:274.135412pt;}
.y31{bottom:275.100592pt;}
.ycd{bottom:275.899092pt;}
.y160{bottom:277.526692pt;}
.y13a{bottom:277.670572pt;}
.y188{bottom:279.491532pt;}
.y58{bottom:281.822919pt;}
.y101{bottom:286.442052pt;}
.y100{bottom:287.975255pt;}
.y87{bottom:291.757159pt;}
.yb3{bottom:293.530599pt;}
.ycc{bottom:295.293625pt;}
.y187{bottom:296.357425pt;}
.y57{bottom:301.218105pt;}
.y138{bottom:306.469397pt;}
.y15f{bottom:310.391279pt;}
.y30{bottom:310.975742pt;}
.y86{bottom:311.152333pt;}
.yb2{bottom:312.925785pt;}
.ycb{bottom:314.688799pt;}
.ye2{bottom:314.688804pt;}
.yff{bottom:315.240892pt;}
.yfd{bottom:316.774095pt;}
.y137{bottom:320.268225pt;}
.y56{bottom:320.613279pt;}
.y15e{bottom:327.257159pt;}
.y186{bottom:329.221999pt;}
.y2f{bottom:330.851072pt;}
.y85{bottom:331.502598pt;}
.yb1{bottom:332.320639pt;}
.yca{bottom:334.083985pt;}
.ye1{bottom:334.083988pt;}
.y55{bottom:340.008132pt;}
.yfa{bottom:344.039715pt;}
.yfc{bottom:345.883465pt;}
.y185{bottom:346.086585pt;}
.y135{bottom:349.067064pt;}
.y2e{bottom:350.726222pt;}
.yb0{bottom:351.715492pt;}
.y84{bottom:352.666333pt;}
.yc9{bottom:353.478519pt;}
.y15d{bottom:360.123052pt;}
.y54{bottom:368.645834pt;}
.y2d{bottom:370.601562pt;}
.yaf{bottom:371.110679pt;}
.y83{bottom:372.873692pt;}
.yf8{bottom:374.682292pt;}
.y15c{bottom:376.987625pt;}
.y134{bottom:378.865892pt;}
.y184{bottom:378.952479pt;}
.y2c{bottom:390.476714pt;}
.yae{bottom:390.505865pt;}
.ye0{bottom:392.268876pt;}
.y82{bottom:392.268879pt;}
.yc8{bottom:392.268882pt;}
.y15b{bottom:393.852865pt;}
.y183{bottom:395.818359pt;}
.y131{bottom:407.664717pt;}
.yf7{bottom:409.119145pt;}
.yad{bottom:409.900719pt;}
.y2b{bottom:410.352049pt;}
.yc7{bottom:411.664057pt;}
.ydf{bottom:411.664060pt;}
.y81{bottom:411.664065pt;}
.y182{bottom:412.682945pt;}
.y53{bottom:416.153319pt;}
.y15a{bottom:427.610674pt;}
.yf6{bottom:429.183588pt;}
.yac{bottom:429.295572pt;}
.y181{bottom:429.547532pt;}
.y2a{bottom:430.227217pt;}
.y80{bottom:431.058919pt;}
.yde{bottom:431.059239pt;}
.yc6{bottom:431.059241pt;}
.y130{bottom:437.463545pt;}
.yab{bottom:448.690759pt;}
.yf5{bottom:448.757159pt;}
.y29{bottom:450.102538pt;}
.y7f{bottom:450.453772pt;}
.y52{bottom:451.216152pt;}
.y180{bottom:462.413412pt;}
.y12d{bottom:466.262369pt;}
.yaa{bottom:468.085932pt;}
.yf4{bottom:468.821618pt;}
.ydd{bottom:469.848946pt;}
.y7e{bottom:469.848959pt;}
.y28{bottom:469.977698pt;}
.y51{bottom:471.091472pt;}
.y159{bottom:475.117839pt;}
.y17f{bottom:479.279292pt;}
.ya9{bottom:487.480799pt;}
.yf3{bottom:489.064455pt;}
.ydc{bottom:489.244141pt;}
.y7d{bottom:489.244145pt;}
.y27{bottom:489.853026pt;}
.y50{bottom:490.966792pt;}
.y158{bottom:494.513025pt;}
.y17e{bottom:496.143879pt;}
.ya8{bottom:506.875652pt;}
.yc5{bottom:508.638665pt;}
.ydb{bottom:508.638673pt;}
.y7c{bottom:508.638999pt;}
.y26{bottom:509.728190pt;}
.y12c{bottom:509.860025pt;}
.y4f{bottom:510.841805pt;}
.y17d{bottom:513.008465pt;}
.y157{bottom:513.907559pt;}
.ya7{bottom:526.270839pt;}
.y7b{bottom:528.033852pt;}
.yf2{bottom:528.034505pt;}
.y25{bottom:529.603352pt;}
.y4e{bottom:530.717125pt;}
.y156{bottom:532.277994pt;}
.y129{bottom:538.658851pt;}
.y155{bottom:544.533851pt;}
.ya6{bottom:545.666012pt;}
.y17c{bottom:545.874345pt;}
.yda{bottom:547.429036pt;}
.y7a{bottom:547.429039pt;}
.y4d{bottom:550.592453pt;}
.y12b{bottom:552.457679pt;}
.y154{bottom:558.332679pt;}
.y17b{bottom:562.740239pt;}
.ya5{bottom:565.060879pt;}
.y24{bottom:565.478512pt;}
.yf1{bottom:566.823572pt;}
.yd9{bottom:566.824220pt;}
.y79{bottom:566.824225pt;}
.y4c{bottom:570.467453pt;}
.y17a{bottom:579.604812pt;}
.y128{bottom:581.256505pt;}
.ya4{bottom:584.455732pt;}
.y78{bottom:586.219079pt;}
.yc4{bottom:586.219399pt;}
.y153{bottom:587.131505pt;}
.y4b{bottom:590.342779pt;}
.y23{bottom:601.353846pt;}
.ya3{bottom:603.850905pt;}
.yd8{bottom:605.613929pt;}
.y77{bottom:605.613932pt;}
.yf0{bottom:605.614585pt;}
.y126{bottom:610.055344pt;}
.y4a{bottom:610.218099pt;}
.y179{bottom:612.469399pt;}
.y11{bottom:612.992518pt;}
.y152{bottom:615.930332pt;}
.ya2{bottom:623.246097pt;}
.y125{bottom:623.854172pt;}
.yd7{bottom:625.009113pt;}
.y76{bottom:625.009119pt;}
.y178{bottom:629.335292pt;}
.y49{bottom:630.093419pt;}
.y10{bottom:633.857745pt;}
.y22{bottom:637.229166pt;}
.ya1{bottom:642.640953pt;}
.yef{bottom:644.403652pt;}
.y75{bottom:644.404292pt;}
.y151{bottom:644.729171pt;}
.y177{bottom:646.201172pt;}
.y48{bottom:649.968592pt;}
.yf{bottom:654.722985pt;}
.y21{bottom:657.104325pt;}
.y124{bottom:658.291012pt;}
.y150{bottom:658.527999pt;}
.ya0{bottom:662.035812pt;}
.y176{bottom:663.065759pt;}
.yc3{bottom:663.798825pt;}
.y74{bottom:663.799159pt;}
.y47{bottom:669.843752pt;}
.y20{bottom:676.979485pt;}
.y123{bottom:677.685545pt;}
.y175{bottom:679.930332pt;}
.y9f{bottom:681.430985pt;}
.y73{bottom:683.194012pt;}
.yee{bottom:683.194665pt;}
.y14f{bottom:687.326824pt;}
.y46{bottom:689.719079pt;}
.ye{bottom:691.168298pt;}
.y174{bottom:696.796225pt;}
.y1f{bottom:696.854813pt;}
.y122{bottom:697.463546pt;}
.y9e{bottom:700.826172pt;}
.y14e{bottom:701.125652pt;}
.y72{bottom:702.589199pt;}
.y45{bottom:709.594079pt;}
.y1e{bottom:716.730139pt;}
.y121{bottom:716.787106pt;}
.y9d{bottom:720.221025pt;}
.yed{bottom:721.983719pt;}
.y71{bottom:721.984372pt;}
.y44{bottom:729.469406pt;}
.y173{bottom:729.662105pt;}
.y14d{bottom:729.924477pt;}
.y11e{bottom:731.089837pt;}
.yd{bottom:731.365564pt;}
.y1d{bottom:736.605312pt;}
.y9c{bottom:739.615889pt;}
.y70{bottom:741.379225pt;}
.yc2{bottom:741.379559pt;}
.y14c{bottom:743.723305pt;}
.y120{bottom:744.888015pt;}
.y172{bottom:746.526692pt;}
.yc{bottom:753.488236pt;}
.y1c{bottom:756.480472pt;}
.y9b{bottom:759.011073pt;}
.y6f{bottom:760.774092pt;}
.yec{bottom:760.774745pt;}
.y195{bottom:760.992839pt;}
.y171{bottom:763.391279pt;}
.y43{bottom:765.344566pt;}
.yb{bottom:770.771036pt;}
.y14b{bottom:772.522132pt;}
.y11c{bottom:773.687504pt;}
.y1b{bottom:776.355799pt;}
.y194{bottom:778.000326pt;}
.y9a{bottom:778.406252pt;}
.y6e{bottom:780.169265pt;}
.yc1{bottom:780.169273pt;}
.y11d{bottom:787.485681pt;}
.ya{bottom:788.053850pt;}
.y193{bottom:795.631833pt;}
.y1a{bottom:796.231123pt;}
.y170{bottom:796.257159pt;}
.y99{bottom:797.801105pt;}
.yeb{bottom:799.563799pt;}
.y6d{bottom:799.564452pt;}
.y42{bottom:801.219726pt;}
.y14a{bottom:801.320959pt;}
.y16f{bottom:813.123052pt;}
.y19{bottom:816.106286pt;}
.y118{bottom:816.285157pt;}
.y98{bottom:817.195959pt;}
.y9{bottom:817.543580pt;}
.yc0{bottom:818.958985pt;}
.y6c{bottom:818.959305pt;}
.y192{bottom:829.123052pt;}
.y11b{bottom:830.083335pt;}
.y148{bottom:830.119795pt;}
.y149{bottom:831.963545pt;}
.y18{bottom:835.981445pt;}
.y97{bottom:836.591145pt;}
.y41{bottom:837.095059pt;}
.y8{bottom:837.946947pt;}
.y6b{bottom:838.354172pt;}
.yea{bottom:838.354812pt;}
.y16e{bottom:845.987625pt;}
.y17{bottom:855.856606pt;}
.y96{bottom:855.986332pt;}
.y40{bottom:856.970379pt;}
.y6a{bottom:857.749345pt;}
.y115{bottom:858.882813pt;}
.y147{bottom:860.762372pt;}
.y16d{bottom:862.852212pt;}
.y113{bottom:872.680991pt;}
.y95{bottom:875.381185pt;}
.y16{bottom:875.731934pt;}
.y3f{bottom:876.845543pt;}
.y7{bottom:877.108022pt;}
.y69{bottom:877.144532pt;}
.y16c{bottom:879.718105pt;}
.y6{bottom:894.465718pt;}
.y94{bottom:894.776041pt;}
.y146{bottom:895.198568pt;}
.y15{bottom:895.607096pt;}
.y191{bottom:895.718099pt;}
.y68{bottom:896.539388pt;}
.ybf{bottom:896.539714pt;}
.y3e{bottom:896.720703pt;}
.y112{bottom:901.480468pt;}
.y111{bottom:903.013020pt;}
.y16b{bottom:912.583984pt;}
.y145{bottom:914.594401pt;}
.y93{bottom:914.683594pt;}
.y5{bottom:915.205099pt;}
.y67{bottom:915.934245pt;}
.y3d{bottom:916.596030pt;}
.y16a{bottom:929.448568pt;}
.y10f{bottom:930.278647pt;}
.y14{bottom:934.149007pt;}
.y144{bottom:934.371744pt;}
.y66{bottom:935.329427pt;}
.y4{bottom:936.081155pt;}
.y169{bottom:946.313151pt;}
.y3c{bottom:952.471351pt;}
.y143{bottom:953.311849pt;}
.y92{bottom:954.724608pt;}
.y65{bottom:954.724609pt;}
.y10d{bottom:959.078125pt;}
.y3{bottom:959.126506pt;}
.y190{bottom:963.179036pt;}
.y142{bottom:968.069011pt;}
.y3b{bottom:972.346519pt;}
.y13{bottom:972.691000pt;}
.ybe{bottom:974.119141pt;}
.y91{bottom:974.119464pt;}
.y64{bottom:974.119467pt;}
.y168{bottom:979.179036pt;}
.y2{bottom:979.865886pt;}
.y3a{bottom:992.221679pt;}
.y63{bottom:993.514323pt;}
.y10c{bottom:993.514975pt;}
.y167{bottom:996.044921pt;}
.y12{bottom:1011.463542pt;}
.y1{bottom:1011.658854pt;}
.y39{bottom:1012.097006pt;}
.y62{bottom:1012.909505pt;}
.h15{height:26.265625pt;}
.h18{height:27.798177pt;}
.h11{height:27.798828pt;}
.h19{height:27.799479pt;}
.h13{height:29.642579pt;}
.h12{height:34.945313pt;}
.hf{height:39.101563pt;}
.h1d{height:39.812500pt;}
.h1a{height:41.597656pt;}
.ha{height:42.710938pt;}
.h14{height:43.804688pt;}
.h17{height:44.242188pt;}
.h6{height:46.175001pt;}
.h10{height:46.348959pt;}
.h9{height:48.098957pt;}
.hb{height:48.455728pt;}
.h8{height:49.060939pt;}
.h2{height:50.562500pt;}
.h1f{height:52.364585pt;}
.h1e{height:52.593751pt;}
.he{height:53.539064pt;}
.h3{height:54.359373pt;}
.h20{height:54.984374pt;}
.hc{height:55.313801pt;}
.h16{height:55.396484pt;}
.hd{height:55.972655pt;}
.h1c{height:57.597656pt;}
.h1{height:58.406250pt;}
.h4{height:59.979377pt;}
.h5{height:59.979379pt;}
.h1b{height:71.396484pt;}
.h7{height:84.970781pt;}
.h0{height:1122.666667pt;}
.w8{width:65.000000pt;}
.w5{width:72.000000pt;}
.w2{width:83.000000pt;}
.w1{width:90.000000pt;}
.wb{width:104.000000pt;}
.w7{width:105.000000pt;}
.w4{width:112.000000pt;}
.w6{width:161.000000pt;}
.w3{width:163.000000pt;}
.wa{width:173.000000pt;}
.w9{width:175.000000pt;}
.wc{width:217.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.xd{left:6.000000pt;}
.x19{left:8.138672pt;}
.x9{left:12.321289pt;}
.x1e{left:16.326172pt;}
.x10{left:18.980469pt;}
.xf{left:21.098396pt;}
.x7{left:22.826172pt;}
.x12{left:23.825195pt;}
.xc{left:25.326172pt;}
.x11{left:28.326172pt;}
.x20{left:29.315430pt;}
.x1b{left:30.326172pt;}
.x27{left:32.638672pt;}
.x14{left:33.826172pt;}
.xe{left:35.318871pt;}
.x13{left:37.331055pt;}
.xb{left:39.242485pt;}
.x1a{left:41.159180pt;}
.x1f{left:45.326172pt;}
.x18{left:46.318871pt;}
.x17{left:50.167969pt;}
.x26{left:56.319336pt;}
.x21{left:64.326172pt;}
.x28{left:65.322266pt;}
.x25{left:75.661133pt;}
.x24{left:80.742485pt;}
.x4{left:96.000000pt;}
.x2{left:97.053519pt;}
.x6{left:120.000000pt;}
.x5{left:144.000000pt;}
.x8{left:188.000000pt;}
.x1c{left:203.000000pt;}
.x15{left:210.000000pt;}
.x3{left:215.647269pt;}
.x1d{left:269.000000pt;}
.x22{left:271.000000pt;}
.xa{left:272.000000pt;}
.x16{left:283.000000pt;}
.x1{left:302.131640pt;}
.x23{left:376.000000pt;}
.x29{left:396.850400pt;}
}




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