
    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_be3ac42ebd150aad18c00d04.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_9f1288ae21f357266d3af743.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_baad260d8e0d2efeeb773050.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.978027;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_ce93d78bb533849798b7b8bf.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_e74f790b68f3cc94453ad4ed.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.120605;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_28a4966ef0a8a33b38c345f9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.149414;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_0efccb1ddc5664b3eee75f05.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.937500;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;}
.m3{transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:62.650513px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:4.071763px;}
.ls2{letter-spacing:4.790333px;}
.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:-17.518878px;}
.ws2{word-spacing:-14.540636px;}
.ws3{word-spacing:-13.144735px;}
.ws5{word-spacing:-11.737866px;}
.ws4{word-spacing:-10.611031px;}
.ws0{word-spacing:0.000000px;}
._20{margin-left:-12.822620px;}
._23{margin-left:-11.809717px;}
._21{margin-left:-9.782451px;}
._24{margin-left:-8.251368px;}
._25{margin-left:-6.584395px;}
._22{margin-left:-5.535214px;}
._1f{margin-left:-4.140684px;}
._2{margin-left:-2.170231px;}
._0{margin-left:-1.053243px;}
._1{width:1.404324px;}
._26{width:3.293549px;}
._3{width:4.905286px;}
._4{width:6.306796px;}
._2d{width:8.263987px;}
._29{width:9.320043px;}
._2a{width:10.508514px;}
._30{width:11.772686px;}
._2f{width:12.785795px;}
._31{width:14.505631px;}
._27{width:15.696212px;}
._2e{width:18.920389px;}
._32{width:20.672276px;}
._35{width:21.720596px;}
._28{width:22.914693px;}
._2b{width:24.526430px;}
._2c{width:25.989575px;}
._3d{width:28.370736px;}
._3c{width:29.712018px;}
._34{width:38.406305px;}
._33{width:39.447590px;}
._1a{width:92.004721px;}
._42{width:102.797965px;}
._44{width:123.184312px;}
._40{width:126.131001px;}
._36{width:157.669905px;}
._37{width:192.707662px;}
._19{width:212.019319px;}
._16{width:273.116581px;}
._39{width:277.499033px;}
._f{width:311.370407px;}
._9{width:407.489110px;}
._1e{width:440.300932px;}
._11{width:453.808321px;}
._18{width:458.552712px;}
._c{width:466.002164px;}
._17{width:490.949047px;}
._38{width:540.982963px;}
._a{width:554.252137px;}
._12{width:574.689285px;}
._e{width:588.283935px;}
._6{width:590.736578px;}
._41{width:596.763072px;}
._b{width:648.759103px;}
._1d{width:689.500107px;}
._10{width:702.927475px;}
._3f{width:739.185258px;}
._1b{width:742.494606px;}
._3b{width:744.201952px;}
._1c{width:761.862733px;}
._43{width:766.766267px;}
._5{width:822.745349px;}
._3e{width:839.695737px;}
._d{width:899.559365px;}
._7{width:948.148999px;}
._3a{width:1339.843816px;}
._8{width:1350.729121px;}
._15{width:2117.323900px;}
._14{width:2233.163647px;}
._13{width:2328.396270px;}
.fc4{color:rgb(5,99,193);}
.fc3{color:transparent;}
.fc1{color:rgb(12,126,69);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:46.951464px;}
.fs2{font-size:58.162543px;}
.fs0{font-size:70.075513px;}
.fs4{font-size:75.681790px;}
.fs3{font-size:99.507730px;}
.fs1{font-size:117.026977px;}
.y0{bottom:0.000000px;}
.y34{bottom:3.244669px;}
.y2a{bottom:3.779819px;}
.y32{bottom:3.780928px;}
.y1{bottom:81.724373px;}
.y14{bottom:81.728465px;}
.y2f{bottom:107.465675px;}
.yb4{bottom:161.823264px;}
.yb3{bottom:168.465919px;}
.y95{bottom:173.526418px;}
.y54{bottom:174.426796px;}
.y105{bottom:180.364300px;}
.yb2{bottom:181.989607px;}
.y77{bottom:182.166078px;}
.ye1{bottom:187.207612px;}
.yd1{bottom:188.626006px;}
.y2e{bottom:192.243925px;}
.y53{bottom:199.622671px;}
.yd0{bottom:202.139974px;}
.y94{bottom:203.947078px;}
.y104{bottom:210.779635px;}
.y11{bottom:214.383087px;}
.yb0{bottom:214.559558px;}
.ye0{bottom:217.446580px;}
.y12b{bottom:219.061132px;}
.y76{bottom:219.963960px;}
.yb1{bottom:221.208887px;}
.y2d{bottom:222.482788px;}
.y52{bottom:224.645469px;}
.y138{bottom:225.006218px;}
.y93{bottom:234.004146px;}
.y10{bottom:236.158762px;}
.y103{bottom:240.847458px;}
.yaf{bottom:244.798422px;}
.ydf{bottom:247.685444px;}
.y11b{bottom:248.401874px;}
.y12a{bottom:249.487118px;}
.y51{bottom:250.027683px;}
.y2c{bottom:252.721652px;}
.y111{bottom:254.346960px;}
.y137{bottom:255.245186px;}
.y75{bottom:255.407357px;}
.y74{bottom:255.428025px;}
.yf{bottom:257.768616px;}
.yf0{bottom:262.270190px;}
.y92{bottom:264.243010px;}
.y102{bottom:268.386421px;}
.yae{bottom:275.047937px;}
.y50{bottom:275.223472px;}
.yde{bottom:277.742512px;}
.y11a{bottom:278.458942px;}
.y129{bottom:279.549616px;}
.y73{bottom:282.247990px;}
.yef{bottom:282.420557px;}
.ycf{bottom:282.960517px;}
.y2b{bottom:283.505906px;}
.y110{bottom:284.585824px;}
.y136{bottom:285.484051px;}
.ye{bottom:290.520259px;}
.yfb{bottom:293.765548px;}
.y91{bottom:294.481874px;}
.y4f{bottom:300.428188px;}
.y29{bottom:300.608860px;}
.yad{bottom:305.286905px;}
.y101{bottom:305.826865px;}
.ydd{bottom:308.163172px;}
.y119{bottom:308.890253px;}
.y72{bottom:309.067956px;}
.y128{bottom:309.788480px;}
.yce{bottom:313.028339px;}
.yee{bottom:313.926566px;}
.y10f{bottom:314.824688px;}
.y135{bottom:315.722914px;}
.yd{bottom:320.940919px;}
.yfa{bottom:324.004412px;}
.y90{bottom:324.720842px;}
.y28{bottom:325.442598px;}
.y4e{bottom:325.450986px;}
.y100{bottom:325.987882px;}
.yac{bottom:335.343973px;}
.y71{bottom:335.523998px;}
.y118{bottom:336.065729px;}
.ydc{bottom:338.220344px;}
.y127{bottom:340.027344px;}
.ycd{bottom:343.267204px;}
.yf9{bottom:344.165430px;}
.y10e{bottom:345.063656px;}
.y134{bottom:345.961778px;}
.y4d{bottom:350.646862px;}
.yc{bottom:350.998091px;}
.y8f{bottom:354.959706px;}
.y27{bottom:356.226746px;}
.yff{bottom:357.306769px;}
.y70{bottom:362.348383px;}
.yab{bottom:365.764633px;}
.y126{bottom:367.560982px;}
.ydb{bottom:368.469859px;}
.ycc{bottom:373.506172px;}
.y117{bottom:373.864335px;}
.y10d{bottom:375.120724px;}
.yf8{bottom:375.484317px;}
.y4c{bottom:375.842651px;}
.y133{bottom:376.018951px;}
.yb{bottom:381.247606px;}
.y26{bottom:381.787565px;}
.y8e{bottom:385.209221px;}
.y6f{bottom:388.986430px;}
.y116{bottom:394.025353px;}
.yaa{bottom:395.821753px;}
.yda{bottom:398.708776px;}
.y4b{bottom:401.047367px;}
.ycb{bottom:403.745036px;}
.y125{bottom:405.001425px;}
.y10c{bottom:405.541384px;}
.y132{bottom:406.450262px;}
.y25{bottom:407.524855px;}
.ya{bottom:411.486522px;}
.y8d{bottom:415.266393px;}
.y6e{bottom:415.801888px;}
.ye7{bottom:420.307979px;}
.y115{bottom:425.344240px;}
.ya9{bottom:426.242414px;}
.y4a{bottom:426.247663px;}
.yd9{bottom:428.947640px;}
.y24{bottom:433.085726px;}
.yca{bottom:433.802104px;}
.y124{bottom:435.240289px;}
.y10b{bottom:435.598504px;}
.y130{bottom:436.507382px;}
.ye6{bottom:440.281875px;}
.y9{bottom:441.725386px;}
.y6d{bottom:442.626274px;}
.y131{bottom:443.149441px;}
.y8c{bottom:445.505257px;}
.y49{bottom:451.443539px;}
.ya8{bottom:456.299534px;}
.y23{bottom:458.646544px;}
.y10a{bottom:462.966375px;}
.yc9{bottom:464.222764px;}
.y123{bottom:465.479153px;}
.y6c{bottom:469.248699px;}
.y6b{bottom:469.264321px;}
.ye5{bottom:471.782506px;}
.y8{bottom:471.964303px;}
.y12f{bottom:473.942447px;}
.y8b{bottom:475.744121px;}
.y22{bottom:489.425420px;}
.yd8{bottom:493.745250px;}
.ya7{bottom:493.921669px;}
.yc8{bottom:494.279884px;}
.y48{bottom:494.641050px;}
.y122{bottom:495.728773px;}
.y6a{bottom:496.068017px;}
.y69{bottom:496.088706px;}
.y109{bottom:500.588562px;}
.y7{bottom:511.376004px;}
.y12e{bottom:511.559257px;}
.y21{bottom:520.380714px;}
.y108{bottom:520.738929px;}
.y8a{bottom:521.640544px;}
.yc6{bottom:524.700544px;}
.y121{bottom:525.785840px;}
.yc7{bottom:531.348187px;}
.yd7{bottom:531.543856px;}
.y68{bottom:531.543931px;}
.y12d{bottom:531.725653px;}
.ya6{bottom:539.644116px;}
.y47{bottom:540.899947px;}
.yed{bottom:542.338133px;}
.y20{bottom:551.528455px;}
.yd6{bottom:551.704926px;}
.y107{bottom:552.244885px;}
.y6{bottom:552.426682px;}
.yc5{bottom:554.757664px;}
.y120{bottom:556.024757px;}
.y46{bottom:560.342982px;}
.yec{bottom:562.499150px;}
.y12c{bottom:563.220906px;}
.y67{bottom:566.993845px;}
.y66{bottom:567.003577px;}
.y89{bottom:567.909654px;}
.y45{bottom:577.262970px;}
.y1f{bottom:582.302005px;}
.y5{bottom:582.841965px;}
.yd5{bottom:583.023761px;}
.y11f{bottom:583.563720px;}
.yc4{bottom:585.007231px;}
.ya5{bottom:586.087202px;}
.y65{bottom:593.809525px;}
.y64{bottom:593.827962px;}
.yeb{bottom:594.005107px;}
.y44{bottom:594.005460px;}
.y88{bottom:597.966774px;}
.y43{bottom:610.743530px;}
.y4{bottom:612.904410px;}
.y1e{bottom:613.262625px;}
.yc3{bottom:615.246148px;}
.ya4{bottom:616.326066px;}
.yf7{bottom:619.384181px;}
.y11e{bottom:621.004111px;}
.y42{bottom:627.486021px;}
.y87{bottom:628.387435px;}
.y63{bottom:629.283188px;}
.yf6{bottom:639.539874px;}
.y11d{bottom:641.165181px;}
.y3{bottom:643.319745px;}
.y1d{bottom:644.217919px;}
.yc2{bottom:645.485011px;}
.ya3{bottom:646.383186px;}
.y86{bottom:658.444555px;}
.y62{bottom:664.747297px;}
.y41{bottom:670.680657px;}
.yf5{bottom:670.864086px;}
.y11c{bottom:672.660435px;}
.y2{bottom:673.382190px;}
.y1c{bottom:675.183916px;}
.yc1{bottom:675.723875px;}
.ya2{bottom:676.622102px;}
.y85{bottom:688.865215px;}
.y61{bottom:700.202522px;}
.yc0{bottom:705.962792px;}
.y1b{bottom:706.144536px;}
.ya1{bottom:706.860966px;}
.y40{bottom:716.944138px;}
.y84{bottom:718.922282px;}
.y60{bottom:735.662211px;}
.ybf{bottom:736.022052px;}
.y1a{bottom:736.920226px;}
.ye4{bottom:739.802967px;}
.ya0{bottom:744.302453px;}
.y3f{bottom:747.364798px;}
.y83{bottom:749.161199px;}
.yfe{bottom:754.738463px;}
.y140{bottom:757.441600px;}
.ye3{bottom:759.965082px;}
.ybe{bottom:766.440572px;}
.y19{bottom:767.338746px;}
.y5f{bottom:771.126277px;}
.yfd{bottom:774.720973px;}
.y3e{bottom:777.424059px;}
.y82{bottom:779.400063px;}
.y9f{bottom:781.923544px;}
.y13f{bottom:787.680464px;}
.ye2{bottom:791.281776px;}
.yea{bottom:791.820691px;}
.ybd{bottom:796.499780px;}
.y18{bottom:798.304744px;}
.y114{bottom:804.959837px;}
.yfc{bottom:806.225833px;}
.y5e{bottom:806.759001px;}
.y3d{bottom:807.662975px;}
.y81{bottom:809.638979px;}
.ye9{bottom:811.982805px;}
.y9e{bottom:812.162408px;}
.y13e{bottom:818.637899px;}
.y113{bottom:825.121951px;}
.ybc{bottom:826.918326px;}
.y17{bottom:829.082522px;}
.y3c{bottom:837.901839px;}
.y80{bottom:839.877843px;}
.y9d{bottom:842.401325px;}
.ye8{bottom:843.479129px;}
.y5d{bottom:844.385264px;}
.y13d{bottom:849.603896px;}
.y112{bottom:856.618301px;}
.yba{bottom:856.986123px;}
.ybb{bottom:863.632149px;}
.y16{bottom:865.614408px;}
.y7f{bottom:870.125270px;}
.y9c{bottom:872.640189px;}
.y5c{bottom:878.937248px;}
.y13c{bottom:880.381701px;}
.y3b{bottom:883.796708px;}
.yb9{bottom:887.225013px;}
.y7e{bottom:900.184530px;}
.y9b{bottom:902.879079px;}
.y15{bottom:907.922184px;}
.y5b{bottom:908.459158px;}
.y13b{bottom:911.518765px;}
.y143{bottom:912.245873px;}
.yb8{bottom:917.463903px;}
.y13a{bottom:926.822134px;}
.y3a{bottom:930.064135px;}
.y7d{bottom:930.603050px;}
.y9a{bottom:932.938339px;}
.y142{bottom:938.524192px;}
.yb7{bottom:947.702767px;}
.y5a{bottom:951.662721px;}
.y39{bottom:958.499402px;}
.y7c{bottom:960.662310px;}
.y99{bottom:963.365396px;}
.yb6{bottom:977.762028px;}
.yf4{bottom:980.644769px;}
.y38{bottom:984.421195px;}
.y7b{bottom:990.901174px;}
.y59{bottom:997.924142px;}
.y98{bottom:1000.618691px;}
.yb5{bottom:1008.000918px;}
.y37{bottom:1010.520508px;}
.yf3{bottom:1010.704029px;}
.yd4{bottom:1017.359149px;}
.y7a{bottom:1021.140064px;}
.y58{bottom:1025.820827px;}
.y36{bottom:1036.442323px;}
.yd3{bottom:1037.521237px;}
.y97{bottom:1038.239808px;}
.yf2{bottom:1041.122549px;}
.y106{bottom:1044.898498px;}
.y57{bottom:1050.840960px;}
.y79{bottom:1051.378954px;}
.y35{bottom:1062.364116px;}
.y96{bottom:1068.478685px;}
.yd2{bottom:1069.017587px;}
.yf1{bottom:1071.181783px;}
.y56{bottom:1076.223174px;}
.y33{bottom:1076.578170px;}
.y31{bottom:1094.218089px;}
.y78{bottom:1097.104420px;}
.y141{bottom:1097.279953px;}
.y30{bottom:1097.999017px;}
.y13{bottom:1098.717562px;}
.y55{bottom:1101.420783px;}
.y139{bottom:1105.376014px;}
.y12{bottom:1118.879676px;}
.ha{height:16.202012px;}
.h8{height:19.433937px;}
.h9{height:19.443557px;}
.h34{height:33.952694px;}
.h5{height:42.059925px;}
.h25{height:46.699283px;}
.h7{height:49.442928px;}
.h2{height:50.674724px;}
.hb{height:53.398529px;}
.h4{height:53.412049px;}
.h35{height:56.867922px;}
.h24{height:57.850147px;}
.h11{height:69.665577px;}
.h2d{height:69.667176px;}
.he{height:69.668694px;}
.h10{height:69.670978px;}
.h1f{height:69.672669px;}
.h2e{height:69.677509px;}
.h2a{height:69.677946px;}
.hd{height:69.678134px;}
.h22{height:69.680062px;}
.h31{height:69.683933px;}
.h19{height:69.687122px;}
.h27{height:69.687931px;}
.h2b{height:69.688278px;}
.h17{height:69.690107px;}
.h29{height:69.692049px;}
.h1b{height:69.692544px;}
.h30{height:69.694206px;}
.h32{height:69.694544px;}
.h12{height:69.694633px;}
.h1a{height:69.695451px;}
.h14{height:69.696708px;}
.hf{height:69.698445px;}
.h18{height:69.698695px;}
.h28{height:69.698830px;}
.h20{height:69.701249px;}
.h26{height:69.702034px;}
.hc{height:69.705045px;}
.h2f{height:69.706218px;}
.h21{height:69.708145px;}
.h23{height:69.708815px;}
.h15{height:69.709474px;}
.h2c{height:69.716987px;}
.h16{height:69.717228px;}
.h1e{height:69.722122px;}
.h1c{height:69.722225px;}
.h33{height:69.723332px;}
.h13{height:69.724175px;}
.h6{height:71.958471px;}
.h1d{height:77.492536px;}
.h3{height:82.570304px;}
.h36{height:112.093441px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w8{width:7.376827px;}
.wa{width:7.383912px;}
.wd{width:7.383934px;}
.w3{width:8.819316px;}
.w6{width:8.821457px;}
.w9{width:39.063752px;}
.w4{width:46.799693px;}
.wb{width:61.201297px;}
.w7{width:63.359679px;}
.w2{width:75.960766px;}
.wc{width:110.519112px;}
.w5{width:113.941103px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:105.301462px;}
.x4{left:108.184210px;}
.x25{left:111.238031px;}
.x6{left:114.120785px;}
.x15{left:122.580114px;}
.x21{left:126.002485px;}
.x3b{left:132.118690px;}
.x3a{left:133.205069px;}
.x3{left:135.182168px;}
.x17{left:141.119335px;}
.x18{left:143.823085px;}
.x19{left:147.417927px;}
.x1d{left:150.478386px;}
.x1b{left:153.538844px;}
.xd{left:154.624630px;}
.x7{left:189.901908px;}
.x38{left:193.862479px;}
.x1c{left:201.964318px;}
.xf{left:217.981736px;}
.x1a{left:219.600517px;}
.x1f{left:221.943504px;}
.x1e{left:228.603232px;}
.x10{left:237.059239px;}
.x20{left:272.161224px;}
.x11{left:275.938386px;}
.x8{left:283.680949px;}
.xe{left:294.305176px;}
.x1{left:295.742292px;}
.x24{left:315.545120px;}
.x9{left:330.301012px;}
.x5{left:366.664669px;}
.x12{left:390.964176px;}
.x35{left:393.296429px;}
.x26{left:394.919068px;}
.x27{left:400.864105px;}
.x28{left:402.118888px;}
.x29{left:408.066702px;}
.x22{left:417.238531px;}
.x23{left:423.181853px;}
.x39{left:426.423879px;}
.x31{left:440.281596px;}
.x16{left:457.208241px;}
.xa{left:544.866661px;}
.x34{left:565.204097px;}
.x32{left:617.038888px;}
.x13{left:620.284528px;}
.x33{left:622.987303px;}
.x36{left:638.101048px;}
.x37{left:644.228343px;}
.xb{left:658.626020px;}
.x2d{left:718.387370px;}
.x2b{left:723.781845px;}
.x14{left:730.626143px;}
.x2e{left:751.504345px;}
.xc{left:755.280597px;}
.x2c{left:758.891202px;}
.x2a{left:785.168451px;}
.x30{left:790.562926px;}
.x2f{left:792.909989px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:55.689345pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:3.619345pt;}
.ls2{letter-spacing:4.258074pt;}
.ws1{word-spacing:-15.572336pt;}
.ws2{word-spacing:-12.925010pt;}
.ws3{word-spacing:-11.684209pt;}
.ws5{word-spacing:-10.433659pt;}
.ws4{word-spacing:-9.432027pt;}
.ws0{word-spacing:0.000000pt;}
._20{margin-left:-11.397885pt;}
._23{margin-left:-10.497526pt;}
._21{margin-left:-8.695512pt;}
._24{margin-left:-7.334549pt;}
._25{margin-left:-5.852796pt;}
._22{margin-left:-4.920190pt;}
._1f{margin-left:-3.680608pt;}
._2{margin-left:-1.929094pt;}
._0{margin-left:-0.936216pt;}
._1{width:1.248288pt;}
._26{width:2.927599pt;}
._3{width:4.360254pt;}
._4{width:5.606041pt;}
._2d{width:7.345766pt;}
._29{width:8.284483pt;}
._2a{width:9.340901pt;}
._30{width:10.464610pt;}
._2f{width:11.365151pt;}
._31{width:12.893894pt;}
._27{width:13.952188pt;}
._2e{width:16.818123pt;}
._32{width:18.375357pt;}
._35{width:19.307196pt;}
._28{width:20.368616pt;}
._2b{width:21.801271pt;}
._2c{width:23.101845pt;}
._3d{width:25.218432pt;}
._3c{width:26.410682pt;}
._34{width:34.138938pt;}
._33{width:35.064525pt;}
._1a{width:81.781974pt;}
._42{width:91.375969pt;}
._44{width:109.497166pt;}
._40{width:112.116445pt;}
._36{width:140.151027pt;}
._37{width:171.295699pt;}
._19{width:188.461617pt;}
._16{width:242.770294pt;}
._39{width:246.665807pt;}
._f{width:276.773695pt;}
._9{width:362.212543pt;}
._1e{width:391.378607pt;}
._11{width:403.385174pt;}
._18{width:407.602411pt;}
._c{width:414.224146pt;}
._17{width:436.399153pt;}
._38{width:480.873745pt;}
._a{width:492.668566pt;}
._12{width:510.834920pt;}
._e{width:522.919053pt;}
._6{width:525.099180pt;}
._41{width:530.456064pt;}
._b{width:576.674758pt;}
._1d{width:612.888984pt;}
._10{width:624.824422pt;}
._3f{width:657.053562pt;}
._1b{width:659.995206pt;}
._3b{width:661.512846pt;}
._1c{width:677.211318pt;}
._43{width:681.570015pt;}
._5{width:731.329199pt;}
._3e{width:746.396211pt;}
._d{width:799.608325pt;}
._7{width:842.799110pt;}
._3a{width:1190.972281pt;}
._8{width:1200.648107pt;}
._15{width:1882.065689pt;}
._14{width:1985.034353pt;}
._13{width:2069.685573pt;}
.fs5{font-size:41.734635pt;}
.fs2{font-size:51.700039pt;}
.fs0{font-size:62.289345pt;}
.fs4{font-size:67.272703pt;}
.fs3{font-size:88.451316pt;}
.fs1{font-size:104.023980pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:2.884150pt;}
.y2a{bottom:3.359839pt;}
.y32{bottom:3.360825pt;}
.y1{bottom:72.643887pt;}
.y14{bottom:72.647525pt;}
.y2f{bottom:95.525045pt;}
.yb4{bottom:143.842901pt;}
.yb3{bottom:149.747483pt;}
.y95{bottom:154.245705pt;}
.y54{bottom:155.046041pt;}
.y105{bottom:160.323822pt;}
.yb2{bottom:161.768540pt;}
.y77{bottom:161.925403pt;}
.ye1{bottom:166.406766pt;}
.yd1{bottom:167.667561pt;}
.y2e{bottom:170.883488pt;}
.y53{bottom:177.442375pt;}
.yd0{bottom:179.679977pt;}
.y94{bottom:181.286292pt;}
.y104{bottom:187.359675pt;}
.y11{bottom:190.562744pt;}
.yb0{bottom:190.719607pt;}
.ye0{bottom:193.285849pt;}
.y12b{bottom:194.721007pt;}
.y76{bottom:195.523520pt;}
.yb1{bottom:196.630122pt;}
.y2d{bottom:197.762479pt;}
.y52{bottom:199.684862pt;}
.y138{bottom:200.005527pt;}
.y93{bottom:208.003685pt;}
.y10{bottom:209.918899pt;}
.y103{bottom:214.086629pt;}
.yaf{bottom:217.598597pt;}
.ydf{bottom:220.164839pt;}
.y11b{bottom:220.801666pt;}
.y12a{bottom:221.766327pt;}
.y51{bottom:222.246830pt;}
.y2c{bottom:224.641469pt;}
.y111{bottom:226.086187pt;}
.y137{bottom:226.884610pt;}
.y75{bottom:227.028762pt;}
.y74{bottom:227.047134pt;}
.yf{bottom:229.127659pt;}
.yf0{bottom:233.129058pt;}
.y92{bottom:234.882675pt;}
.y102{bottom:238.565708pt;}
.yae{bottom:244.487055pt;}
.y50{bottom:244.643087pt;}
.yde{bottom:246.882233pt;}
.y11a{bottom:247.519060pt;}
.y129{bottom:248.488547pt;}
.y73{bottom:250.887103pt;}
.yef{bottom:251.040495pt;}
.ycf{bottom:251.520459pt;}
.y2b{bottom:252.005249pt;}
.y110{bottom:252.965177pt;}
.y136{bottom:253.763600pt;}
.ye{bottom:258.240230pt;}
.yfb{bottom:261.124932pt;}
.y91{bottom:261.761666pt;}
.y4f{bottom:267.047279pt;}
.y29{bottom:267.207876pt;}
.yad{bottom:271.366138pt;}
.y101{bottom:271.846102pt;}
.ydd{bottom:273.922820pt;}
.y119{bottom:274.569114pt;}
.y72{bottom:274.727072pt;}
.y128{bottom:275.367538pt;}
.yce{bottom:278.247413pt;}
.yee{bottom:279.045836pt;}
.y10f{bottom:279.844167pt;}
.y135{bottom:280.642591pt;}
.yd{bottom:285.280817pt;}
.yfa{bottom:288.003922pt;}
.y90{bottom:288.640749pt;}
.y28{bottom:289.282309pt;}
.y4e{bottom:289.289766pt;}
.y100{bottom:289.767007pt;}
.yac{bottom:298.083532pt;}
.y71{bottom:298.243554pt;}
.y118{bottom:298.725092pt;}
.ydc{bottom:300.640306pt;}
.y127{bottom:302.246528pt;}
.ycd{bottom:305.126403pt;}
.yf9{bottom:305.924827pt;}
.y10e{bottom:306.723250pt;}
.y134{bottom:307.521581pt;}
.y4d{bottom:311.686100pt;}
.yc{bottom:311.998303pt;}
.y8f{bottom:315.519739pt;}
.y27{bottom:316.645997pt;}
.yff{bottom:317.606017pt;}
.y70{bottom:322.087452pt;}
.yab{bottom:325.124119pt;}
.y126{bottom:326.720873pt;}
.ydb{bottom:327.528764pt;}
.ycc{bottom:332.005486pt;}
.y117{bottom:332.323853pt;}
.y10d{bottom:333.440644pt;}
.yf8{bottom:333.763837pt;}
.y4c{bottom:334.082357pt;}
.y133{bottom:334.239067pt;}
.yb{bottom:338.886761pt;}
.y26{bottom:339.366725pt;}
.y8e{bottom:342.408197pt;}
.y6f{bottom:345.765716pt;}
.y116{bottom:350.244758pt;}
.yaa{bottom:351.841559pt;}
.yda{bottom:354.407801pt;}
.y4b{bottom:356.486549pt;}
.ycb{bottom:358.884476pt;}
.y125{bottom:360.001267pt;}
.y10c{bottom:360.481231pt;}
.y132{bottom:361.289122pt;}
.y25{bottom:362.244315pt;}
.ya{bottom:365.765798pt;}
.y8d{bottom:369.125683pt;}
.y6e{bottom:369.601679pt;}
.ye7{bottom:373.607093pt;}
.y115{bottom:378.083768pt;}
.ya9{bottom:378.882146pt;}
.y4a{bottom:378.886812pt;}
.yd9{bottom:381.286791pt;}
.y24{bottom:384.965090pt;}
.yca{bottom:385.601870pt;}
.y124{bottom:386.880257pt;}
.y10b{bottom:387.198671pt;}
.y130{bottom:388.006562pt;}
.ye6{bottom:391.361667pt;}
.y9{bottom:392.644788pt;}
.y6d{bottom:393.445577pt;}
.y131{bottom:393.910615pt;}
.y8c{bottom:396.004673pt;}
.y49{bottom:401.283146pt;}
.ya8{bottom:405.599585pt;}
.y23{bottom:407.685817pt;}
.y10a{bottom:411.525666pt;}
.yc9{bottom:412.642457pt;}
.y123{bottom:413.759247pt;}
.y6c{bottom:417.109955pt;}
.y6b{bottom:417.123841pt;}
.ye5{bottom:419.362228pt;}
.y8{bottom:419.523824pt;}
.y12f{bottom:421.282175pt;}
.y8b{bottom:422.883663pt;}
.y22{bottom:435.044818pt;}
.yd8{bottom:438.884667pt;}
.ya7{bottom:439.041483pt;}
.yc8{bottom:439.359897pt;}
.y48{bottom:439.680934pt;}
.y122{bottom:440.647798pt;}
.y6a{bottom:440.949349pt;}
.y69{bottom:440.967739pt;}
.y109{bottom:444.967611pt;}
.y7{bottom:454.556448pt;}
.y12e{bottom:454.719340pt;}
.y21{bottom:462.560635pt;}
.y108{bottom:462.879048pt;}
.y8a{bottom:463.680484pt;}
.yc6{bottom:466.400484pt;}
.y121{bottom:467.365191pt;}
.yc7{bottom:472.309500pt;}
.yd7{bottom:472.483428pt;}
.y68{bottom:472.483495pt;}
.y12d{bottom:472.645025pt;}
.ya6{bottom:479.683659pt;}
.y47{bottom:480.799953pt;}
.yed{bottom:482.078340pt;}
.y20{bottom:490.247516pt;}
.yd6{bottom:490.404379pt;}
.y107{bottom:490.884343pt;}
.y6{bottom:491.045939pt;}
.yc5{bottom:493.117924pt;}
.y120{bottom:494.244228pt;}
.y46{bottom:498.082651pt;}
.yec{bottom:499.999245pt;}
.y12c{bottom:500.640805pt;}
.y67{bottom:503.994529pt;}
.y66{bottom:504.003180pt;}
.y89{bottom:504.808582pt;}
.y45{bottom:513.122640pt;}
.y1f{bottom:517.601783pt;}
.y5{bottom:518.081746pt;}
.yd5{bottom:518.243343pt;}
.y11f{bottom:518.723307pt;}
.yc4{bottom:520.006428pt;}
.ya5{bottom:520.966402pt;}
.y65{bottom:527.830689pt;}
.y64{bottom:527.847078pt;}
.yeb{bottom:528.004539pt;}
.y44{bottom:528.004854pt;}
.y88{bottom:531.526022pt;}
.y43{bottom:542.883138pt;}
.y4{bottom:544.803920pt;}
.y1e{bottom:545.122333pt;}
.yc3{bottom:546.885464pt;}
.ya4{bottom:547.845392pt;}
.yf7{bottom:550.563717pt;}
.y11e{bottom:552.003654pt;}
.y42{bottom:557.765352pt;}
.y87{bottom:558.566609pt;}
.y63{bottom:559.362834pt;}
.yf6{bottom:568.479888pt;}
.y11d{bottom:569.924606pt;}
.y3{bottom:571.839773pt;}
.y1d{bottom:572.638150pt;}
.yc2{bottom:573.764455pt;}
.ya3{bottom:574.562832pt;}
.y86{bottom:585.284048pt;}
.y62{bottom:590.886486pt;}
.y41{bottom:596.160584pt;}
.yf5{bottom:596.323632pt;}
.y11c{bottom:597.920386pt;}
.y2{bottom:598.561947pt;}
.y1c{bottom:600.163481pt;}
.yc1{bottom:600.643445pt;}
.ya2{bottom:601.441868pt;}
.y85{bottom:612.324635pt;}
.y61{bottom:622.402242pt;}
.yc0{bottom:627.522482pt;}
.y1b{bottom:627.684032pt;}
.ya1{bottom:628.320859pt;}
.y40{bottom:637.283678pt;}
.y84{bottom:639.042029pt;}
.y60{bottom:653.921966pt;}
.ybf{bottom:654.241824pt;}
.y1a{bottom:655.040201pt;}
.ye4{bottom:657.602638pt;}
.ya0{bottom:661.602181pt;}
.y3f{bottom:664.324265pt;}
.y83{bottom:665.921066pt;}
.yfe{bottom:670.878633pt;}
.y140{bottom:673.281422pt;}
.ye3{bottom:675.524517pt;}
.ybe{bottom:681.280508pt;}
.y19{bottom:682.078886pt;}
.y5f{bottom:685.445580pt;}
.yfd{bottom:688.640865pt;}
.y3e{bottom:691.043608pt;}
.y82{bottom:692.800056pt;}
.y9f{bottom:695.043151pt;}
.y13f{bottom:700.160412pt;}
.ye2{bottom:703.361578pt;}
.yea{bottom:703.840614pt;}
.ybd{bottom:707.999805pt;}
.y18{bottom:709.604216pt;}
.y114{bottom:715.519855pt;}
.yfc{bottom:716.645185pt;}
.y5e{bottom:717.119112pt;}
.y3d{bottom:717.922644pt;}
.y81{bottom:719.679092pt;}
.ye9{bottom:721.762493pt;}
.y9e{bottom:721.922141pt;}
.y13e{bottom:727.678132pt;}
.y113{bottom:733.441735pt;}
.ybc{bottom:735.038512pt;}
.y17{bottom:736.962242pt;}
.y3c{bottom:744.801634pt;}
.y80{bottom:746.558083pt;}
.y9d{bottom:748.801178pt;}
.ye8{bottom:749.759225pt;}
.y5d{bottom:750.564679pt;}
.y13d{bottom:755.203463pt;}
.y112{bottom:761.438490pt;}
.yba{bottom:761.765443pt;}
.ybb{bottom:767.673022pt;}
.y16{bottom:769.435029pt;}
.y7f{bottom:773.444684pt;}
.y9c{bottom:775.680168pt;}
.y5c{bottom:781.277554pt;}
.y13c{bottom:782.561512pt;}
.y3b{bottom:785.597074pt;}
.yb9{bottom:788.644456pt;}
.y7e{bottom:800.164027pt;}
.y9b{bottom:802.559181pt;}
.y15{bottom:807.041941pt;}
.y5b{bottom:807.519251pt;}
.y13b{bottom:810.238903pt;}
.y143{bottom:810.885220pt;}
.yb8{bottom:815.523470pt;}
.y13a{bottom:823.841897pt;}
.y3a{bottom:826.723675pt;}
.y7d{bottom:827.202711pt;}
.y9a{bottom:829.278524pt;}
.y142{bottom:834.243726pt;}
.yb7{bottom:842.402460pt;}
.y5a{bottom:845.922419pt;}
.y39{bottom:851.999468pt;}
.y7c{bottom:853.922054pt;}
.y99{bottom:856.324796pt;}
.yb6{bottom:869.121802pt;}
.yf4{bottom:871.684239pt;}
.y38{bottom:875.041062pt;}
.y7b{bottom:880.801044pt;}
.y59{bottom:887.043682pt;}
.y98{bottom:889.438836pt;}
.yb5{bottom:896.000816pt;}
.y37{bottom:898.240451pt;}
.yf3{bottom:898.403582pt;}
.yd4{bottom:904.319244pt;}
.y7a{bottom:907.680057pt;}
.y58{bottom:911.840735pt;}
.y36{bottom:921.282065pt;}
.yd3{bottom:922.241100pt;}
.y97{bottom:922.879829pt;}
.yf2{bottom:925.442266pt;}
.y106{bottom:928.798665pt;}
.y57{bottom:934.080853pt;}
.y79{bottom:934.559071pt;}
.y35{bottom:944.323659pt;}
.y96{bottom:949.758831pt;}
.yd2{bottom:950.237855pt;}
.yf1{bottom:952.161585pt;}
.y56{bottom:956.642821pt;}
.y33{bottom:956.958373pt;}
.y31{bottom:972.638301pt;}
.y78{bottom:975.203929pt;}
.y141{bottom:975.359959pt;}
.y30{bottom:975.999127pt;}
.y13{bottom:976.637833pt;}
.y55{bottom:979.040696pt;}
.y139{bottom:982.556457pt;}
.y12{bottom:994.559712pt;}
.ha{height:14.401788pt;}
.h8{height:17.274610pt;}
.h9{height:17.283161pt;}
.h34{height:30.180173pt;}
.h5{height:37.386600pt;}
.h25{height:41.510474pt;}
.h7{height:43.949269pt;}
.h2{height:45.044199pt;}
.hb{height:47.465359pt;}
.h4{height:47.477377pt;}
.h35{height:50.549264pt;}
.h24{height:51.422353pt;}
.h11{height:61.924957pt;}
.h2d{height:61.926379pt;}
.he{height:61.927728pt;}
.h10{height:61.929758pt;}
.h1f{height:61.931261pt;}
.h2e{height:61.935563pt;}
.h2a{height:61.935952pt;}
.hd{height:61.936119pt;}
.h22{height:61.937833pt;}
.h31{height:61.941273pt;}
.h19{height:61.944109pt;}
.h27{height:61.944827pt;}
.h2b{height:61.945136pt;}
.h17{height:61.946762pt;}
.h29{height:61.948488pt;}
.h1b{height:61.948928pt;}
.h30{height:61.950405pt;}
.h32{height:61.950705pt;}
.h12{height:61.950784pt;}
.h1a{height:61.951512pt;}
.h14{height:61.952629pt;}
.hf{height:61.954173pt;}
.h18{height:61.954395pt;}
.h28{height:61.954516pt;}
.h20{height:61.956666pt;}
.h26{height:61.957364pt;}
.hc{height:61.960040pt;}
.h2f{height:61.961083pt;}
.h21{height:61.962795pt;}
.h23{height:61.963391pt;}
.h15{height:61.963977pt;}
.h2c{height:61.970655pt;}
.h16{height:61.970869pt;}
.h1e{height:61.975219pt;}
.h1c{height:61.975311pt;}
.h33{height:61.976295pt;}
.h13{height:61.977044pt;}
.h6{height:63.963085pt;}
.h1d{height:68.882255pt;}
.h3{height:73.395826pt;}
.h36{height:99.638614pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w8{width:6.557180pt;}
.wa{width:6.563478pt;}
.wd{width:6.563497pt;}
.w3{width:7.839392pt;}
.w6{width:7.841295pt;}
.w9{width:34.723335pt;}
.w4{width:41.599727pt;}
.wb{width:54.401153pt;}
.w7{width:56.319715pt;}
.w2{width:67.520681pt;}
.wc{width:98.239211pt;}
.w5{width:101.280980pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:93.601300pt;}
.x4{left:96.163742pt;}
.x25{left:98.878250pt;}
.x6{left:101.440698pt;}
.x15{left:108.960102pt;}
.x21{left:112.002209pt;}
.x3b{left:117.438835pt;}
.x3a{left:118.404506pt;}
.x3{left:120.161928pt;}
.x17{left:125.439409pt;}
.x18{left:127.842742pt;}
.x19{left:131.038157pt;}
.x1d{left:133.758565pt;}
.x1b{left:136.478973pt;}
.xd{left:137.444115pt;}
.x7{left:168.801696pt;}
.x38{left:172.322204pt;}
.x1c{left:179.523838pt;}
.xf{left:193.761543pt;}
.x1a{left:195.200460pt;}
.x1f{left:197.283114pt;}
.x1e{left:203.202873pt;}
.x10{left:210.719324pt;}
.x20{left:241.921088pt;}
.x11{left:245.278566pt;}
.x8{left:252.160844pt;}
.xe{left:261.604601pt;}
.x1{left:262.882037pt;}
.x24{left:280.484552pt;}
.x9{left:293.600900pt;}
.x5{left:325.924151pt;}
.x12{left:347.523712pt;}
.x35{left:349.596826pt;}
.x26{left:351.039172pt;}
.x27{left:356.323648pt;}
.x28{left:357.439012pt;}
.x29{left:362.725957pt;}
.x22{left:370.878694pt;}
.x23{left:376.161647pt;}
.x39{left:379.043448pt;}
.x31{left:391.361419pt;}
.x16{left:406.407325pt;}
.xa{left:484.325921pt;}
.x34{left:502.403642pt;}
.x32{left:548.479012pt;}
.x13{left:551.364025pt;}
.x33{left:553.766491pt;}
.x36{left:567.200932pt;}
.x37{left:572.647416pt;}
.xb{left:585.445351pt;}
.x2d{left:638.566551pt;}
.x2b{left:643.361640pt;}
.x14{left:649.445460pt;}
.x2e{left:668.003862pt;}
.xc{left:671.360531pt;}
.x2c{left:674.569957pt;}
.x2a{left:697.927512pt;}
.x30{left:702.722601pt;}
.x2f{left:704.808879pt;}
}




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