
    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_12658bc4fa6b8c91ee6e3687.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.140000;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_c25778e86ef7921c95d65d29.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.123000;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_1b8a127af736da113eb77731.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120000;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_54f4eb58064860eb15a63200.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.075000;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_2a50f61ae8805a37b94e7ef5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.120000;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_7ad092329624cbdf29ce25c7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.075000;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_73ce13264164ff39fe9b48c8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.121000;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_d3700b1eba3178358654365f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.130000;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_e313adc9ffc29589524db6ee.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.061000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_14501331bcc22e9fec2059d1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a9dfbd265852858ba068faef.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.121000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws5{word-spacing:-18.006785px;}
.ws4{word-spacing:-16.498716px;}
.ws9{word-spacing:-15.001902px;}
.ws2{word-spacing:-13.505088px;}
.ws8{word-spacing:-10.504682px;}
.ws6{word-spacing:-6.996050px;}
.ws7{word-spacing:-5.901460px;}
.ws3{word-spacing:0.000000px;}
.ws0{word-spacing:467.221475px;}
.ws1{word-spacing:1128.337756px;}
._30{margin-left:-1.002178px;}
._13{width:1.193036px;}
._2a{width:2.459623px;}
._9{width:3.472589px;}
._3b{width:5.159235px;}
._34{width:6.694541px;}
._4{width:8.610655px;}
._1e{width:9.822213px;}
._31{width:10.993517px;}
._5{width:12.386643px;}
._19{width:13.425450px;}
._7{width:14.879382px;}
._15{width:18.553702px;}
._0{width:19.749710px;}
._16{width:20.914426px;}
._23{width:22.398236px;}
._12{width:23.559764px;}
._20{width:24.747216px;}
._24{width:26.553766px;}
._33{width:27.572505px;}
._f{width:29.164859px;}
._2e{width:30.578847px;}
._5c{width:31.861392px;}
._4a{width:33.261098px;}
._d{width:34.461604px;}
._44{width:35.934982px;}
._61{width:37.887509px;}
._2f{width:39.216396px;}
._1b{width:40.250703px;}
._22{width:41.366744px;}
._c{width:42.620442px;}
._6{width:43.777008px;}
._49{width:45.301355px;}
._14{width:46.903645px;}
._55{width:48.034991px;}
._48{width:50.058034px;}
._50{width:52.888734px;}
._2c{width:54.135547px;}
._8{width:57.156334px;}
._2{width:58.926201px;}
._17{width:61.885853px;}
._e{width:63.686426px;}
._32{width:65.664375px;}
._18{width:66.689259px;}
._11{width:68.715793px;}
._36{width:70.591961px;}
._42{width:72.249941px;}
._47{width:73.622209px;}
._1f{width:75.342058px;}
._1d{width:76.381609px;}
._27{width:77.672020px;}
._3{width:78.743687px;}
._4f{width:79.861200px;}
._1a{width:81.781827px;}
._a{width:82.952364px;}
._29{width:84.839240px;}
._2d{width:86.540269px;}
._58{width:89.413463px;}
._2b{width:92.423896px;}
._4b{width:93.610883px;}
._60{width:94.752613px;}
._39{width:96.529061px;}
._5a{width:99.031903px;}
._40{width:101.807088px;}
._5f{width:103.489038px;}
._3e{width:104.642960px;}
._46{width:107.064203px;}
._3f{width:110.110909px;}
._25{width:116.776987px;}
._4d{width:122.520412px;}
._10{width:123.531565px;}
._3c{width:124.831729px;}
._52{width:127.357158px;}
._37{width:131.049802px;}
._57{width:132.140733px;}
._35{width:134.459982px;}
._51{width:135.643285px;}
._4e{width:147.858508px;}
._28{width:148.914351px;}
._5b{width:150.521726px;}
._4c{width:155.983183px;}
._59{width:164.633713px;}
._26{width:169.463654px;}
._3a{width:173.824343px;}
._b{width:184.478279px;}
._54{width:203.556304px;}
._45{width:223.902426px;}
._21{width:232.826874px;}
._56{width:266.072853px;}
._53{width:274.807798px;}
._1c{width:287.089478px;}
._3d{width:310.190007px;}
._38{width:325.201396px;}
._41{width:481.196061px;}
._43{width:510.716424px;}
._1{width:538.474885px;}
._5e{width:583.105999px;}
._5d{width:653.205173px;}
.fc3{color:rgb(1,52,44);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,76,62);}
.fs7{font-size:18.675507px;}
.fs6{font-size:27.984200px;}
.fs8{font-size:29.750527px;}
.fs2{font-size:36.013569px;}
.fs9{font-size:42.018727px;}
.fs4{font-size:54.020354px;}
.fs1{font-size:60.007609px;}
.fs5{font-size:65.994864px;}
.fs3{font-size:72.027138px;}
.fs0{font-size:84.001650px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y10f{bottom:3.779660px;}
.y109{bottom:4.925012px;}
.y10b{bottom:5.066692px;}
.y10d{bottom:5.070822px;}
.y115{bottom:5.908156px;}
.y117{bottom:7.951205px;}
.y114{bottom:15.824999px;}
.y110{bottom:20.655020px;}
.y10c{bottom:21.735020px;}
.y113{bottom:25.741841px;}
.y112{bottom:35.658684px;}
.y10a{bottom:40.095019px;}
.y10e{bottom:42.255019px;}
.y111{bottom:45.575526px;}
.y83{bottom:55.562133px;}
.y108{bottom:57.375018px;}
.yf0{bottom:73.481277px;}
.yc6{bottom:76.754699px;}
.y82{bottom:78.070614px;}
.y43{bottom:80.404865px;}
.yb7{bottom:84.433164px;}
.y21{bottom:95.616668px;}
.yef{bottom:95.989757px;}
.yc5{bottom:99.263180px;}
.y81{bottom:100.579095px;}
.y42{bottom:102.913345px;}
.yb6{bottom:106.941645px;}
.y20{bottom:118.125148px;}
.yee{bottom:118.498238px;}
.yc4{bottom:121.771660px;}
.y80{bottom:123.087575px;}
.y41{bottom:125.421826px;}
.y116{bottom:127.215015px;}
.yb5{bottom:129.450125px;}
.y6f{bottom:133.847007px;}
.y1f{bottom:140.633629px;}
.yed{bottom:141.006719px;}
.yc3{bottom:144.280141px;}
.y7f{bottom:145.596056px;}
.y40{bottom:147.930307px;}
.yb4{bottom:151.958606px;}
.y6e{bottom:156.355487px;}
.y1e{bottom:163.142110px;}
.yec{bottom:163.515199px;}
.yc2{bottom:166.788622px;}
.y7e{bottom:168.104537px;}
.y3f{bottom:170.438787px;}
.yb3{bottom:174.467086px;}
.y6d{bottom:178.863968px;}
.y11c{bottom:181.775341px;}
.y1d{bottom:185.650590px;}
.yeb{bottom:186.023680px;}
.yc1{bottom:189.297102px;}
.y7d{bottom:190.613017px;}
.y3e{bottom:192.947268px;}
.yb2{bottom:196.975567px;}
.y11b{bottom:199.782126px;}
.y6c{bottom:201.372449px;}
.y1c{bottom:208.159071px;}
.yea{bottom:208.532161px;}
.yc0{bottom:211.805583px;}
.y7c{bottom:213.121498px;}
.y3d{bottom:215.455749px;}
.y11a{bottom:217.788910px;}
.yb1{bottom:219.484048px;}
.y6b{bottom:223.880929px;}
.y1b{bottom:230.667552px;}
.ye9{bottom:231.040641px;}
.ybf{bottom:234.314064px;}
.y7b{bottom:235.629979px;}
.y3c{bottom:237.964229px;}
.yb0{bottom:241.992528px;}
.y118{bottom:243.158629px;}
.y6a{bottom:246.389410px;}
.y1a{bottom:253.176032px;}
.ye8{bottom:253.549122px;}
.ybe{bottom:256.822544px;}
.y7a{bottom:258.138459px;}
.y3b{bottom:260.472710px;}
.yaf{bottom:264.501009px;}
.y69{bottom:268.897891px;}
.y19{bottom:275.684513px;}
.ye7{bottom:276.057603px;}
.ybd{bottom:279.331025px;}
.y79{bottom:280.646940px;}
.y3a{bottom:282.981191px;}
.yae{bottom:287.009490px;}
.y68{bottom:291.406371px;}
.y18{bottom:298.192994px;}
.ye6{bottom:298.566083px;}
.ybc{bottom:301.839506px;}
.y78{bottom:303.155421px;}
.y39{bottom:305.489671px;}
.yad{bottom:309.517970px;}
.y67{bottom:313.914852px;}
.y11d{bottom:314.494050px;}
.y17{bottom:320.701474px;}
.ye5{bottom:321.074564px;}
.ybb{bottom:324.347986px;}
.y77{bottom:325.663901px;}
.y38{bottom:327.998152px;}
.yac{bottom:332.026451px;}
.y66{bottom:336.423333px;}
.y16{bottom:343.209955px;}
.ye4{bottom:343.583045px;}
.y119{bottom:343.628865px;}
.yba{bottom:346.856467px;}
.y76{bottom:348.172382px;}
.y37{bottom:350.506633px;}
.yab{bottom:354.534932px;}
.y65{bottom:358.931813px;}
.y15{bottom:365.718436px;}
.ye3{bottom:366.091525px;}
.yb9{bottom:369.364948px;}
.y75{bottom:370.680863px;}
.y36{bottom:373.015113px;}
.yaa{bottom:377.043412px;}
.y64{bottom:381.440294px;}
.ye2{bottom:388.600006px;}
.y74{bottom:393.189343px;}
.y35{bottom:395.523594px;}
.y63{bottom:403.948775px;}
.ye1{bottom:411.108487px;}
.ya{bottom:411.677152px;}
.y73{bottom:415.697824px;}
.y34{bottom:418.032075px;}
.yb8{bottom:421.059297px;}
.ya9{bottom:422.060374px;}
.y62{bottom:426.457255px;}
.ye0{bottom:433.616967px;}
.y9{bottom:436.436481px;}
.y72{bottom:438.206305px;}
.y33{bottom:440.540555px;}
.ya8{bottom:444.568854px;}
.y61{bottom:448.965736px;}
.ydf{bottom:456.125448px;}
.y32{bottom:463.049036px;}
.ya7{bottom:467.077335px;}
.y60{bottom:471.474217px;}
.yd4{bottom:472.753829px;}
.yd{bottom:482.784793px;}
.y31{bottom:485.557517px;}
.y71{bottom:486.530941px;}
.ya6{bottom:489.585816px;}
.y5f{bottom:493.982697px;}
.yd3{bottom:495.262310px;}
.yc{bottom:500.791577px;}
.y30{bottom:508.065997px;}
.y70{bottom:511.290270px;}
.ya5{bottom:512.094296px;}
.ydd{bottom:516.358457px;}
.y5e{bottom:516.491178px;}
.yd2{bottom:517.770791px;}
.yb{bottom:518.798362px;}
.y2f{bottom:530.574478px;}
.ya4{bottom:534.602777px;}
.y5d{bottom:538.999659px;}
.yd1{bottom:540.279271px;}
.y2e{bottom:553.082959px;}
.y88{bottom:553.841230px;}
.ya3{bottom:557.111258px;}
.y5c{bottom:561.508139px;}
.yd0{bottom:562.787752px;}
.y87{bottom:571.848014px;}
.y2d{bottom:575.591439px;}
.y107{bottom:576.591458px;}
.ya2{bottom:579.619738px;}
.y5b{bottom:584.016620px;}
.ycf{bottom:585.296233px;}
.y86{bottom:589.854799px;}
.y2c{bottom:598.099920px;}
.y106{bottom:599.099939px;}
.ya1{bottom:602.128219px;}
.y5a{bottom:606.525100px;}
.yce{bottom:607.804713px;}
.y2b{bottom:620.608401px;}
.y105{bottom:621.608419px;}
.ya0{bottom:624.636700px;}
.y59{bottom:629.033581px;}
.ycd{bottom:630.313194px;}
.y2a{bottom:643.116881px;}
.y104{bottom:644.116900px;}
.y9f{bottom:647.145180px;}
.y58{bottom:651.542062px;}
.ycc{bottom:652.821675px;}
.y29{bottom:665.625362px;}
.y103{bottom:666.625381px;}
.y9e{bottom:669.653661px;}
.y57{bottom:674.050542px;}
.ycb{bottom:675.330155px;}
.y28{bottom:688.133843px;}
.y102{bottom:689.133861px;}
.y9d{bottom:692.162142px;}
.y56{bottom:696.559023px;}
.yca{bottom:697.838636px;}
.y27{bottom:710.642323px;}
.y101{bottom:711.642342px;}
.y9c{bottom:714.670622px;}
.y55{bottom:719.067504px;}
.yc9{bottom:720.347117px;}
.y26{bottom:733.150804px;}
.y100{bottom:734.150823px;}
.y9b{bottom:737.179103px;}
.y54{bottom:741.575984px;}
.yc8{bottom:742.855597px;}
.y25{bottom:755.659285px;}
.yff{bottom:756.659303px;}
.y9a{bottom:759.687584px;}
.y53{bottom:764.084465px;}
.yc7{bottom:765.364078px;}
.y24{bottom:778.167765px;}
.yfe{bottom:779.167784px;}
.y99{bottom:782.196064px;}
.y52{bottom:786.592946px;}
.ydc{bottom:789.446669px;}
.y23{bottom:800.676246px;}
.yfd{bottom:801.676265px;}
.y98{bottom:804.704545px;}
.ydb{bottom:807.453454px;}
.y51{bottom:809.101426px;}
.yd8{bottom:815.304089px;}
.y22{bottom:823.184727px;}
.yda{bottom:825.460238px;}
.y97{bottom:827.213026px;}
.y50{bottom:831.609907px;}
.yd7{bottom:833.310874px;}
.yd9{bottom:843.467023px;}
.y96{bottom:849.721506px;}
.yde{bottom:849.994455px;}
.yd6{bottom:851.317658px;}
.y4f{bottom:854.118388px;}
.y12b{bottom:855.277667px;}
.y14{bottom:864.218461px;}
.yd5{bottom:869.324443px;}
.y95{bottom:872.229987px;}
.y4e{bottom:876.626868px;}
.y12a{bottom:877.786148px;}
.y13{bottom:886.726942px;}
.y94{bottom:894.738468px;}
.yfc{bottom:897.762324px;}
.y4d{bottom:899.135349px;}
.y129{bottom:900.294628px;}
.y12{bottom:909.235422px;}
.y93{bottom:917.246948px;}
.yfb{bottom:920.270804px;}
.y4c{bottom:921.643830px;}
.y128{bottom:922.803109px;}
.y11{bottom:931.743903px;}
.y92{bottom:939.755429px;}
.yfa{bottom:942.779285px;}
.y4b{bottom:944.152310px;}
.y127{bottom:945.311590px;}
.y10{bottom:954.252384px;}
.y91{bottom:962.263910px;}
.yf9{bottom:965.287766px;}
.y85{bottom:966.660791px;}
.y126{bottom:967.820070px;}
.yf{bottom:976.760864px;}
.y90{bottom:984.772390px;}
.yf8{bottom:987.796246px;}
.y4a{bottom:989.169272px;}
.y125{bottom:990.328551px;}
.ye{bottom:999.269345px;}
.y8f{bottom:1007.280871px;}
.yf7{bottom:1010.304727px;}
.y84{bottom:1011.677752px;}
.y124{bottom:1012.837032px;}
.y8e{bottom:1029.789352px;}
.yf6{bottom:1032.813208px;}
.y49{bottom:1034.186233px;}
.y123{bottom:1035.345512px;}
.y6{bottom:1039.327724px;}
.y8{bottom:1046.080268px;}
.y8d{bottom:1052.297832px;}
.yf5{bottom:1055.321688px;}
.y48{bottom:1056.694714px;}
.y122{bottom:1057.853993px;}
.y5{bottom:1059.585357px;}
.y7{bottom:1066.337901px;}
.y8c{bottom:1074.806313px;}
.yf4{bottom:1077.830169px;}
.y47{bottom:1079.203194px;}
.y3{bottom:1079.842989px;}
.y121{bottom:1080.362474px;}
.y4{bottom:1086.595533px;}
.y8b{bottom:1097.314794px;}
.yf3{bottom:1100.338650px;}
.y46{bottom:1101.711675px;}
.y120{bottom:1102.870954px;}
.y8a{bottom:1119.823274px;}
.yf2{bottom:1122.847130px;}
.y45{bottom:1124.220156px;}
.y11f{bottom:1125.379435px;}
.y89{bottom:1142.331755px;}
.yf1{bottom:1145.355611px;}
.y44{bottom:1146.728636px;}
.y11e{bottom:1147.887916px;}
.y2{bottom:1150.902724px;}
.he{height:9.000000px;}
.hc{height:12.959999px;}
.hf{height:15.033783px;}
.h12{height:19.439999px;}
.hd{height:22.751155px;}
.h11{height:24.187179px;}
.h5{height:31.511873px;}
.h13{height:34.161225px;}
.hb{height:47.105748px;}
.h7{height:47.267809px;}
.h14{height:48.786186px;}
.h4{height:52.506658px;}
.h10{height:53.639998px;}
.h9{height:57.547522px;}
.h8{height:57.745506px;}
.ha{height:59.638470px;}
.h6{height:64.032126px;}
.h3{height:74.677467px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w5{width:30.959999px;}
.w7{width:46.079998px;}
.w4{width:62.279997px;}
.w3{width:65.879997px;}
.w2{width:66.239997px;}
.w6{width:200.519992px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:43.554258px;}
.xf{left:44.748082px;}
.xd{left:45.943812px;}
.x4{left:48.495573px;}
.xe{left:56.664852px;}
.x7{left:71.600029px;}
.x1{left:114.893685px;}
.xb{left:119.519995px;}
.xc{left:127.079995px;}
.x3{left:158.329925px;}
.x5{left:469.235590px;}
.xa{left:496.079979px;}
.x6{left:497.283268px;}
.x9{left:618.479974px;}
.x8{left:620.279974px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws5{word-spacing:-16.006031pt;}
.ws4{word-spacing:-14.665525pt;}
.ws9{word-spacing:-13.335024pt;}
.ws2{word-spacing:-12.004523pt;}
.ws8{word-spacing:-9.337495pt;}
.ws6{word-spacing:-6.218711pt;}
.ws7{word-spacing:-5.245742pt;}
.ws3{word-spacing:0.000000pt;}
.ws0{word-spacing:415.307978pt;}
.ws1{word-spacing:1002.966894pt;}
._30{margin-left:-0.890825pt;}
._13{width:1.060477pt;}
._2a{width:2.186331pt;}
._9{width:3.086746pt;}
._3b{width:4.585987pt;}
._34{width:5.950703pt;}
._4{width:7.653916pt;}
._1e{width:8.730856pt;}
._31{width:9.772015pt;}
._5{width:11.010349pt;}
._19{width:11.933733pt;}
._7{width:13.226117pt;}
._15{width:16.492180pt;}
._0{width:17.555297pt;}
._16{width:18.590601pt;}
._23{width:19.909543pt;}
._12{width:20.942012pt;}
._20{width:21.997526pt;}
._24{width:23.603348pt;}
._33{width:24.508894pt;}
._f{width:25.924319pt;}
._2e{width:27.181198pt;}
._5c{width:28.321238pt;}
._4a{width:29.565420pt;}
._d{width:30.632537pt;}
._44{width:31.942206pt;}
._61{width:33.677786pt;}
._2f{width:34.859019pt;}
._1b{width:35.778402pt;}
._22{width:36.770439pt;}
._c{width:37.884838pt;}
._6{width:38.912896pt;}
._49{width:40.267871pt;}
._14{width:41.692129pt;}
._55{width:42.697770pt;}
._48{width:44.496030pt;}
._50{width:47.012208pt;}
._2c{width:48.120486pt;}
._8{width:50.805630pt;}
._2{width:52.378845pt;}
._17{width:55.009647pt;}
._e{width:56.610157pt;}
._32{width:58.368334pt;}
._18{width:59.279342pt;}
._11{width:61.080705pt;}
._36{width:62.748410pt;}
._42{width:64.222170pt;}
._47{width:65.441963pt;}
._1f{width:66.970719pt;}
._1d{width:67.894764pt;}
._27{width:69.041795pt;}
._3{width:69.994389pt;}
._4f{width:70.987733pt;}
._1a{width:72.694958pt;}
._a{width:73.735435pt;}
._29{width:75.412658pt;}
._2d{width:76.924684pt;}
._58{width:79.478634pt;}
._2b{width:82.154574pt;}
._4b{width:83.209674pt;}
._60{width:84.224545pt;}
._39{width:85.803610pt;}
._5a{width:88.028358pt;}
._40{width:90.495189pt;}
._5f{width:91.990256pt;}
._3e{width:93.015964pt;}
._46{width:95.168180pt;}
._3f{width:97.876363pt;}
._25{width:103.801767pt;}
._4d{width:108.907033pt;}
._10{width:109.805836pt;}
._3c{width:110.961537pt;}
._52{width:113.206363pt;}
._37{width:116.488713pt;}
._57{width:117.458430pt;}
._35{width:119.519984pt;}
._51{width:120.571809pt;}
._4e{width:131.429785pt;}
._28{width:132.368312pt;}
._5b{width:133.797089pt;}
._4c{width:138.651718pt;}
._59{width:146.341078pt;}
._26{width:150.634359pt;}
._3a{width:154.510527pt;}
._b{width:163.980693pt;}
._54{width:180.938937pt;}
._45{width:199.024378pt;}
._21{width:206.957221pt;}
._56{width:236.509203pt;}
._53{width:244.273598pt;}
._1c{width:255.190647pt;}
._3d{width:275.724451pt;}
._38{width:289.067907pt;}
._41{width:427.729832pt;}
._43{width:453.970155pt;}
._1{width:478.644342pt;}
._5e{width:518.316443pt;}
._5d{width:580.626820pt;}
.fs7{font-size:16.600451pt;}
.fs6{font-size:24.874844pt;}
.fs8{font-size:26.444913pt;}
.fs2{font-size:32.012061pt;}
.fs9{font-size:37.349980pt;}
.fs4{font-size:48.018092pt;}
.fs1{font-size:53.340097pt;}
.fs5{font-size:58.662102pt;}
.fs3{font-size:64.024123pt;}
.fs0{font-size:74.668133pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y10f{bottom:3.359697pt;}
.y109{bottom:4.377788pt;}
.y10b{bottom:4.503726pt;}
.y10d{bottom:4.507398pt;}
.y115{bottom:5.251695pt;}
.y117{bottom:7.067738pt;}
.y114{bottom:14.066666pt;}
.y110{bottom:18.360018pt;}
.y10c{bottom:19.320018pt;}
.y113{bottom:22.881637pt;}
.y112{bottom:31.696608pt;}
.y10a{bottom:35.640017pt;}
.y10e{bottom:37.560017pt;}
.y111{bottom:40.511579pt;}
.y83{bottom:49.388563pt;}
.y108{bottom:51.000016pt;}
.yf0{bottom:65.316690pt;}
.yc6{bottom:68.226399pt;}
.y82{bottom:69.396101pt;}
.y43{bottom:71.470991pt;}
.yb7{bottom:75.051701pt;}
.y21{bottom:84.992594pt;}
.yef{bottom:85.324229pt;}
.yc5{bottom:88.233937pt;}
.y81{bottom:89.403640pt;}
.y42{bottom:91.478529pt;}
.yb6{bottom:95.059240pt;}
.y20{bottom:105.000132pt;}
.yee{bottom:105.331767pt;}
.yc4{bottom:108.241476pt;}
.y80{bottom:109.411178pt;}
.y41{bottom:111.486068pt;}
.y116{bottom:113.080014pt;}
.yb5{bottom:115.066778pt;}
.y6f{bottom:118.975117pt;}
.y1f{bottom:125.007670pt;}
.yed{bottom:125.339305pt;}
.yc3{bottom:128.249014pt;}
.y7f{bottom:129.418717pt;}
.y40{bottom:131.493606pt;}
.yb4{bottom:135.074316pt;}
.y6e{bottom:138.982655pt;}
.y1e{bottom:145.015209pt;}
.yec{bottom:145.346844pt;}
.yc2{bottom:148.256553pt;}
.y7e{bottom:149.426255pt;}
.y3f{bottom:151.501144pt;}
.yb3{bottom:155.081855pt;}
.y6d{bottom:158.990194pt;}
.y11c{bottom:161.578081pt;}
.y1d{bottom:165.022747pt;}
.yeb{bottom:165.354382pt;}
.yc1{bottom:168.264091pt;}
.y7d{bottom:169.433793pt;}
.y3e{bottom:171.508683pt;}
.yb2{bottom:175.089393pt;}
.y11b{bottom:177.584112pt;}
.y6c{bottom:178.997732pt;}
.y1c{bottom:185.030285pt;}
.yea{bottom:185.361921pt;}
.yc0{bottom:188.271629pt;}
.y7c{bottom:189.441332pt;}
.y3d{bottom:191.516221pt;}
.y11a{bottom:193.590142pt;}
.yb1{bottom:195.096931pt;}
.y6b{bottom:199.005270pt;}
.y1b{bottom:205.037824pt;}
.ye9{bottom:205.369459pt;}
.ybf{bottom:208.279168pt;}
.y7b{bottom:209.448870pt;}
.y3c{bottom:211.523760pt;}
.yb0{bottom:215.104470pt;}
.y118{bottom:216.141003pt;}
.y6a{bottom:219.012809pt;}
.y1a{bottom:225.045362pt;}
.ye8{bottom:225.376997pt;}
.ybe{bottom:228.286706pt;}
.y7a{bottom:229.456408pt;}
.y3b{bottom:231.531298pt;}
.yaf{bottom:235.112008pt;}
.y69{bottom:239.020347pt;}
.y19{bottom:245.052901pt;}
.ye7{bottom:245.384536pt;}
.ybd{bottom:248.294244pt;}
.y79{bottom:249.463947pt;}
.y3a{bottom:251.538836pt;}
.yae{bottom:255.119546pt;}
.y68{bottom:259.027886pt;}
.y18{bottom:265.060439pt;}
.ye6{bottom:265.392074pt;}
.ybc{bottom:268.301783pt;}
.y78{bottom:269.471485pt;}
.y39{bottom:271.546375pt;}
.yad{bottom:275.127085pt;}
.y67{bottom:279.035424pt;}
.y11d{bottom:279.550267pt;}
.y17{bottom:285.067977pt;}
.ye5{bottom:285.399612pt;}
.ybb{bottom:288.309321pt;}
.y77{bottom:289.479023pt;}
.y38{bottom:291.553913pt;}
.yac{bottom:295.134623pt;}
.y66{bottom:299.042962pt;}
.y16{bottom:305.075516pt;}
.ye4{bottom:305.407151pt;}
.y119{bottom:305.447880pt;}
.yba{bottom:308.316859pt;}
.y76{bottom:309.486562pt;}
.y37{bottom:311.561451pt;}
.yab{bottom:315.142162pt;}
.y65{bottom:319.050501pt;}
.y15{bottom:325.083054pt;}
.ye3{bottom:325.414689pt;}
.yb9{bottom:328.324398pt;}
.y75{bottom:329.494100pt;}
.y36{bottom:331.568990pt;}
.yaa{bottom:335.149700pt;}
.y64{bottom:339.058039pt;}
.ye2{bottom:345.422228pt;}
.y74{bottom:349.501639pt;}
.y35{bottom:351.576528pt;}
.y63{bottom:359.065577pt;}
.ye1{bottom:365.429766pt;}
.ya{bottom:365.935246pt;}
.y73{bottom:369.509177pt;}
.y34{bottom:371.584066pt;}
.yb8{bottom:374.274931pt;}
.ya9{bottom:375.164777pt;}
.y62{bottom:379.073116pt;}
.ye0{bottom:385.437304pt;}
.y9{bottom:387.943538pt;}
.y72{bottom:389.516715pt;}
.y33{bottom:391.591605pt;}
.ya8{bottom:395.172315pt;}
.y61{bottom:399.080654pt;}
.ydf{bottom:405.444843pt;}
.y32{bottom:411.599143pt;}
.ya7{bottom:415.179853pt;}
.y60{bottom:419.088192pt;}
.yd4{bottom:420.225626pt;}
.yd{bottom:429.142038pt;}
.y31{bottom:431.606682pt;}
.y71{bottom:432.471947pt;}
.ya6{bottom:435.187392pt;}
.y5f{bottom:439.095731pt;}
.yd3{bottom:440.233164pt;}
.yc{bottom:445.148068pt;}
.y30{bottom:451.614220pt;}
.y70{bottom:454.480240pt;}
.ya5{bottom:455.194930pt;}
.ydd{bottom:458.985295pt;}
.y5e{bottom:459.103269pt;}
.yd2{bottom:460.240703pt;}
.yb{bottom:461.154099pt;}
.y2f{bottom:471.621758pt;}
.ya4{bottom:475.202469pt;}
.y5d{bottom:479.110808pt;}
.yd1{bottom:480.248241pt;}
.y2e{bottom:491.629297pt;}
.y88{bottom:492.303315pt;}
.ya3{bottom:495.210007pt;}
.y5c{bottom:499.118346pt;}
.yd0{bottom:500.255779pt;}
.y87{bottom:508.309346pt;}
.y2d{bottom:511.636835pt;}
.y107{bottom:512.525741pt;}
.ya2{bottom:515.217545pt;}
.y5b{bottom:519.125884pt;}
.ycf{bottom:520.263318pt;}
.y86{bottom:524.315377pt;}
.y2c{bottom:531.644373pt;}
.y106{bottom:532.533279pt;}
.ya1{bottom:535.225084pt;}
.y5a{bottom:539.133423pt;}
.yce{bottom:540.270856pt;}
.y2b{bottom:551.651912pt;}
.y105{bottom:552.540817pt;}
.ya0{bottom:555.232622pt;}
.y59{bottom:559.140961pt;}
.ycd{bottom:560.278395pt;}
.y2a{bottom:571.659450pt;}
.y104{bottom:572.548356pt;}
.y9f{bottom:575.240160pt;}
.y58{bottom:579.148499pt;}
.ycc{bottom:580.285933pt;}
.y29{bottom:591.666988pt;}
.y103{bottom:592.555894pt;}
.y9e{bottom:595.247699pt;}
.y57{bottom:599.156038pt;}
.ycb{bottom:600.293471pt;}
.y28{bottom:611.674527pt;}
.y102{bottom:612.563432pt;}
.y9d{bottom:615.255237pt;}
.y56{bottom:619.163576pt;}
.yca{bottom:620.301010pt;}
.y27{bottom:631.682065pt;}
.y101{bottom:632.570971pt;}
.y9c{bottom:635.262775pt;}
.y55{bottom:639.171114pt;}
.yc9{bottom:640.308548pt;}
.y26{bottom:651.689604pt;}
.y100{bottom:652.578509pt;}
.y9b{bottom:655.270314pt;}
.y54{bottom:659.178653pt;}
.yc8{bottom:660.316086pt;}
.y25{bottom:671.697142pt;}
.yff{bottom:672.586047pt;}
.y9a{bottom:675.277852pt;}
.y53{bottom:679.186191pt;}
.yc7{bottom:680.323625pt;}
.y24{bottom:691.704680pt;}
.yfe{bottom:692.593586pt;}
.y99{bottom:695.285391pt;}
.y52{bottom:699.193730pt;}
.ydc{bottom:701.730373pt;}
.y23{bottom:711.712219pt;}
.yfd{bottom:712.601124pt;}
.y98{bottom:715.292929pt;}
.ydb{bottom:717.736403pt;}
.y51{bottom:719.201268pt;}
.yd8{bottom:724.714746pt;}
.y22{bottom:731.719757pt;}
.yda{bottom:733.742434pt;}
.y97{bottom:735.300467pt;}
.y50{bottom:739.208806pt;}
.yd7{bottom:740.720777pt;}
.yd9{bottom:749.748465pt;}
.y96{bottom:755.308006pt;}
.yde{bottom:755.550627pt;}
.yd6{bottom:756.726808pt;}
.y4f{bottom:759.216345pt;}
.y12b{bottom:760.246815pt;}
.y14{bottom:768.194188pt;}
.yd5{bottom:772.732838pt;}
.y95{bottom:775.315544pt;}
.y4e{bottom:779.223883pt;}
.y12a{bottom:780.254353pt;}
.y13{bottom:788.201726pt;}
.y94{bottom:795.323082pt;}
.yfc{bottom:798.010954pt;}
.y4d{bottom:799.231421pt;}
.y129{bottom:800.261892pt;}
.y12{bottom:808.209264pt;}
.y93{bottom:815.330621pt;}
.yfb{bottom:818.018493pt;}
.y4c{bottom:819.238960pt;}
.y128{bottom:820.269430pt;}
.y11{bottom:828.216803pt;}
.y92{bottom:835.338159pt;}
.yfa{bottom:838.026031pt;}
.y4b{bottom:839.246498pt;}
.y127{bottom:840.276969pt;}
.y10{bottom:848.224341pt;}
.y91{bottom:855.345697pt;}
.yf9{bottom:858.033569pt;}
.y85{bottom:859.254037pt;}
.y126{bottom:860.284507pt;}
.yf{bottom:868.231879pt;}
.y90{bottom:875.353236pt;}
.yf8{bottom:878.041108pt;}
.y4a{bottom:879.261575pt;}
.y125{bottom:880.292045pt;}
.ye{bottom:888.239418pt;}
.y8f{bottom:895.360774pt;}
.yf7{bottom:898.048646pt;}
.y84{bottom:899.269113pt;}
.y124{bottom:900.299584pt;}
.y8e{bottom:915.368313pt;}
.yf6{bottom:918.056184pt;}
.y49{bottom:919.276652pt;}
.y123{bottom:920.307122pt;}
.y6{bottom:923.846866pt;}
.y8{bottom:929.849127pt;}
.y8d{bottom:935.375851pt;}
.yf5{bottom:938.063723pt;}
.y48{bottom:939.284190pt;}
.y122{bottom:940.314660pt;}
.y5{bottom:941.853650pt;}
.y7{bottom:947.855912pt;}
.y8c{bottom:955.383389pt;}
.yf4{bottom:958.071261pt;}
.y47{bottom:959.291728pt;}
.y3{bottom:959.860435pt;}
.y121{bottom:960.322199pt;}
.y4{bottom:965.862696pt;}
.y8b{bottom:975.390928pt;}
.yf3{bottom:978.078800pt;}
.y46{bottom:979.299267pt;}
.y120{bottom:980.329737pt;}
.y8a{bottom:995.398466pt;}
.yf2{bottom:998.086338pt;}
.y45{bottom:999.306805pt;}
.y11f{bottom:1000.337275pt;}
.y89{bottom:1015.406004pt;}
.yf1{bottom:1018.093876pt;}
.y44{bottom:1019.314343pt;}
.y11e{bottom:1020.344814pt;}
.y2{bottom:1023.024643pt;}
.he{height:8.000000pt;}
.hc{height:11.520000pt;}
.hf{height:13.363363pt;}
.h12{height:17.279999pt;}
.hd{height:20.223249pt;}
.h11{height:21.499714pt;}
.h5{height:28.010554pt;}
.h13{height:30.365533pt;}
.hb{height:41.871776pt;}
.h7{height:42.015831pt;}
.h14{height:43.365499pt;}
.h4{height:46.672585pt;}
.h10{height:47.679998pt;}
.h9{height:51.153353pt;}
.h8{height:51.329339pt;}
.ha{height:53.011974pt;}
.h6{height:56.917445pt;}
.h3{height:66.379970pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w5{width:27.519999pt;}
.w7{width:40.959998pt;}
.w4{width:55.359998pt;}
.w3{width:58.559998pt;}
.w2{width:58.879998pt;}
.w6{width:178.239993pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:38.714896pt;}
.xf{left:39.776073pt;}
.xd{left:40.838944pt;}
.x4{left:43.107176pt;}
.xe{left:50.368758pt;}
.x7{left:63.644470pt;}
.x1{left:102.127720pt;}
.xb{left:106.239996pt;}
.xc{left:112.959995pt;}
.x3{left:140.737711pt;}
.x5{left:417.098303pt;}
.xa{left:440.959982pt;}
.x6{left:442.029571pt;}
.x9{left:549.759977pt;}
.x8{left:551.359977pt;}
}




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