
    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_4ac2e450e6763ab882e6010f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7d9e7d4890df22c52d4fae96.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.873535;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_2f2056417bcdc92172f363e4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.822754;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_15d3d06b6bd7c8e22eed178b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.916016;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_09174d597b9aaf1e9d338f40.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_71928160302f93ed53623b92.woff2')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_c00f0fc3a8566f87fb3001a1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.861328;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_55ef56de701ad603b0ef50ac.woff2')format("woff");}.ff8{font-family:ff8;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;}
.ff9{font-family:sans-serif;visibility:hidden;}
.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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:2.809778px;}
.ls0{letter-spacing:36.237190px;}
.ls4{letter-spacing:38.072799px;}
.ls3{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;}
}
.ws0{word-spacing:-49.500001px;}
.ws1{word-spacing:-14.920899px;}
.ws2{word-spacing:0.000000px;}
._5{margin-left:-6.018221px;}
._3{margin-left:-4.991480px;}
._2{margin-left:-2.966661px;}
._0{margin-left:-1.396892px;}
._4{width:1.472371px;}
._6{width:3.418270px;}
._7{width:5.340092px;}
._8{width:8.837144px;}
._a{width:12.758877px;}
._b{width:13.772926px;}
._9{width:17.210897px;}
._1{width:49.798827px;}
.fc2{color:transparent;}
.fc1{color:rgb(153,153,153);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:29.999999px;}
.fs2{font-size:59.999999px;}
.fs0{font-size:66.000002px;}
.fs1{font-size:83.999997px;}
.y0{bottom:0.000000px;}
.y134{bottom:11.624988px;}
.y8c{bottom:11.624991px;}
.y9f{bottom:11.624992px;}
.y18{bottom:11.624994px;}
.yaf{bottom:11.624997px;}
.y1d{bottom:11.624999px;}
.y10{bottom:11.625000px;}
.y118{bottom:11.625001px;}
.y25{bottom:11.625003px;}
.y4d{bottom:11.625004px;}
.yef{bottom:11.999635px;}
.y102{bottom:11.999995px;}
.y5{bottom:11.999999px;}
.y76{bottom:12.000001px;}
.yd7{bottom:12.000002px;}
.y66{bottom:12.000005px;}
.y6a{bottom:12.000007px;}
.yd9{bottom:12.000367px;}
.y11a{bottom:12.000733px;}
.y3{bottom:14.181153px;}
.y47{bottom:14.371577px;}
.y3a{bottom:14.371581px;}
.ye0{bottom:14.371583px;}
.y33{bottom:14.371586px;}
.yfb{bottom:14.371589px;}
.ycf{bottom:14.371592px;}
.y70{bottom:14.371773px;}
.y126{bottom:15.020504px;}
.y60{bottom:15.021226px;}
.y122{bottom:15.021229px;}
.y12a{bottom:15.021236px;}
.ya9{bottom:15.021239px;}
.y13d{bottom:15.021241px;}
.y138{bottom:15.021244px;}
.y8b{bottom:29.935536px;}
.y17{bottom:29.935539px;}
.yf{bottom:29.935545px;}
.y94{bottom:29.935550px;}
.y24{bottom:30.310543px;}
.y4c{bottom:30.310544px;}
.y9e{bottom:30.310547px;}
.yae{bottom:30.310552px;}
.y1c{bottom:30.310553px;}
.y117{bottom:30.310556px;}
.yee{bottom:32.141230px;}
.yd6{bottom:32.141597px;}
.y65{bottom:32.141600px;}
.y69{bottom:32.141602px;}
.ye8{bottom:32.141611px;}
.y101{bottom:32.971435px;}
.y133{bottom:33.331783px;}
.y11d{bottom:33.331784px;}
.yc8{bottom:35.428701px;}
.y32{bottom:35.428706px;}
.ydf{bottom:35.428710px;}
.y46{bottom:35.428711px;}
.y39{bottom:35.428716px;}
.y56{bottom:35.428721px;}
.yfa{bottom:35.428723px;}
.y6f{bottom:35.428908px;}
.y125{bottom:35.991944px;}
.y129{bottom:35.992676px;}
.y5f{bottom:38.184076px;}
.y121{bottom:38.184079px;}
.ya8{bottom:38.184082px;}
.y137{bottom:38.184094px;}
.y8a{bottom:48.246081px;}
.ye{bottom:48.246090px;}
.y93{bottom:48.246095px;}
.y16{bottom:48.246099px;}
.y4b{bottom:50.452139px;}
.y9d{bottom:50.452142px;}
.yad{bottom:50.452147px;}
.y1b{bottom:50.452148px;}
.y116{bottom:50.452151px;}
.y23{bottom:50.452153px;}
.yd2{bottom:51.281983px;}
.yed{bottom:52.282840px;}
.ya5{bottom:52.283197px;}
.ye7{bottom:52.283206px;}
.y64{bottom:52.283210px;}
.yd5{bottom:53.113037px;}
.y38{bottom:54.114256px;}
.yde{bottom:54.114257px;}
.yce{bottom:54.114266px;}
.y6e{bottom:54.114448px;}
.y132{bottom:54.303223px;}
.y31{bottom:56.485840px;}
.ybc{bottom:56.485851px;}
.y11c{bottom:57.106934px;}
.y45{bottom:57.135491px;}
.yc7{bottom:57.135496px;}
.y55{bottom:57.135500px;}
.yf9{bottom:57.135503px;}
.y5e{bottom:58.325671px;}
.y12d{bottom:59.155519px;}
.y120{bottom:61.959229px;}
.yd{bottom:66.556635px;}
.y89{bottom:66.556641px;}
.y92{bottom:66.931634px;}
.y15{bottom:66.931639px;}
.y115{bottom:70.593746px;}
.y22{bottom:70.593748px;}
.y4a{bottom:70.593749px;}
.y9c{bottom:71.423582px;}
.yec{bottom:72.424435px;}
.y63{bottom:72.424805px;}
.ya4{bottom:72.424807px;}
.ye6{bottom:72.424816px;}
.ydd{bottom:74.255858px;}
.ycd{bottom:74.255861px;}
.y37{bottom:74.255866px;}
.y6d{bottom:74.256043px;}
.y30{bottom:74.294674px;}
.ybb{bottom:74.294684px;}
.y5d{bottom:78.467281px;}
.yc6{bottom:79.648671px;}
.y44{bottom:79.648683px;}
.yf8{bottom:80.298338px;}
.y54{bottom:80.298350px;}
.y88{bottom:85.242181px;}
.yc{bottom:85.242190px;}
.yba{bottom:85.699951px;}
.y2f{bottom:85.699955px;}
.y14{bottom:87.073234px;}
.y111{bottom:87.073241px;}
.y91{bottom:87.073244px;}
.y9b{bottom:88.910153px;}
.yac{bottom:90.735352px;}
.y21{bottom:90.735358px;}
.y114{bottom:91.565186px;}
.ya3{bottom:92.566402px;}
.yeb{bottom:93.395875px;}
.ye5{bottom:93.396241px;}
.y36{bottom:94.397461px;}
.ycc{bottom:94.397471px;}
.ydc{bottom:95.227295px;}
.yc5{bottom:97.457519px;}
.y43{bottom:97.457521px;}
.y5c{bottom:98.608876px;}
.y53{bottom:100.439945px;}
.yf7{bottom:103.461188px;}
.y87{bottom:105.383776px;}
.yb{bottom:105.383785px;}
.y2e{bottom:105.841550px;}
.yb9{bottom:105.841561px;}
.y90{bottom:107.214839px;}
.y110{bottom:107.214842px;}
.y13{bottom:107.214844px;}
.y9a{bottom:107.220698px;}
.yc4{bottom:108.862786px;}
.y42{bottom:108.862793px;}
.y20{bottom:110.876953px;}
.ya2{bottom:113.537842px;}
.ycb{bottom:115.368896px;}
.y5b{bottom:118.750486px;}
.y52{bottom:120.581555px;}
.y13c{bottom:122.848387px;}
.y10b{bottom:122.854987px;}
.yf6{bottom:123.602783px;}
.y86{bottom:125.525386px;}
.ya{bottom:125.525390px;}
.yd4{bottom:125.654301px;}
.y13e{bottom:125.869629px;}
.y99{bottom:125.906237px;}
.yb8{bottom:125.983156px;}
.y2d{bottom:125.983160px;}
.y10c{bottom:126.502449px;}
.y8f{bottom:128.186279px;}
.y41{bottom:129.004394px;}
.yc3{bottom:129.004396px;}
.ya1{bottom:131.530516px;}
.yab{bottom:131.848388px;}
.y74{bottom:137.531243px;}
.y5a{bottom:138.892081px;}
.y51{bottom:140.723150px;}
.yf5{bottom:143.744393px;}
.y35{bottom:145.113277px;}
.y98{bottom:146.047847px;}
.y2c{bottom:146.124755px;}
.yb7{bottom:146.124766px;}
.y85{bottom:146.496826px;}
.yc2{bottom:149.145991px;}
.y40{bottom:149.145997px;}
.y59{bottom:159.033691px;}
.y73{bottom:160.694093px;}
.y50{bottom:160.864745px;}
.y13a{bottom:162.886235px;}
.yf4{bottom:163.885988px;}
.yd8{bottom:164.486942px;}
.y97{bottom:167.019287px;}
.yb6{bottom:167.096191px;}
.y3f{bottom:169.287598px;}
.yc1{bottom:169.287601px;}
.y10a{bottom:170.665283px;}
.y72{bottom:183.856928px;}
.yf3{bottom:184.027598px;}
.yc0{bottom:189.429196px;}
.y3e{bottom:189.429200px;}
.y109{bottom:190.807613px;}
.y6c{bottom:200.998345px;}
.yd1{bottom:201.503906px;}
.yf2{bottom:204.999023px;}
.y13b{bottom:207.761724px;}
.y3d{bottom:209.570801px;}
.ybf{bottom:210.400636px;}
.y108{bottom:213.166259px;}
.y3b{bottom:227.510739px;}
.ya6{bottom:233.068359px;}
.y107{bottom:235.789313px;}
.yd3{bottom:238.505859px;}
.y136{bottom:244.778314px;}
.y106{bottom:252.930909px;}
.y71{bottom:263.254389px;}
.y2b{bottom:264.527343px;}
.y96{bottom:270.084966px;}
.yca{bottom:275.522457px;}
.y139{bottom:289.653804px;}
.y105{bottom:297.093743px;}
.y68{bottom:300.270992px;}
.y104{bottom:320.256593px;}
.y6b{bottom:320.412594px;}
.y131{bottom:326.670415px;}
.y100{bottom:337.398194px;}
.y62{bottom:357.429198px;}
.y103{bottom:358.369261px;}
.y135{bottom:366.693609px;}
.yd0{bottom:378.891354px;}
.y34{bottom:398.652099px;}
.yff{bottom:402.532463px;}
.y12f{bottom:403.710207px;}
.ybe{bottom:415.907962px;}
.y67{bottom:417.854004px;}
.ya0{bottom:425.104254px;}
.y130{bottom:425.422854px;}
.yfe{bottom:425.695313px;}
.y2a{bottom:442.814948px;}
.yfd{bottom:448.858148px;}
.y58{bottom:454.870612px;}
.y8e{bottom:462.120849px;}
.y12c{bottom:462.439459px;}
.y29{bottom:465.977776px;}
.yf1{bottom:465.999750px;}
.y28{bottom:489.140618px;}
.y12e{bottom:507.314949px;}
.y27{bottom:512.303468px;}
.y1f{bottom:529.445065px;}
.y128{bottom:544.331547px;}
.y12b{bottom:566.043461px;}
.y95{bottom:578.307129px;}
.y61{bottom:601.904304px;}
.y124{bottom:603.061524px;}
.yc9{bottom:612.028569px;}
.y84{bottom:615.323737px;}
.y127{bottom:624.773439px;}
.y26{bottom:628.322019px;}
.y4f{bottom:638.920893px;}
.yb5{bottom:649.045163px;}
.yfc{bottom:656.718376px;}
.y11f{bottom:661.790045px;}
.y1a{bottom:665.338620px;}
.yea{bottom:693.735718px;}
.y1e{bottom:703.790769px;}
.y123{bottom:709.469244px;}
.y12{bottom:740.807374px;}
.y11b{bottom:746.485839px;}
.y8d{bottom:749.820564px;}
.y14e{bottom:755.923094px;}
.yf0{bottom:772.851564px;}
.y14d{bottom:777.742679px;}
.y57{bottom:787.785639px;}
.y11e{bottom:789.312011px;}
.y83{bottom:793.983398px;}
.y14c{bottom:799.562249px;}
.ybd{bottom:804.141354px;}
.ye4{bottom:809.868158px;}
.y82{bottom:814.124993px;}
.y14b{bottom:819.164063px;}
.y49{bottom:824.802249px;}
.y113{bottom:826.329342px;}
.y19{bottom:836.022219px;}
.y81{bottom:837.287843px;}
.y14a{bottom:839.305658px;}
.yb4{bottom:848.304203px;}
.y7f{bottom:854.429437px;}
.y80{bottom:858.076899px;}
.y149{bottom:859.447268px;}
.yb3{bottom:871.467046px;}
.y9{bottom:873.038818px;}
.y148{bottom:879.588863px;}
.y4e{bottom:883.395999px;}
.ye9{bottom:888.984369px;}
.yb2{bottom:894.629888px;}
.y7e{bottom:902.239748px;}
.y147{bottom:902.751713px;}
.y119{bottom:903.613765px;}
.yb1{bottom:917.792723px;}
.y146{bottom:919.893309px;}
.y3c{bottom:920.412597px;}
.y7d{bottom:925.402583px;}
.ye2{bottom:926.000976px;}
.yaa{bottom:934.934326px;}
.y10f{bottom:940.631104px;}
.y7c{bottom:948.565433px;}
.y145{bottom:964.056158px;}
.ye3{bottom:964.833984px;}
.y7b{bottom:971.728268px;}
.y11{bottom:986.564210px;}
.y144{bottom:987.218993px;}
.y7a{bottom:994.891118px;}
.ydb{bottom:1001.850586px;}
.y143{bottom:1010.381836px;}
.y79{bottom:1012.032715px;}
.y141{bottom:1027.523438px;}
.y8{bottom:1030.727051px;}
.y142{bottom:1048.494873px;}
.y7{bottom:1050.868652px;}
.y112{bottom:1054.537354px;}
.yb0{bottom:1054.782715px;}
.y78{bottom:1056.195556px;}
.y6{bottom:1074.031493px;}
.y77{bottom:1079.358398px;}
.ye1{bottom:1082.797853px;}
.y2{bottom:1091.173095px;}
.ya7{bottom:1091.799317px;}
.y140{bottom:1092.657715px;}
.y4{bottom:1094.820557px;}
.y75{bottom:1097.841796px;}
.y10e{bottom:1098.700195px;}
.y13f{bottom:1115.820556px;}
.y48{bottom:1117.983399px;}
.y10d{bottom:1118.841797px;}
.yda{bottom:1119.814454px;}
.y1{bottom:1138.983398px;}
.h11{height:21.533203px;}
.he{height:22.133789px;}
.h25{height:34.060546px;}
.h4{height:35.891601px;}
.h24{height:35.891969px;}
.h2e{height:35.892335px;}
.h35{height:38.912843px;}
.h2{height:39.539062px;}
.h20{height:43.989259px;}
.h8{height:44.267577px;}
.hc{height:45.084962px;}
.h5{height:45.890626px;}
.h1{height:47.373048px;}
.h6{height:48.694337px;}
.h3{height:55.986326px;}
.h16{height:56.033203px;}
.h2b{height:56.863037px;}
.h31{height:57.603516px;}
.h32{height:57.604248px;}
.h1c{height:62.075683px;}
.h29{height:62.700001px;}
.h22{height:72.893554px;}
.ha{height:74.343750px;}
.h23{height:74.724609px;}
.h34{height:75.914794px;}
.h2f{height:78.718506px;}
.h33{height:80.767091px;}
.h30{height:83.570801px;}
.h12{height:94.485351px;}
.h15{height:96.316407px;}
.h17{height:98.147645px;}
.h2d{height:113.176758px;}
.h28{height:115.007447px;}
.h27{height:115.007812px;}
.h26{height:116.838867px;}
.hf{height:118.289062px;}
.h9{height:131.106446px;}
.hb{height:134.768555px;}
.h1b{height:137.429444px;}
.h21{height:139.260498px;}
.h7{height:149.416992px;}
.h2c{height:149.797851px;}
.h19{height:152.077881px;}
.h1d{height:155.739990px;}
.hd{height:170.016357px;}
.h18{height:170.388428px;}
.h14{height:182.925292px;}
.h13{height:184.756347px;}
.h1a{height:190.910889px;}
.h1e{height:190.987793px;}
.h2a{height:226.610595px;}
.h1f{height:232.012208px;}
.h10{height:233.462403px;}
.h0{height:1263.000000px;}
.w12{width:61.875000px;}
.w10{width:66.375000px;}
.wd{width:73.125000px;}
.w14{width:74.250000px;}
.wc{width:75.375000px;}
.wa{width:82.125000px;}
.w4{width:85.500000px;}
.w2{width:87.750000px;}
.w6{width:88.875000px;}
.w8{width:92.250000px;}
.w13{width:598.500000px;}
.w7{width:637.875000px;}
.w5{width:640.125000px;}
.w3{width:641.250000px;}
.we{width:643.500000px;}
.w1{width:644.625000px;}
.w9{width:645.750000px;}
.wb{width:646.875000px;}
.wf{width:648.000000px;}
.w11{width:649.125000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x7{left:1.125000px;}
.xa{left:6.750000px;}
.x1b{left:13.924381px;}
.x1e{left:15.049381px;}
.x29{left:17.711274px;}
.xc{left:20.111881px;}
.x10{left:21.799381px;}
.x5{left:25.805778px;}
.x8{left:28.125000px;}
.x20{left:33.750000px;}
.x1c{left:36.000000px;}
.x1f{left:37.125000px;}
.x27{left:60.750000px;}
.x2{left:68.625000px;}
.x6{left:73.125000px;}
.xe{left:75.375000px;}
.x14{left:77.625000px;}
.x12{left:78.750000px;}
.x16{left:79.875000px;}
.x19{left:82.125000px;}
.x1d{left:85.500000px;}
.x23{left:86.625000px;}
.x9{left:87.750000px;}
.x1{left:108.000000px;}
.x26{left:109.125000px;}
.xd{left:114.750000px;}
.x21{left:145.274105px;}
.x11{left:162.000000px;}
.x22{left:165.858090px;}
.x3{left:223.231928px;}
.x17{left:224.356928px;}
.x28{left:708.750000px;}
.x4{left:714.375000px;}
.xb{left:715.500000px;}
.xf{left:716.625000px;}
.x13{left:717.750000px;}
.x15{left:724.500000px;}
.x18{left:727.875000px;}
.x1a{left:730.125000px;}
.x24{left:735.750000px;}
.x25{left:736.875000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:2.497581pt;}
.ls0{letter-spacing:32.210835pt;}
.ls4{letter-spacing:33.842488pt;}
.ls3{letter-spacing:175.700521pt;}
.ws0{word-spacing:-44.000001pt;}
.ws1{word-spacing:-13.263021pt;}
.ws2{word-spacing:0.000000pt;}
._5{margin-left:-5.349530pt;}
._3{margin-left:-4.436871pt;}
._2{margin-left:-2.637032pt;}
._0{margin-left:-1.241682pt;}
._4{width:1.308774pt;}
._6{width:3.038462pt;}
._7{width:4.746748pt;}
._8{width:7.855239pt;}
._a{width:11.341224pt;}
._b{width:12.242601pt;}
._9{width:15.298575pt;}
._1{width:44.265624pt;}
.fs3{font-size:26.666666pt;}
.fs2{font-size:53.333332pt;}
.fs0{font-size:58.666668pt;}
.fs1{font-size:74.666664pt;}
.y0{bottom:0.000000pt;}
.y134{bottom:10.333323pt;}
.y8c{bottom:10.333325pt;}
.y9f{bottom:10.333327pt;}
.y18{bottom:10.333328pt;}
.yaf{bottom:10.333331pt;}
.y1d{bottom:10.333332pt;}
.y10{bottom:10.333333pt;}
.y118{bottom:10.333335pt;}
.y25{bottom:10.333336pt;}
.y4d{bottom:10.333337pt;}
.yef{bottom:10.666342pt;}
.y102{bottom:10.666662pt;}
.y5{bottom:10.666666pt;}
.y76{bottom:10.666667pt;}
.yd7{bottom:10.666668pt;}
.y66{bottom:10.666671pt;}
.y6a{bottom:10.666673pt;}
.yd9{bottom:10.666993pt;}
.y11a{bottom:10.667318pt;}
.y3{bottom:12.605469pt;}
.y47{bottom:12.774735pt;}
.y3a{bottom:12.774739pt;}
.ye0{bottom:12.774740pt;}
.y33{bottom:12.774743pt;}
.yfb{bottom:12.774745pt;}
.ycf{bottom:12.774748pt;}
.y70{bottom:12.774909pt;}
.y126{bottom:13.351559pt;}
.y60{bottom:13.352201pt;}
.y122{bottom:13.352203pt;}
.y12a{bottom:13.352210pt;}
.ya9{bottom:13.352213pt;}
.y13d{bottom:13.352214pt;}
.y138{bottom:13.352217pt;}
.y8b{bottom:26.609365pt;}
.y17{bottom:26.609368pt;}
.yf{bottom:26.609373pt;}
.y94{bottom:26.609377pt;}
.y24{bottom:26.942704pt;}
.y4c{bottom:26.942706pt;}
.y9e{bottom:26.942709pt;}
.yae{bottom:26.942712pt;}
.y1c{bottom:26.942714pt;}
.y117{bottom:26.942717pt;}
.yee{bottom:28.569982pt;}
.yd6{bottom:28.570308pt;}
.y65{bottom:28.570311pt;}
.y69{bottom:28.570312pt;}
.ye8{bottom:28.570320pt;}
.y101{bottom:29.307942pt;}
.y133{bottom:29.628251pt;}
.y11d{bottom:29.628252pt;}
.yc8{bottom:31.492179pt;}
.y32{bottom:31.492183pt;}
.ydf{bottom:31.492187pt;}
.y46{bottom:31.492188pt;}
.y39{bottom:31.492192pt;}
.y56{bottom:31.492196pt;}
.yfa{bottom:31.492199pt;}
.y6f{bottom:31.492363pt;}
.y125{bottom:31.992839pt;}
.y129{bottom:31.993490pt;}
.y5f{bottom:33.941400pt;}
.y121{bottom:33.941403pt;}
.ya8{bottom:33.941406pt;}
.y137{bottom:33.941416pt;}
.y8a{bottom:42.885405pt;}
.ye{bottom:42.885413pt;}
.y93{bottom:42.885417pt;}
.y16{bottom:42.885421pt;}
.y4b{bottom:44.846346pt;}
.y9d{bottom:44.846348pt;}
.yad{bottom:44.846352pt;}
.y1b{bottom:44.846354pt;}
.y116{bottom:44.846356pt;}
.y23{bottom:44.846358pt;}
.yd2{bottom:45.583985pt;}
.yed{bottom:46.473635pt;}
.ya5{bottom:46.473952pt;}
.ye7{bottom:46.473960pt;}
.y64{bottom:46.473965pt;}
.yd5{bottom:47.211589pt;}
.y38{bottom:48.101561pt;}
.yde{bottom:48.101562pt;}
.yce{bottom:48.101570pt;}
.y6e{bottom:48.101731pt;}
.y132{bottom:48.269531pt;}
.y31{bottom:50.209636pt;}
.ybc{bottom:50.209645pt;}
.y11c{bottom:50.761719pt;}
.y45{bottom:50.787103pt;}
.yc7{bottom:50.787107pt;}
.y55{bottom:50.787111pt;}
.yf9{bottom:50.787114pt;}
.y5e{bottom:51.845040pt;}
.y12d{bottom:52.582683pt;}
.y120{bottom:55.074870pt;}
.yd{bottom:59.161453pt;}
.y89{bottom:59.161459pt;}
.y92{bottom:59.494786pt;}
.y15{bottom:59.494790pt;}
.y115{bottom:62.749996pt;}
.y22{bottom:62.749998pt;}
.y4a{bottom:62.749999pt;}
.y9c{bottom:63.487629pt;}
.yec{bottom:64.377275pt;}
.y63{bottom:64.377604pt;}
.ya4{bottom:64.377606pt;}
.ye6{bottom:64.377614pt;}
.ydd{bottom:66.005207pt;}
.ycd{bottom:66.005210pt;}
.y37{bottom:66.005214pt;}
.y6d{bottom:66.005371pt;}
.y30{bottom:66.039710pt;}
.ybb{bottom:66.039719pt;}
.y5d{bottom:69.748694pt;}
.yc6{bottom:70.798819pt;}
.y44{bottom:70.798829pt;}
.yf8{bottom:71.376300pt;}
.y54{bottom:71.376311pt;}
.y88{bottom:75.770827pt;}
.yc{bottom:75.770835pt;}
.yba{bottom:76.177734pt;}
.y2f{bottom:76.177738pt;}
.y14{bottom:77.398430pt;}
.y111{bottom:77.398437pt;}
.y91{bottom:77.398439pt;}
.y9b{bottom:79.031247pt;}
.yac{bottom:80.653646pt;}
.y21{bottom:80.653651pt;}
.y114{bottom:81.391277pt;}
.ya3{bottom:82.281246pt;}
.yeb{bottom:83.018555pt;}
.ye5{bottom:83.018881pt;}
.y36{bottom:83.908854pt;}
.ycc{bottom:83.908863pt;}
.ydc{bottom:84.646485pt;}
.yc5{bottom:86.628906pt;}
.y43{bottom:86.628907pt;}
.y5c{bottom:87.652334pt;}
.y53{bottom:89.279951pt;}
.yf7{bottom:91.965500pt;}
.y87{bottom:93.674467pt;}
.yb{bottom:93.674475pt;}
.y2e{bottom:94.081378pt;}
.yb9{bottom:94.081387pt;}
.y90{bottom:95.302079pt;}
.y110{bottom:95.302082pt;}
.y13{bottom:95.302083pt;}
.y9a{bottom:95.307287pt;}
.yc4{bottom:96.766921pt;}
.y42{bottom:96.766927pt;}
.y20{bottom:98.557291pt;}
.ya2{bottom:100.922526pt;}
.ycb{bottom:102.550130pt;}
.y5b{bottom:105.555987pt;}
.y52{bottom:107.183605pt;}
.y13c{bottom:109.198567pt;}
.y10b{bottom:109.204433pt;}
.yf6{bottom:109.869140pt;}
.y86{bottom:111.578120pt;}
.ya{bottom:111.578124pt;}
.yd4{bottom:111.692712pt;}
.y13e{bottom:111.884115pt;}
.y99{bottom:111.916655pt;}
.yb8{bottom:111.985027pt;}
.y2d{bottom:111.985031pt;}
.y10c{bottom:112.446621pt;}
.y8f{bottom:113.943359pt;}
.y41{bottom:114.670572pt;}
.yc3{bottom:114.670574pt;}
.ya1{bottom:116.916015pt;}
.yab{bottom:117.198567pt;}
.y74{bottom:122.249994pt;}
.y5a{bottom:123.459627pt;}
.y51{bottom:125.087244pt;}
.yf5{bottom:127.772794pt;}
.y35{bottom:128.989580pt;}
.y98{bottom:129.820308pt;}
.y2c{bottom:129.888671pt;}
.yb7{bottom:129.888680pt;}
.y85{bottom:130.219401pt;}
.yc2{bottom:132.574214pt;}
.y40{bottom:132.574219pt;}
.y59{bottom:141.363280pt;}
.y73{bottom:142.839194pt;}
.y50{bottom:142.990884pt;}
.y13a{bottom:144.787764pt;}
.yf4{bottom:145.676434pt;}
.yd8{bottom:146.210615pt;}
.y97{bottom:148.461588pt;}
.yb6{bottom:148.529947pt;}
.y3f{bottom:150.477864pt;}
.yc1{bottom:150.477867pt;}
.y10a{bottom:151.702474pt;}
.y72{bottom:163.428380pt;}
.yf3{bottom:163.580087pt;}
.yc0{bottom:168.381507pt;}
.y3e{bottom:168.381511pt;}
.y109{bottom:169.606767pt;}
.y6c{bottom:178.665196pt;}
.yd1{bottom:179.114583pt;}
.yf2{bottom:182.221354pt;}
.y13b{bottom:184.677088pt;}
.y3d{bottom:186.285157pt;}
.ybf{bottom:187.022787pt;}
.y108{bottom:189.481119pt;}
.y3b{bottom:202.231768pt;}
.ya6{bottom:207.171875pt;}
.y107{bottom:209.590500pt;}
.yd3{bottom:212.005208pt;}
.y136{bottom:217.580724pt;}
.y106{bottom:224.827475pt;}
.y71{bottom:234.003901pt;}
.y2b{bottom:235.135416pt;}
.y96{bottom:240.075525pt;}
.yca{bottom:244.908851pt;}
.y139{bottom:257.470048pt;}
.y105{bottom:264.083327pt;}
.y68{bottom:266.907548pt;}
.y104{bottom:284.672527pt;}
.y6b{bottom:284.811195pt;}
.y131{bottom:290.373703pt;}
.y100{bottom:299.909505pt;}
.y62{bottom:317.714843pt;}
.y103{bottom:318.550455pt;}
.y135{bottom:325.949875pt;}
.yd0{bottom:336.792315pt;}
.y34{bottom:354.357421pt;}
.yff{bottom:357.806634pt;}
.y12f{bottom:358.853517pt;}
.ybe{bottom:369.695967pt;}
.y67{bottom:371.425781pt;}
.ya0{bottom:377.870448pt;}
.y130{bottom:378.153648pt;}
.yfe{bottom:378.395834pt;}
.y2a{bottom:393.613287pt;}
.yfd{bottom:398.985020pt;}
.y58{bottom:404.329433pt;}
.y8e{bottom:410.774088pt;}
.y12c{bottom:411.057297pt;}
.y29{bottom:414.202468pt;}
.yf1{bottom:414.222000pt;}
.y28{bottom:434.791661pt;}
.y12e{bottom:450.946621pt;}
.y27{bottom:455.380860pt;}
.y1f{bottom:470.617836pt;}
.y128{bottom:483.850264pt;}
.y12b{bottom:503.149743pt;}
.y95{bottom:514.050781pt;}
.y61{bottom:535.026048pt;}
.y124{bottom:536.054688pt;}
.yc9{bottom:544.025395pt;}
.y84{bottom:546.954433pt;}
.y127{bottom:555.354168pt;}
.y26{bottom:558.508461pt;}
.y4f{bottom:567.929683pt;}
.yb5{bottom:576.929033pt;}
.yfc{bottom:583.749668pt;}
.y11f{bottom:588.257817pt;}
.y1a{bottom:591.412107pt;}
.yea{bottom:616.653972pt;}
.y1e{bottom:625.591795pt;}
.y123{bottom:630.639328pt;}
.y12{bottom:658.495444pt;}
.y11b{bottom:663.542968pt;}
.y8d{bottom:666.507168pt;}
.y14e{bottom:671.931639pt;}
.yf0{bottom:686.979168pt;}
.y14d{bottom:691.326825pt;}
.y57{bottom:700.253901pt;}
.y11e{bottom:701.610676pt;}
.y83{bottom:705.763020pt;}
.y14c{bottom:710.721999pt;}
.ybd{bottom:714.792315pt;}
.ye4{bottom:719.882807pt;}
.y82{bottom:723.666660pt;}
.y14b{bottom:728.145834pt;}
.y49{bottom:733.157555pt;}
.y113{bottom:734.514971pt;}
.y19{bottom:743.130861pt;}
.y81{bottom:744.255860pt;}
.y14a{bottom:746.049474pt;}
.yb4{bottom:754.048181pt;}
.y7f{bottom:759.492833pt;}
.y80{bottom:762.735021pt;}
.y149{bottom:763.953127pt;}
.yb3{bottom:774.637374pt;}
.y9{bottom:776.034505pt;}
.y148{bottom:781.856767pt;}
.y4e{bottom:785.240888pt;}
.ye9{bottom:790.208328pt;}
.yb2{bottom:795.226567pt;}
.y7e{bottom:801.990887pt;}
.y147{bottom:802.445967pt;}
.y119{bottom:803.212236pt;}
.yb1{bottom:815.815754pt;}
.y146{bottom:817.682941pt;}
.y3c{bottom:818.144531pt;}
.y7d{bottom:822.580074pt;}
.ye2{bottom:823.111979pt;}
.yaa{bottom:831.052735pt;}
.y10f{bottom:836.116537pt;}
.y7c{bottom:843.169274pt;}
.y145{bottom:856.938807pt;}
.ye3{bottom:857.630208pt;}
.y7b{bottom:863.758460pt;}
.y11{bottom:876.945964pt;}
.y144{bottom:877.527994pt;}
.y7a{bottom:884.347660pt;}
.ydb{bottom:890.533855pt;}
.y143{bottom:898.117187pt;}
.y79{bottom:899.584636pt;}
.y141{bottom:913.354167pt;}
.y8{bottom:916.201823pt;}
.y142{bottom:931.995443pt;}
.y7{bottom:934.105468pt;}
.y112{bottom:937.366537pt;}
.yb0{bottom:937.584636pt;}
.y78{bottom:938.840494pt;}
.y6{bottom:954.694661pt;}
.y77{bottom:959.429687pt;}
.ye1{bottom:962.486980pt;}
.y2{bottom:969.931640pt;}
.ya7{bottom:970.488281pt;}
.y140{bottom:971.251302pt;}
.y4{bottom:973.173828pt;}
.y75{bottom:975.859375pt;}
.y10e{bottom:976.622395pt;}
.y13f{bottom:991.840494pt;}
.y48{bottom:993.763021pt;}
.y10d{bottom:994.526042pt;}
.yda{bottom:995.390625pt;}
.y1{bottom:1012.429687pt;}
.h11{height:19.140625pt;}
.he{height:19.674479pt;}
.h25{height:30.276041pt;}
.h4{height:31.903645pt;}
.h24{height:31.903972pt;}
.h2e{height:31.904297pt;}
.h35{height:34.589193pt;}
.h2{height:35.145833pt;}
.h20{height:39.101563pt;}
.h8{height:39.348957pt;}
.hc{height:40.075522pt;}
.h5{height:40.791668pt;}
.h1{height:42.109376pt;}
.h6{height:43.283855pt;}
.h3{height:49.765623pt;}
.h16{height:49.807292pt;}
.h2b{height:50.544921pt;}
.h31{height:51.203125pt;}
.h32{height:51.203776pt;}
.h1c{height:55.178385pt;}
.h29{height:55.733335pt;}
.h22{height:64.794271pt;}
.ha{height:66.083333pt;}
.h23{height:66.421875pt;}
.h34{height:67.479817pt;}
.h2f{height:69.972005pt;}
.h33{height:71.792969pt;}
.h30{height:74.285156pt;}
.h12{height:83.986979pt;}
.h15{height:85.614584pt;}
.h17{height:87.242351pt;}
.h2d{height:100.601563pt;}
.h28{height:102.228841pt;}
.h27{height:102.229167pt;}
.h26{height:103.856771pt;}
.hf{height:105.145833pt;}
.h9{height:116.539063pt;}
.hb{height:119.794271pt;}
.h1b{height:122.159505pt;}
.h21{height:123.787109pt;}
.h7{height:132.815104pt;}
.h2c{height:133.153645pt;}
.h19{height:135.180339pt;}
.h1d{height:138.435547pt;}
.hd{height:151.125651pt;}
.h18{height:151.456380pt;}
.h14{height:162.600260pt;}
.h13{height:164.227864pt;}
.h1a{height:169.698568pt;}
.h1e{height:169.766927pt;}
.h2a{height:201.431640pt;}
.h1f{height:206.233073pt;}
.h10{height:207.522136pt;}
.h0{height:1122.666667pt;}
.w12{width:55.000000pt;}
.w10{width:59.000000pt;}
.wd{width:65.000000pt;}
.w14{width:66.000000pt;}
.wc{width:67.000000pt;}
.wa{width:73.000000pt;}
.w4{width:76.000000pt;}
.w2{width:78.000000pt;}
.w6{width:79.000000pt;}
.w8{width:82.000000pt;}
.w13{width:532.000000pt;}
.w7{width:567.000000pt;}
.w5{width:569.000000pt;}
.w3{width:570.000000pt;}
.we{width:572.000000pt;}
.w1{width:573.000000pt;}
.w9{width:574.000000pt;}
.wb{width:575.000000pt;}
.wf{width:576.000000pt;}
.w11{width:577.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x7{left:1.000000pt;}
.xa{left:6.000000pt;}
.x1b{left:12.377228pt;}
.x1e{left:13.377228pt;}
.x29{left:15.743355pt;}
.xc{left:17.877228pt;}
.x10{left:19.377228pt;}
.x5{left:22.938469pt;}
.x8{left:25.000000pt;}
.x20{left:30.000000pt;}
.x1c{left:32.000000pt;}
.x1f{left:33.000000pt;}
.x27{left:54.000000pt;}
.x2{left:61.000000pt;}
.x6{left:65.000000pt;}
.xe{left:67.000000pt;}
.x14{left:69.000000pt;}
.x12{left:70.000000pt;}
.x16{left:71.000000pt;}
.x19{left:73.000000pt;}
.x1d{left:76.000000pt;}
.x23{left:77.000000pt;}
.x9{left:78.000000pt;}
.x1{left:96.000000pt;}
.x26{left:97.000000pt;}
.xd{left:102.000000pt;}
.x21{left:129.132538pt;}
.x11{left:144.000000pt;}
.x22{left:147.429413pt;}
.x3{left:198.428380pt;}
.x17{left:199.428380pt;}
.x28{left:630.000000pt;}
.x4{left:635.000000pt;}
.xb{left:636.000000pt;}
.xf{left:637.000000pt;}
.x13{left:638.000000pt;}
.x15{left:644.000000pt;}
.x18{left:647.000000pt;}
.x1a{left:649.000000pt;}
.x24{left:654.000000pt;}
.x25{left:655.000000pt;}
}




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