
    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_077380878de2bcba77ff6c71.woff')format("woff");}.ff1{font-family:ff1;line-height:0.691406;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_b236251d8ec2ce5a5d589062.woff')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_2de75f56fd020ce1239889ef.woff')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_37fe069d4d8337fc81346bc0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.853516;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_808be867b58cc3494262fe13.woff')format("woff");}.ff5{font-family:ff5;line-height:1.036133;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);}
.v1{vertical-align:-3.593894px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.067679px;}
.ls2{letter-spacing:0.203038px;}
.ls3{letter-spacing:0.338397px;}
.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;}
}
.ws1{word-spacing:-25.106429px;}
.wsb{word-spacing:-21.792752px;}
.ws4{word-spacing:-21.522034px;}
.ws3{word-spacing:-21.454355px;}
.ws0{word-spacing:-11.340103px;}
.ws2{word-spacing:0.000000px;}
.ws5{word-spacing:0.203038px;}
.wsa{word-spacing:122.634988px;}
.ws9{word-spacing:161.212220px;}
.ws7{word-spacing:329.463093px;}
.ws6{word-spacing:365.333150px;}
.ws8{word-spacing:1314.633130px;}
._2{margin-left:-1908.073372px;}
._14{margin-left:-4.719071px;}
._b{margin-left:-3.461671px;}
._a{margin-left:-2.286736px;}
._1{margin-left:-1.082870px;}
._0{width:1.015190px;}
._4{width:2.633809px;}
._3{width:3.762726px;}
._5{width:4.825459px;}
._6{width:5.935735px;}
._d{width:6.937926px;}
._8{width:8.143213px;}
._7{width:9.771856px;}
._9{width:11.655447px;}
._16{width:12.725147px;}
._12{width:14.493617px;}
._21{width:15.589455px;}
._18{width:16.689632px;}
._11{width:17.820020px;}
._f{width:19.324822px;}
._10{width:20.829624px;}
._2e{width:22.557211px;}
._e{width:23.721105px;}
._24{width:24.758316px;}
._20{width:26.665665px;}
._23{width:28.086932px;}
._17{width:29.276962px;}
._15{width:30.336469px;}
._2a{width:31.816557px;}
._25{width:33.365921px;}
._3d{width:34.469267px;}
._1a{width:35.719241px;}
._19{width:37.269954px;}
._37{width:38.389608px;}
._3f{width:39.450243px;}
._13{width:43.480850px;}
._3b{width:46.106635px;}
._1d{width:52.021528px;}
._1e{width:53.464842px;}
._1b{width:54.613838px;}
._40{width:56.404477px;}
._26{width:58.239074px;}
._32{width:78.751052px;}
._3c{width:82.649546px;}
._22{width:95.766285px;}
._30{width:115.195304px;}
._3a{width:117.220640px;}
._2c{width:118.410118px;}
._38{width:127.833703px;}
._1f{width:138.878033px;}
._39{width:143.806030px;}
._36{width:146.977558px;}
._2f{width:148.130134px;}
._1c{width:160.129350px;}
._35{width:161.207188px;}
._28{width:171.634840px;}
._34{width:194.441930px;}
._2b{width:198.188293px;}
._2d{width:203.919689px;}
._31{width:220.744377px;}
._c{width:222.676169px;}
._33{width:224.568537px;}
._3e{width:526.410011px;}
._27{width:867.378594px;}
._29{width:872.077838px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:45.360414px;}
.fs4{font-size:56.160091px;}
.fs0{font-size:62.639307px;}
.fs1{font-size:67.679353px;}
.fs2{font-size:79.200090px;}
.y0{bottom:0.000000px;}
.y23{bottom:3.055007px;}
.y1d{bottom:3.059191px;}
.y11{bottom:3.059275px;}
.y14{bottom:3.063543px;}
.y1b{bottom:3.067811px;}
.y101{bottom:8.094330px;}
.y11a{bottom:8.104667px;}
.y1{bottom:51.133211px;}
.y47{bottom:112.497650px;}
.y7b{bottom:112.510052px;}
.y9b{bottom:117.911079px;}
.y2b{bottom:121.863505px;}
.yb5{bottom:123.312106px;}
.y93{bottom:129.245016px;}
.y172{bottom:129.792330px;}
.y139{bottom:134.831910px;}
.y12a{bottom:137.888777px;}
.y7a{bottom:140.589240px;}
.y46{bottom:145.078695px;}
.y9a{bottom:145.990368px;}
.yb4{bottom:151.386252px;}
.y157{bottom:151.933565px;}
.y2a{bottom:154.619807px;}
.yc9{bottom:155.351779px;}
.y92{bottom:157.329449px;}
.y171{bottom:157.871619px;}
.y138{bottom:162.911199px;}
.y5c{bottom:165.431040px;}
.y129{bottom:165.967966px;}
.y79{bottom:168.668530px;}
.y110{bottom:172.448190px;}
.y99{bottom:174.074700px;}
.y45{bottom:178.016389px;}
.y156{bottom:179.832030px;}
.y91{bottom:185.408637px;}
.y170{bottom:185.945664px;}
.y29{bottom:187.200970px;}
.yb3{bottom:190.629042px;}
.y13d{bottom:190.809765px;}
.y137{bottom:190.995632px;}
.y5b{bottom:193.515372px;}
.y128{bottom:194.052398px;}
.yc8{bottom:194.589425px;}
.y78{bottom:196.572239px;}
.y10f{bottom:200.527479px;}
.y98{bottom:201.973266px;}
.yfa{bottom:202.148846px;}
.y155{bottom:207.911320px;}
.y44{bottom:210.597434px;}
.y90{bottom:213.487927px;}
.y16f{bottom:213.844230px;}
.yec{bottom:216.007767px;}
.y13c{bottom:218.894097px;}
.y127{bottom:222.131688px;}
.y77{bottom:224.651427px;}
.y28{bottom:225.715750px;}
.y97{bottom:230.047311px;}
.yf9{bottom:230.228034px;}
.y5a{bottom:232.928598px;}
.yc7{bottom:235.815029px;}
.y154{bottom:235.985365px;}
.yc5{bottom:237.250428px;}
.y10e{bottom:240.488019px;}
.y8f{bottom:241.391636px;}
.y16e{bottom:241.928663px;}
.y43{bottom:243.359813px;}
.y126{bottom:250.030153px;}
.y76{bottom:252.730717px;}
.y96{bottom:258.307324px;}
.yeb{bottom:262.985457px;}
.y153{bottom:264.069797px;}
.y27{bottom:265.136739px;}
.y10d{bottom:268.572452px;}
.y8e{bottom:269.651548px;}
.y16d{bottom:270.007851px;}
.y59{bottom:272.527692px;}
.ye7{bottom:273.792755px;}
.yc6{bottom:275.765182px;}
.y42{bottom:276.116115px;}
.yc4{bottom:276.668798px;}
.y125{bottom:278.285022px;}
.y75{bottom:280.985485px;}
.y26{bottom:281.337079px;}
.y95{bottom:286.391756px;}
.yf8{bottom:286.572480px;}
.y152{bottom:292.149087px;}
.y25{bottom:297.721693px;}
.y8d{bottom:297.725694px;}
.y13b{bottom:297.906417px;}
.y16c{bottom:298.273007px;}
.yea{bottom:308.703328px;}
.y41{bottom:308.878494px;}
.y74{bottom:309.069918px;}
.y24{bottom:310.862757px;}
.y58{bottom:311.770482px;}
.ye6{bottom:313.205881px;}
.y94{bottom:314.290221px;}
.yf7{bottom:314.470945px;}
.yc3{bottom:315.911588px;}
.y124{bottom:317.708536px;}
.y151{bottom:320.228275px;}
.yaf{bottom:325.624159px;}
.y8c{bottom:325.804882px;}
.y13a{bottom:325.990850px;}
.y16b{bottom:326.171573px;}
.y22{bottom:327.063097px;}
.y21{bottom:330.118104px;}
.y10c{bottom:336.787760px;}
.y73{bottom:336.968484px;}
.y57{bottom:339.849670px;}
.y40{bottom:341.634795px;}
.yb2{bottom:342.369511px;}
.yf6{bottom:342.545091px;}
.y20{bottom:343.259168px;}
.y123{bottom:345.792918px;}
.y150{bottom:348.312708px;}
.ye9{bottom:348.849735px;}
.ye5{bottom:352.448722px;}
.y8b{bottom:353.708591px;}
.y136{bottom:353.889315px;}
.y16a{bottom:354.250762px;}
.yc2{bottom:356.042515px;}
.yc0{bottom:357.488302px;}
.y1f{bottom:359.459508px;}
.y1e{bottom:362.518782px;}
.y72{bottom:365.047723px;}
.yf5{bottom:370.624330px;}
.y3f{bottom:374.403252px;}
.y1c{bottom:375.659931px;}
.y14f{bottom:376.386803px;}
.y10b{bottom:376.748250px;}
.y56{bottom:379.087317px;}
.y8a{bottom:381.787881px;}
.y169{bottom:382.324857px;}
.ye8{bottom:390.612315px;}
.y1a{bottom:392.035925px;}
.ye4{bottom:392.047765px;}
.y71{bottom:393.132105px;}
.y135{bottom:393.302542px;}
.yc1{bottom:396.008198px;}
.ybf{bottom:396.906672px;}
.yf4{bottom:398.708712px;}
.y14e{bottom:404.285319px;}
.yae{bottom:404.466042px;}
.y10a{bottom:404.827489px;}
.y3e{bottom:407.153534px;}
.y55{bottom:407.166606px;}
.y19{bottom:408.236265px;}
.y89{bottom:410.052986px;}
.y168{bottom:410.404096px;}
.y18{bottom:411.299807px;}
.y122{bottom:414.008277px;}
.yb1{bottom:421.206200px;}
.y70{bottom:421.386924px;}
.y17{bottom:424.436604px;}
.ye3{bottom:431.285411px;}
.y148{bottom:432.545332px;}
.ybe{bottom:436.149462px;}
.y88{bottom:438.121939px;}
.y167{bottom:438.488529px;}
.y3d{bottom:439.921932px;}
.y16{bottom:440.637027px;}
.y121{bottom:442.087516px;}
.y15{bottom:443.700570px;}
.yad{bottom:444.065136px;}
.y109{bottom:444.793172px;}
.y54{bottom:446.584926px;}
.y6f{bottom:449.285439px;}
.y134{bottom:449.466163px;}
.y13{bottom:456.837367px;}
.y147{bottom:460.629714px;}
.y87{bottom:466.025597px;}
.yf3{bottom:466.206321px;}
.y166{bottom:466.567768px;}
.ye2{bottom:471.426675px;}
.yac{bottom:472.144375px;}
.y3c{bottom:472.678233px;}
.y108{bottom:472.862125px;}
.y12{bottom:473.041974px;}
.ydd{bottom:475.030805px;}
.ybd{bottom:476.285532px;}
.y6e{bottom:477.364729px;}
.y133{bottom:477.550595px;}
.y120{bottom:482.042862px;}
.y53{bottom:486.008439px;}
.y146{bottom:488.708953px;}
.y10{bottom:489.418010px;}
.yf{bottom:492.477285px;}
.y86{bottom:494.104836px;}
.yf2{bottom:494.285560px;}
.y165{bottom:494.652200px;}
.yab{bottom:500.042890px;}
.y3b{bottom:505.440612px;}
.y6d{bottom:505.449111px;}
.y132{bottom:505.629834px;}
.y11f{bottom:510.122101px;}
.ye1{bottom:511.387165px;}
.y107{bottom:513.008531px;}
.ye{bottom:514.256280px;}
.ydc{bottom:514.263258px;}
.ybc{bottom:516.607519px;}
.y145{bottom:516.783048px;}
.y85{bottom:522.184126px;}
.y164{bottom:522.721102px;}
.y52{bottom:526.679956px;}
.yaa{bottom:528.127323px;}
.y6c{bottom:533.528350px;}
.y3a{bottom:538.196913px;}
.y106{bottom:541.087770px;}
.y144{bottom:544.681564px;}
.y131{bottom:544.862287px;}
.yd{bottom:546.837670px;}
.y84{bottom:550.268508px;}
.y163{bottom:550.805534px;}
.ye0{bottom:551.523234px;}
.ydb{bottom:553.506048px;}
.ybb{bottom:555.845115px;}
.ya9{bottom:556.206562px;}
.y51{bottom:559.617531px;}
.y6b{bottom:561.426916px;}
.yf1{bottom:561.602445px;}
.y39{bottom:570.778018px;}
.yc{bottom:571.503116px;}
.y143{bottom:572.765996px;}
.y130{bottom:572.946720px;}
.y83{bottom:578.347747px;}
.y162{bottom:578.704050px;}
.y105{bottom:581.043117px;}
.y14d{bottom:584.105077px;}
.ya8{bottom:584.290994px;}
.y6a{bottom:589.500961px;}
.yf0{bottom:589.681684px;}
.y11e{bottom:590.229048px;}
.ydf{bottom:591.664498px;}
.y50{bottom:592.375072px;}
.yda{bottom:592.924418px;}
.y142{bottom:601.025959px;}
.y12f{bottom:601.206682px;}
.y38{bottom:603.715652px;}
.y82{bottom:606.421842px;}
.y161{bottom:606.969206px;}
.y104{bottom:609.303079px;}
.yba{bottom:612.189510px;}
.ya7{bottom:612.545813px;}
.yb{bottom:616.857090px;}
.y11d{bottom:618.483867px;}
.y14c{bottom:623.523447px;}
.y4f{bottom:625.139870px;}
.y69{bottom:629.110391px;}
.y12e{bottom:629.280777px;}
.yde{bottom:631.630181px;}
.yd9{bottom:632.347931px;}
.y160{bottom:635.048445px;}
.y37{bottom:636.296698px;}
.ya{bottom:639.355944px;}
.ya6{bottom:640.444328px;}
.y81{bottom:645.845356px;}
.y102{bottom:649.449486px;}
.yb9{bottom:651.421963px;}
.y14b{bottom:651.602686px;}
.y141{bottom:657.008907px;}
.yef{bottom:657.179293px;}
.y4e{bottom:657.894991px;}
.y11b{bottom:658.444357px;}
.y15f{bottom:663.122540px;}
.y68{bottom:668.342844px;}
.ya5{bottom:668.523567px;}
.y36{bottom:669.235513px;}
.y100{bottom:669.427184px;}
.yd8{bottom:671.763175px;}
.y103{bottom:677.348052px;}
.y119{bottom:678.603787px;}
.y14a{bottom:679.686060px;}
.y80{bottom:685.080935px;}
.yee{bottom:685.262667px;}
.y11c{bottom:686.526722px;}
.y4d{bottom:690.476095px;}
.yb8{bottom:690.665811px;}
.y15e{bottom:691.021056px;}
.y67{bottom:696.424150px;}
.ya4{bottom:696.605933px;}
.y35{bottom:701.816617px;}
.y149{bottom:707.767366px;}
.yd7{bottom:711.724724px;}
.y7f{bottom:713.162241px;}
.yff{bottom:717.483063px;}
.y15d{bottom:719.102362px;}
.yd3{bottom:721.440420px;}
.y4c{bottom:723.414881px;}
.y66{bottom:724.505457px;}
.y12d{bottom:724.687239px;}
.y118{bottom:726.661783px;}
.yb7{bottom:730.082064px;}
.y34{bottom:734.581415px;}
.ya3{bottom:735.840453px;}
.y7e{bottom:741.243547px;}
.yfe{bottom:745.564369px;}
.y15c{bottom:747.183668px;}
.y65{bottom:752.586763px;}
.y117{bottom:754.743089px;}
.y4b{bottom:755.995985px;}
.yd6{bottom:758.700397px;}
.yd2{bottom:760.864942px;}
.ya2{bottom:763.921759px;}
.y33{bottom:767.336536px;}
.y7d{bottom:769.506636px;}
.y15b{bottom:775.265000px;}
.y64{bottom:780.841607px;}
.yfd{bottom:785.525943px;}
.y4a{bottom:788.934800px;}
.y140{bottom:792.003065px;}
.ya1{bottom:792.184823px;}
.y116{bottom:794.704638px;}
.y7c{bottom:797.579672px;}
.yd5{bottom:798.661945px;}
.y32{bottom:800.101305px;}
.yd1{bottom:800.281245px;}
.y15a{bottom:803.519794px;}
.y63{bottom:808.741156px;}
.yb6{bottom:808.922913px;}
.yfc{bottom:813.607249px;}
.y13f{bottom:820.084397px;}
.ya0{bottom:820.266154px;}
.y49{bottom:821.515875px;}
.y159{bottom:831.419368px;}
.y31{bottom:832.856426px;}
.y115{bottom:834.839674px;}
.y62{bottom:836.822462px;}
.y9{bottom:836.999414px;}
.yd4{bottom:838.805251px;}
.yd0{bottom:839.524035px;}
.y9f{bottom:848.165703px;}
.y8{bottom:855.537849px;}
.y158{bottom:859.500674px;}
.y114{bottom:862.920980px;}
.y61{bottom:864.903794px;}
.y48{bottom:865.437501px;}
.y30{bottom:865.621195px;}
.y12c{bottom:876.247010px;}
.ycf{bottom:878.940312px;}
.y9e{bottom:887.581981px;}
.y60{bottom:892.985100px;}
.y2f{bottom:898.376316px;}
.y113{bottom:902.882554px;}
.y13e{bottom:904.146584px;}
.yb0{bottom:904.320071px;}
.y7{bottom:911.158611px;}
.y12b{bottom:915.481555px;}
.y9d{bottom:915.663287px;}
.yce{bottom:918.901861px;}
.yfb{bottom:920.339378px;}
.ycc{bottom:920.521135px;}
.y6{bottom:924.123223px;}
.y112{bottom:930.963860px;}
.y2e{bottom:931.141114px;}
.y5f{bottom:932.401378px;}
.y9c{bottom:943.744618px;}
.y5{bottom:950.040549px;}
.ycd{bottom:959.045167px;}
.ycb{bottom:959.763925px;}
.yed{bottom:960.482684px;}
.y2d{bottom:963.896221px;}
.y111{bottom:971.098896px;}
.y5e{bottom:971.825925px;}
.y4{bottom:976.860985px;}
.y2c{bottom:996.661004px;}
.yca{bottom:999.180215px;}
.y5d{bottom:999.898987px;}
.y3{bottom:1001.340303px;}
.y2{bottom:1066.140810px;}
.hd{height:15.656136px;}
.ha{height:15.656219px;}
.h9{height:15.660487px;}
.hb{height:15.664755px;}
.hc{height:15.664839px;}
.h11{height:27.897507px;}
.h12{height:27.899574px;}
.h4{height:31.517514px;}
.h8{height:38.061624px;}
.h6{height:38.308421px;}
.h7{height:39.021391px;}
.h5{height:39.021431px;}
.h1{height:42.728082px;}
.h2{height:47.025254px;}
.hf{height:49.206327px;}
.h10{height:49.768118px;}
.h3{height:53.676624px;}
.he{height:58.239910px;}
.h0{height:1188.000000px;}
.w4{width:53.095659px;}
.w6{width:169.733090px;}
.w3{width:346.316556px;}
.w7{width:362.519745px;}
.w8{width:371.153169px;}
.w5{width:414.178946px;}
.w1{width:581.219574px;}
.w2{width:609.656102px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xf{left:139.141566px;}
.x3{left:142.022620px;}
.x13{left:144.537389px;}
.x8{left:146.701518px;}
.x12{left:148.139465px;}
.x14{left:153.542584px;}
.x19{left:154.798345px;}
.x18{left:161.638982px;}
.x11{left:163.258269px;}
.x16{left:165.241057px;}
.x15{left:168.116117px;}
.x6{left:174.601497px;}
.x10{left:189.898461px;}
.x9{left:239.578460px;}
.x2{left:318.775384px;}
.xd{left:342.177577px;}
.x5{left:388.625561px;}
.x4{left:395.642756px;}
.x7{left:401.765941px;}
.xb{left:410.039966px;}
.x17{left:535.674421px;}
.xe{left:586.623432px;}
.x1a{left:592.731372px;}
.xa{left:664.561670px;}
.xc{left:703.260863px;}
.x1{left:723.411558px;}
@media print{
.v1{vertical-align:-3.194572pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.060159pt;}
.ls2{letter-spacing:0.180478pt;}
.ls3{letter-spacing:0.300797pt;}
.ws1{word-spacing:-22.316825pt;}
.wsb{word-spacing:-19.371335pt;}
.ws4{word-spacing:-19.130697pt;}
.ws3{word-spacing:-19.070538pt;}
.ws0{word-spacing:-10.080092pt;}
.ws2{word-spacing:0.000000pt;}
.ws5{word-spacing:0.180478pt;}
.wsa{word-spacing:109.008879pt;}
.ws9{word-spacing:143.299751pt;}
.ws7{word-spacing:292.856082pt;}
.ws6{word-spacing:324.740578pt;}
.ws8{word-spacing:1168.562783pt;}
._2{margin-left:-1696.065219pt;}
._14{margin-left:-4.194730pt;}
._b{margin-left:-3.077041pt;}
._a{margin-left:-2.032654pt;}
._1{margin-left:-0.962551pt;}
._0{width:0.902391pt;}
._4{width:2.341163pt;}
._3{width:3.344645pt;}
._5{width:4.289297pt;}
._6{width:5.276209pt;}
._d{width:6.167045pt;}
._8{width:7.238412pt;}
._7{width:8.686094pt;}
._9{width:10.360397pt;}
._16{width:11.311242pt;}
._12{width:12.883215pt;}
._21{width:13.857293pt;}
._18{width:14.835228pt;}
._11{width:15.840018pt;}
._f{width:17.177620pt;}
._10{width:18.515221pt;}
._2e{width:20.050854pt;}
._e{width:21.085426pt;}
._24{width:22.007392pt;}
._20{width:23.702814pt;}
._23{width:24.966161pt;}
._17{width:26.023966pt;}
._15{width:26.965750pt;}
._2a{width:28.281384pt;}
._25{width:29.658597pt;}
._3d{width:30.639348pt;}
._1a{width:31.750436pt;}
._19{width:33.128848pt;}
._37{width:34.124096pt;}
._3f{width:35.066882pt;}
._13{width:38.649644pt;}
._3b{width:40.983676pt;}
._1d{width:46.241359pt;}
._1e{width:47.524304pt;}
._1b{width:48.545634pt;}
._40{width:50.137313pt;}
._26{width:51.768066pt;}
._32{width:70.000936pt;}
._3c{width:73.466264pt;}
._22{width:85.125587pt;}
._30{width:102.395825pt;}
._3a{width:104.196125pt;}
._2c{width:105.253438pt;}
._38{width:113.629958pt;}
._1f{width:123.447141pt;}
._39{width:127.827582pt;}
._36{width:130.646718pt;}
._2f{width:131.671230pt;}
._1c{width:142.337200pt;}
._35{width:143.295278pt;}
._28{width:152.564302pt;}
._34{width:172.837271pt;}
._2b{width:176.167371pt;}
._2d{width:181.261946pt;}
._31{width:196.217224pt;}
._c{width:197.934372pt;}
._33{width:199.616478pt;}
._3e{width:467.920009pt;}
._27{width:771.003194pt;}
._29{width:775.180301pt;}
.fs3{font-size:40.320368pt;}
.fs4{font-size:49.920081pt;}
.fs0{font-size:55.679384pt;}
.fs1{font-size:60.159425pt;}
.fs2{font-size:70.400080pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:2.715562pt;}
.y1d{bottom:2.719281pt;}
.y11{bottom:2.719355pt;}
.y14{bottom:2.723149pt;}
.y1b{bottom:2.726943pt;}
.y101{bottom:7.194960pt;}
.y11a{bottom:7.204148pt;}
.y1{bottom:45.451743pt;}
.y47{bottom:99.997911pt;}
.y7b{bottom:100.008935pt;}
.y9b{bottom:104.809848pt;}
.y2b{bottom:108.323116pt;}
.yb5{bottom:109.610761pt;}
.y93{bottom:114.884459pt;}
.y172{bottom:115.370960pt;}
.y139{bottom:119.850587pt;}
.y12a{bottom:122.567802pt;}
.y7a{bottom:124.968214pt;}
.y46{bottom:128.958840pt;}
.y9a{bottom:129.769216pt;}
.yb4{bottom:134.565557pt;}
.y157{bottom:135.052058pt;}
.y2a{bottom:137.439828pt;}
.yc9{bottom:138.090470pt;}
.y92{bottom:139.848399pt;}
.y171{bottom:140.330328pt;}
.y138{bottom:144.809955pt;}
.y5c{bottom:147.049813pt;}
.y129{bottom:147.527081pt;}
.y79{bottom:149.927582pt;}
.y110{bottom:153.287280pt;}
.y99{bottom:154.733067pt;}
.y45{bottom:158.236790pt;}
.y156{bottom:159.850694pt;}
.y91{bottom:164.807678pt;}
.y170{bottom:165.285035pt;}
.y29{bottom:166.400862pt;}
.yb3{bottom:169.448037pt;}
.y13d{bottom:169.608680pt;}
.y137{bottom:169.773895pt;}
.y5b{bottom:172.013664pt;}
.y128{bottom:172.491021pt;}
.yc8{bottom:172.968378pt;}
.y78{bottom:174.730879pt;}
.y10f{bottom:178.246648pt;}
.y98{bottom:179.531792pt;}
.yfa{bottom:179.687863pt;}
.y155{bottom:184.810062pt;}
.y44{bottom:187.197719pt;}
.y90{bottom:189.767046pt;}
.y16f{bottom:190.083760pt;}
.yec{bottom:192.006904pt;}
.y13c{bottom:194.572531pt;}
.y127{bottom:197.450389pt;}
.y77{bottom:199.690158pt;}
.y28{bottom:200.636222pt;}
.y97{bottom:204.486499pt;}
.yf9{bottom:204.647142pt;}
.y5a{bottom:207.047643pt;}
.yc7{bottom:209.613359pt;}
.y154{bottom:209.764769pt;}
.yc5{bottom:210.889270pt;}
.y10e{bottom:213.767128pt;}
.y8f{bottom:214.570343pt;}
.y16e{bottom:215.047700pt;}
.y43{bottom:216.319834pt;}
.y126{bottom:222.249025pt;}
.y76{bottom:224.649526pt;}
.y96{bottom:229.606510pt;}
.yeb{bottom:233.764851pt;}
.y153{bottom:234.728709pt;}
.y27{bottom:235.677102pt;}
.y10d{bottom:238.731068pt;}
.y8e{bottom:239.690265pt;}
.y16d{bottom:240.006979pt;}
.y59{bottom:242.246837pt;}
.ye7{bottom:243.371338pt;}
.yc6{bottom:245.124606pt;}
.y42{bottom:245.436546pt;}
.yc4{bottom:245.927821pt;}
.y125{bottom:247.364464pt;}
.y75{bottom:249.764876pt;}
.y26{bottom:250.077403pt;}
.y95{bottom:254.570450pt;}
.yf8{bottom:254.731093pt;}
.y152{bottom:259.688077pt;}
.y25{bottom:264.641505pt;}
.y8d{bottom:264.645061pt;}
.y13b{bottom:264.805704pt;}
.y16c{bottom:265.131562pt;}
.yea{bottom:274.402958pt;}
.y41{bottom:274.558661pt;}
.y74{bottom:274.728816pt;}
.y24{bottom:276.322451pt;}
.y58{bottom:277.129317pt;}
.ye6{bottom:278.405228pt;}
.y94{bottom:279.369086pt;}
.yf7{bottom:279.529729pt;}
.yc3{bottom:280.810301pt;}
.y124{bottom:282.407587pt;}
.y151{bottom:284.647356pt;}
.yaf{bottom:289.443697pt;}
.y8c{bottom:289.604340pt;}
.y13a{bottom:289.769644pt;}
.y16b{bottom:289.930287pt;}
.y22{bottom:290.722753pt;}
.y21{bottom:293.438314pt;}
.y10c{bottom:299.366898pt;}
.y73{bottom:299.527541pt;}
.y57{bottom:302.088596pt;}
.y40{bottom:303.675373pt;}
.yb2{bottom:304.328454pt;}
.yf6{bottom:304.484525pt;}
.y20{bottom:305.119261pt;}
.y123{bottom:307.371482pt;}
.y150{bottom:309.611296pt;}
.ye9{bottom:310.088653pt;}
.ye5{bottom:313.287753pt;}
.y8b{bottom:314.407637pt;}
.y136{bottom:314.568280pt;}
.y16a{bottom:314.889566pt;}
.yc2{bottom:316.482235pt;}
.yc0{bottom:317.767379pt;}
.y1f{bottom:319.519562pt;}
.y1e{bottom:322.238918pt;}
.y72{bottom:324.486865pt;}
.yf5{bottom:329.443849pt;}
.y3f{bottom:332.802890pt;}
.y1c{bottom:333.919939pt;}
.y14f{bottom:334.566047pt;}
.y10b{bottom:334.887333pt;}
.y56{bottom:336.966504pt;}
.y8a{bottom:339.367005pt;}
.y169{bottom:339.844317pt;}
.ye8{bottom:347.210946pt;}
.y1a{bottom:348.476378pt;}
.ye4{bottom:348.486902pt;}
.y71{bottom:349.450760pt;}
.y135{bottom:349.602259pt;}
.yc1{bottom:352.007287pt;}
.ybf{bottom:352.805931pt;}
.yf4{bottom:354.407744pt;}
.y14e{bottom:359.364728pt;}
.yae{bottom:359.525371pt;}
.y10a{bottom:359.846657pt;}
.y3e{bottom:361.914252pt;}
.y55{bottom:361.925872pt;}
.y19{bottom:362.876680pt;}
.y89{bottom:364.491543pt;}
.y168{bottom:364.803641pt;}
.y18{bottom:365.599829pt;}
.y122{bottom:368.007357pt;}
.yb1{bottom:374.405511pt;}
.y70{bottom:374.566154pt;}
.y17{bottom:377.276981pt;}
.ye3{bottom:383.364810pt;}
.y148{bottom:384.484739pt;}
.ybe{bottom:387.688411pt;}
.y88{bottom:389.441723pt;}
.y167{bottom:389.767581pt;}
.y3d{bottom:391.041717pt;}
.y16{bottom:391.677358pt;}
.y121{bottom:392.966681pt;}
.y15{bottom:394.400507pt;}
.yad{bottom:394.724565pt;}
.y109{bottom:395.371709pt;}
.y54{bottom:396.964378pt;}
.y6f{bottom:399.364835pt;}
.y134{bottom:399.525478pt;}
.y13{bottom:406.077659pt;}
.y147{bottom:409.448634pt;}
.y87{bottom:414.244975pt;}
.yf3{bottom:414.405618pt;}
.y166{bottom:414.726904pt;}
.ye2{bottom:419.045933pt;}
.yac{bottom:419.683888pt;}
.y3c{bottom:420.158429pt;}
.y108{bottom:420.321889pt;}
.y12{bottom:420.481755pt;}
.ydd{bottom:422.249605pt;}
.ybd{bottom:423.364917pt;}
.y6e{bottom:424.324203pt;}
.y133{bottom:424.489418pt;}
.y120{bottom:428.482544pt;}
.y53{bottom:432.007501pt;}
.y146{bottom:434.407958pt;}
.y10{bottom:435.038231pt;}
.yf{bottom:437.757587pt;}
.y86{bottom:439.204299pt;}
.yf2{bottom:439.364942pt;}
.y165{bottom:439.690845pt;}
.yab{bottom:444.482569pt;}
.y3b{bottom:449.280544pt;}
.y6d{bottom:449.288098pt;}
.y132{bottom:449.448741pt;}
.y11f{bottom:453.441867pt;}
.ye1{bottom:454.566368pt;}
.y107{bottom:456.007584pt;}
.ye{bottom:457.116693pt;}
.ydc{bottom:457.122896pt;}
.ybc{bottom:459.206683pt;}
.y145{bottom:459.362709pt;}
.y85{bottom:464.163667pt;}
.y164{bottom:464.640979pt;}
.y52{bottom:468.159960pt;}
.yaa{bottom:469.446509pt;}
.y6c{bottom:474.247422pt;}
.y3a{bottom:478.397256pt;}
.y106{bottom:480.966907pt;}
.y144{bottom:484.161390pt;}
.y131{bottom:484.322033pt;}
.yd{bottom:486.077929pt;}
.y84{bottom:489.127562pt;}
.y163{bottom:489.604920pt;}
.ye0{bottom:490.242875pt;}
.ydb{bottom:492.005376pt;}
.ybb{bottom:494.084546pt;}
.ya9{bottom:494.405832pt;}
.y51{bottom:497.437806pt;}
.y6b{bottom:499.046147pt;}
.yf1{bottom:499.202173pt;}
.y39{bottom:507.358238pt;}
.yc{bottom:508.002770pt;}
.y143{bottom:509.125330pt;}
.y130{bottom:509.285973pt;}
.y83{bottom:514.086886pt;}
.y162{bottom:514.403600pt;}
.y105{bottom:516.482770pt;}
.y14d{bottom:519.204513pt;}
.ya8{bottom:519.369773pt;}
.y6a{bottom:524.000854pt;}
.yf0{bottom:524.161497pt;}
.y11e{bottom:524.648043pt;}
.ydf{bottom:525.923998pt;}
.y50{bottom:526.555619pt;}
.yda{bottom:527.043927pt;}
.y142{bottom:534.245296pt;}
.y12f{bottom:534.405939pt;}
.y38{bottom:536.636135pt;}
.y82{bottom:539.041637pt;}
.y161{bottom:539.528183pt;}
.y104{bottom:541.602737pt;}
.yba{bottom:544.168453pt;}
.ya7{bottom:544.485167pt;}
.yb{bottom:548.317414pt;}
.y11d{bottom:549.763437pt;}
.y14c{bottom:554.243064pt;}
.y4f{bottom:555.679884pt;}
.y69{bottom:559.209237pt;}
.y12e{bottom:559.360691pt;}
.yde{bottom:561.449050pt;}
.yd9{bottom:562.087050pt;}
.y160{bottom:564.487507pt;}
.y37{bottom:565.597065pt;}
.ya{bottom:568.316395pt;}
.ya6{bottom:569.283848pt;}
.y81{bottom:574.084760pt;}
.y102{bottom:577.288432pt;}
.yb9{bottom:579.041744pt;}
.y14b{bottom:579.202387pt;}
.y141{bottom:584.007917pt;}
.yef{bottom:584.159371pt;}
.y4e{bottom:584.795548pt;}
.y11b{bottom:585.283872pt;}
.y15f{bottom:589.442258pt;}
.y68{bottom:594.082528pt;}
.ya5{bottom:594.243171pt;}
.y36{bottom:594.876011pt;}
.y100{bottom:595.046386pt;}
.yd8{bottom:597.122822pt;}
.y103{bottom:602.087157pt;}
.y119{bottom:603.203366pt;}
.y14a{bottom:604.165386pt;}
.y80{bottom:608.960831pt;}
.yee{bottom:609.122370pt;}
.y11c{bottom:610.245975pt;}
.y4d{bottom:613.756529pt;}
.yb8{bottom:613.925166pt;}
.y15e{bottom:614.240939pt;}
.y67{bottom:619.043689pt;}
.ya4{bottom:619.205273pt;}
.y35{bottom:623.836993pt;}
.y149{bottom:629.126547pt;}
.yd7{bottom:632.644199pt;}
.y7f{bottom:633.921992pt;}
.yff{bottom:637.762722pt;}
.y15d{bottom:639.202100pt;}
.yd3{bottom:641.280374pt;}
.y4c{bottom:643.035450pt;}
.y66{bottom:644.004850pt;}
.y12d{bottom:644.166435pt;}
.y118{bottom:645.921585pt;}
.yb7{bottom:648.961834pt;}
.y34{bottom:652.961258pt;}
.ya3{bottom:654.080403pt;}
.y7e{bottom:658.883153pt;}
.yfe{bottom:662.723883pt;}
.y15c{bottom:664.163261pt;}
.y65{bottom:668.966011pt;}
.y117{bottom:670.882746pt;}
.y4b{bottom:671.996431pt;}
.yd6{bottom:674.400353pt;}
.yd2{bottom:676.324393pt;}
.ya2{bottom:679.041564pt;}
.y33{bottom:682.076921pt;}
.y7d{bottom:684.005899pt;}
.y15b{bottom:689.124444pt;}
.y64{bottom:694.081428pt;}
.yfd{bottom:698.245282pt;}
.y4a{bottom:701.275378pt;}
.y140{bottom:704.002725pt;}
.ya1{bottom:704.164287pt;}
.y116{bottom:706.404123pt;}
.y7c{bottom:708.959709pt;}
.yd5{bottom:709.921729pt;}
.y32{bottom:711.201160pt;}
.yd1{bottom:711.361107pt;}
.y15a{bottom:714.239817pt;}
.y63{bottom:718.881028pt;}
.yb6{bottom:719.042590pt;}
.yfc{bottom:723.206444pt;}
.y13f{bottom:728.963908pt;}
.ya0{bottom:729.125470pt;}
.y49{bottom:730.236333pt;}
.y159{bottom:739.039438pt;}
.y31{bottom:740.316823pt;}
.y115{bottom:742.079710pt;}
.y62{bottom:743.842189pt;}
.y9{bottom:743.999479pt;}
.yd4{bottom:745.604668pt;}
.yd0{bottom:746.243587pt;}
.y9f{bottom:753.925070pt;}
.y8{bottom:760.478088pt;}
.y158{bottom:764.000599pt;}
.y114{bottom:767.040871pt;}
.y61{bottom:768.803372pt;}
.y48{bottom:769.277779pt;}
.y30{bottom:769.441062pt;}
.y12c{bottom:778.886231pt;}
.ycf{bottom:781.280278pt;}
.y9e{bottom:788.961761pt;}
.y60{bottom:793.764534pt;}
.y2f{bottom:798.556725pt;}
.y113{bottom:802.562270pt;}
.y13e{bottom:803.685852pt;}
.yb0{bottom:803.840063pt;}
.y7{bottom:809.918765pt;}
.y12b{bottom:813.761382pt;}
.y9d{bottom:813.922922pt;}
.yce{bottom:816.801654pt;}
.yfb{bottom:818.079447pt;}
.ycc{bottom:818.241009pt;}
.y6{bottom:821.442865pt;}
.y112{bottom:827.523431pt;}
.y2e{bottom:827.680991pt;}
.y5f{bottom:828.801225pt;}
.y9c{bottom:838.884105pt;}
.y5{bottom:844.480488pt;}
.ycd{bottom:852.484593pt;}
.ycb{bottom:853.123489pt;}
.yed{bottom:853.762386pt;}
.y2d{bottom:856.796641pt;}
.y111{bottom:863.199019pt;}
.y5e{bottom:863.845266pt;}
.y4{bottom:868.320876pt;}
.y2c{bottom:885.920893pt;}
.yca{bottom:888.160191pt;}
.y5d{bottom:888.799099pt;}
.y3{bottom:890.080269pt;}
.y2{bottom:947.680720pt;}
.hd{height:13.916565pt;}
.ha{height:13.916639pt;}
.h9{height:13.920433pt;}
.hb{height:13.924227pt;}
.hc{height:13.924301pt;}
.h11{height:24.797784pt;}
.h12{height:24.799622pt;}
.h4{height:28.015568pt;}
.h8{height:33.832555pt;}
.h6{height:34.051930pt;}
.h7{height:34.685681pt;}
.h5{height:34.685716pt;}
.h1{height:37.980518pt;}
.h2{height:41.800226pt;}
.hf{height:43.738957pt;}
.h10{height:44.238327pt;}
.h3{height:47.712555pt;}
.he{height:51.768809pt;}
.h0{height:1056.000000pt;}
.w4{width:47.196141pt;}
.w6{width:150.873858pt;}
.w3{width:307.836939pt;}
.w7{width:322.239773pt;}
.w8{width:329.913928pt;}
.w5{width:368.159063pt;}
.w1{width:516.639621pt;}
.w2{width:541.916535pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xf{left:123.681392pt;}
.x3{left:126.242329pt;}
.x13{left:128.477679pt;}
.x8{left:130.401350pt;}
.x12{left:131.679524pt;}
.x14{left:136.482297pt;}
.x19{left:137.598529pt;}
.x18{left:143.679095pt;}
.x11{left:145.118461pt;}
.x16{left:146.880940pt;}
.x15{left:149.436548pt;}
.x6{left:155.201330pt;}
.x10{left:168.798632pt;}
.x9{left:212.958631pt;}
.x2{left:283.355897pt;}
.xd{left:304.157846pt;}
.x5{left:345.444943pt;}
.x4{left:351.682450pt;}
.x7{left:357.125281pt;}
.xb{left:364.479970pt;}
.x17{left:476.155041pt;}
.xe{left:521.443051pt;}
.x1a{left:526.872331pt;}
.xa{left:590.721485pt;}
.xc{left:625.120767pt;}
.x1{left:643.032496pt;}
}




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