
    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_fc276d0cba05785df6dcb117.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.740723;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_eeaeb22aec05ec95c61b5ebe.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.730957;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_7f9b073064055b905c01deb3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.138250;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_eb3ce59aa212df0ece671756.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.996000;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_108d6181cdd1174fe120302d.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_cf3d37b0ea73dce2d123792a.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_8b6191e985fdcf9e8514c7ee.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.995000;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_42318734b6388c0f8a52588e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.726000;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.176303,-0.176303,0.176777,0.176777,0,0);-ms-transform:matrix(0.176303,-0.176303,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176303,-0.176303,0.176777,0.176777,0,0);}
.m1{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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-36.174602px;}
.v3{vertical-align:-25.839018px;}
.v4{vertical-align:-22.768069px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:36.174602px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-410.904449px;}
.ws7{word-spacing:-31.680001px;}
.ws3{word-spacing:-15.642000px;}
.ws1{word-spacing:-14.220000px;}
.ws9{word-spacing:-13.200000px;}
.ws2{word-spacing:-10.080000px;}
.ws6{word-spacing:-10.001953px;}
.ws5{word-spacing:-7.200000px;}
.ws4{word-spacing:-0.066000px;}
.ws8{word-spacing:0.000000px;}
._4{margin-left:-9.426584px;}
._22{margin-left:-7.539382px;}
._3{margin-left:-5.974153px;}
._27{margin-left:-4.700905px;}
._2{margin-left:-3.508517px;}
._0{margin-left:-1.999821px;}
._1{width:1.241867px;}
._1c{width:2.464453px;}
._7{width:4.335409px;}
._8{width:5.472406px;}
._6{width:8.948938px;}
._26{width:9.952587px;}
._1f{width:13.164191px;}
._5{width:14.207447px;}
._f{width:17.502903px;}
._e{width:18.594646px;}
._b{width:22.045427px;}
._c{width:23.251822px;}
._9{width:26.831755px;}
._a{width:27.848587px;}
._d{width:31.457444px;}
._24{width:32.461076px;}
._11{width:35.923567px;}
._10{width:40.350412px;}
._12{width:41.380021px;}
._16{width:44.082962px;}
._17{width:45.715661px;}
._1e{width:48.672065px;}
._1a{width:50.165418px;}
._19{width:53.200977px;}
._15{width:54.575444px;}
._13{width:58.373682px;}
._14{width:59.431345px;}
._1d{width:62.468981px;}
._18{width:63.792615px;}
._1b{width:67.354741px;}
._21{width:68.439649px;}
._25{width:71.246710px;}
._20{width:72.737206px;}
._23{width:77.349543px;}
.fc5{color:transparent;}
.fc4{color:rgb(17,85,204);}
.fc2{color:rgb(27,28,29);}
.fc3{color:rgb(102,102,102);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(232,234,237);}
.fs7{font-size:36.000000px;}
.fs5{font-size:50.399999px;}
.fs2{font-size:59.999999px;}
.fs6{font-size:66.000002px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:83.999997px;}
.fs3{font-size:108.000000px;}
.fs0{font-size:547.872598px;}
.y0{bottom:0.000000px;}
.y7{bottom:15.281261px;}
.y1f{bottom:26.291970px;}
.y8{bottom:29.163596px;}
.ye8{bottom:29.257061px;}
.y6c{bottom:29.257427px;}
.y2e{bottom:29.257518px;}
.y6{bottom:37.792511px;}
.y1e{bottom:47.824440px;}
.y5{bottom:60.303761px;}
.y1d{bottom:69.356910px;}
.yb4{bottom:76.030980px;}
.y6a{bottom:76.031175px;}
.y2b{bottom:76.031355px;}
.y32{bottom:87.356912px;}
.y1c{bottom:90.889470px;}
.y122{bottom:98.782935px;}
.y103{bottom:103.526595px;}
.y31{bottom:108.889382px;}
.y57{bottom:111.209505px;}
.y158{bottom:112.057350px;}
.y1b{bottom:112.421940px;}
.y98{bottom:114.124365px;}
.ye6{bottom:114.124740px;}
.y2a{bottom:114.283125px;}
.y121{bottom:118.357650px;}
.yda{bottom:125.059425px;}
.y102{bottom:125.059800px;}
.y30{bottom:130.421945px;}
.y157{bottom:131.632800px;}
.y56{bottom:132.742170px;}
.y1a{bottom:133.954500px;}
.ye5{bottom:135.656835px;}
.yb3{bottom:135.657210px;}
.y120{bottom:137.932350px;}
.yd9{bottom:146.592270px;}
.y156{bottom:151.207500px;}
.y97{bottom:153.657210px;}
.y55{bottom:154.274640px;}
.y19{bottom:155.486925px;}
.y29{bottom:157.045485px;}
.yb2{bottom:157.189680px;}
.y11f{bottom:157.507800px;}
.y3{bottom:158.494697px;}
.y69{bottom:161.339580px;}
.yd8{bottom:168.124740px;}
.y155{bottom:170.782935px;}
.y96{bottom:175.189680px;}
.y54{bottom:175.807110px;}
.y28{bottom:176.839690px;}
.y18{bottom:177.019440px;}
.y11e{bottom:177.082500px;}
.yb1{bottom:178.721775px;}
.ye4{bottom:178.722150px;}
.y68{bottom:182.872230px;}
.y101{bottom:189.656475px;}
.yd7{bottom:189.656835px;}
.y154{bottom:190.357650px;}
.y11d{bottom:196.657935px;}
.y95{bottom:196.721775px;}
.y53{bottom:197.339580px;}
.y17{bottom:198.551970px;}
.ye3{bottom:200.254245px;}
.yb0{bottom:200.254620px;}
.y20{bottom:202.379591px;}
.y67{bottom:204.404520px;}
.y153{bottom:209.932350px;}
.yd6{bottom:211.189680px;}
.y11c{bottom:216.232650px;}
.y94{bottom:218.254620px;}
.y52{bottom:218.872230px;}
.y16{bottom:220.084485px;}
.y21{bottom:221.186933px;}
.yaf{bottom:221.787090px;}
.y66{bottom:225.937170px;}
.y152{bottom:229.507800px;}
.yd5{bottom:232.722150px;}
.y11b{bottom:235.807350px;}
.y93{bottom:239.787090px;}
.y51{bottom:240.404520px;}
.y22{bottom:240.761908px;}
.y15{bottom:241.616955px;}
.yae{bottom:243.319560px;}
.y65{bottom:247.469640px;}
.y151{bottom:249.082500px;}
.yd4{bottom:254.254245px;}
.y11a{bottom:255.382800px;}
.y23{bottom:260.336892px;}
.y14{bottom:263.149425px;}
.yad{bottom:264.852030px;}
.y150{bottom:268.657935px;}
.y64{bottom:269.002110px;}
.y119{bottom:274.957500px;}
.yd3{bottom:275.787090px;}
.y92{bottom:279.319560px;}
.y24{bottom:279.911878px;}
.y50{bottom:279.937170px;}
.y13{bottom:284.681985px;}
.yac{bottom:286.384500px;}
.y14f{bottom:288.232650px;}
.y63{bottom:290.534775px;}
.y10a{bottom:290.553286px;}
.y1{bottom:290.554021px;}
.y2c{bottom:290.554216px;}
.y118{bottom:294.532935px;}
.yd2{bottom:297.319560px;}
.y25{bottom:300.254591px;}
.y91{bottom:300.852030px;}
.y4f{bottom:301.469640px;}
.y12{bottom:306.214455px;}
.y14e{bottom:307.807350px;}
.y62{bottom:312.067245px;}
.y117{bottom:314.107650px;}
.yd1{bottom:318.852030px;}
.y26{bottom:319.061933px;}
.y90{bottom:322.384500px;}
.y4e{bottom:323.002110px;}
.yab{bottom:325.916970px;}
.y14d{bottom:327.382800px;}
.y11{bottom:327.746970px;}
.y61{bottom:333.599520px;}
.y116{bottom:333.682350px;}
.y27{bottom:339.404647px;}
.yd0{bottom:340.384500px;}
.y8f{bottom:343.916970px;}
.y4d{bottom:344.534775px;}
.y14c{bottom:346.957500px;}
.yaa{bottom:347.449440px;}
.y10{bottom:349.279440px;}
.y115{bottom:353.257800px;}
.ycf{bottom:361.916970px;}
.y8e{bottom:365.449440px;}
.y4c{bottom:366.067245px;}
.y14b{bottom:366.532935px;}
.ya9{bottom:368.981910px;}
.y114{bottom:372.832500px;}
.y60{bottom:373.132185px;}
.y100{bottom:379.916970px;}
.ye{bottom:382.996950px;}
.yce{bottom:383.449440px;}
.y14a{bottom:386.107650px;}
.y8d{bottom:386.981910px;}
.y4b{bottom:387.599520px;}
.ya8{bottom:390.514380px;}
.yf{bottom:392.041845px;}
.y113{bottom:392.407935px;}
.yff{bottom:401.449440px;}
.ycd{bottom:404.981910px;}
.y149{bottom:405.682350px;}
.y8c{bottom:408.514380px;}
.y4a{bottom:409.132185px;}
.y112{bottom:411.982650px;}
.ya7{bottom:412.046850px;}
.y5f{bottom:412.664655px;}
.yfe{bottom:422.981910px;}
.y148{bottom:425.257800px;}
.ycc{bottom:426.514380px;}
.y8b{bottom:430.046850px;}
.y49{bottom:430.664655px;}
.y111{bottom:431.557350px;}
.ya6{bottom:433.579320px;}
.yfd{bottom:444.514380px;}
.y147{bottom:444.832500px;}
.ycb{bottom:448.046850px;}
.y8a{bottom:451.579320px;}
.ye2{bottom:451.579695px;}
.y48{bottom:452.197125px;}
.ya5{bottom:455.112165px;}
.y146{bottom:464.407935px;}
.yfc{bottom:466.046850px;}
.yca{bottom:469.579320px;}
.y89{bottom:473.112165px;}
.y47{bottom:473.729595px;}
.ya4{bottom:476.644260px;}
.y145{bottom:483.982650px;}
.yfb{bottom:487.579695px;}
.yc9{bottom:491.112165px;}
.y88{bottom:494.644260px;}
.y46{bottom:495.262065px;}
.ya3{bottom:498.177105px;}
.y144{bottom:503.557350px;}
.yfa{bottom:509.111790px;}
.yc8{bottom:512.644260px;}
.y87{bottom:516.177105px;}
.y45{bottom:516.794715px;}
.ya2{bottom:519.709575px;}
.y143{bottom:523.132800px;}
.yf9{bottom:530.644260px;}
.yc7{bottom:534.177105px;}
.y86{bottom:537.709575px;}
.y44{bottom:538.327185px;}
.ya1{bottom:541.242045px;}
.y142{bottom:542.707500px;}
.yf8{bottom:552.177105px;}
.y110{bottom:552.177465px;}
.yc6{bottom:555.709575px;}
.y85{bottom:559.242045px;}
.y5e{bottom:559.859475px;}
.y141{bottom:562.282935px;}
.ya0{bottom:562.774515px;}
.yf7{bottom:573.709935px;}
.yc5{bottom:577.242045px;}
.y43{bottom:577.859475px;}
.y84{bottom:580.774515px;}
.y5d{bottom:581.392125px;}
.y140{bottom:581.857650px;}
.yf6{bottom:595.241685px;}
.yc4{bottom:598.774515px;}
.y42{bottom:599.392125px;}
.y13f{bottom:601.432350px;}
.y83{bottom:602.306985px;}
.y5c{bottom:602.924595px;}
.y10f{bottom:616.774155px;}
.yf5{bottom:616.774515px;}
.yc3{bottom:620.306985px;}
.y41{bottom:620.924595px;}
.y13e{bottom:621.007800px;}
.y82{bottom:623.839455px;}
.y5b{bottom:624.457065px;}
.yf4{bottom:638.307345px;}
.y13d{bottom:640.582500px;}
.y9f{bottom:641.839455px;}
.y40{bottom:642.457065px;}
.ye1{bottom:645.371925px;}
.y5a{bottom:645.989730px;}
.yf3{bottom:659.839095px;}
.y13c{bottom:660.157935px;}
.y81{bottom:663.371925px;}
.y3f{bottom:663.989730px;}
.ye0{bottom:666.904770px;}
.y59{bottom:667.522200px;}
.y10e{bottom:677.839095px;}
.y13b{bottom:679.732650px;}
.yf2{bottom:681.371925px;}
.y80{bottom:684.904770px;}
.y3e{bottom:685.522200px;}
.ydf{bottom:688.436865px;}
.y13a{bottom:699.307350px;}
.y10d{bottom:699.372300px;}
.y109{bottom:702.904770px;}
.y7f{bottom:706.436865px;}
.y3d{bottom:707.054670px;}
.y139{bottom:718.882800px;}
.yf1{bottom:720.904770px;}
.y108{bottom:724.437240px;}
.y9e{bottom:727.969710px;}
.y3c{bottom:728.587140px;}
.y138{bottom:738.457500px;}
.yf0{bottom:742.437240px;}
.y107{bottom:745.969335px;}
.y7e{bottom:745.969710px;}
.y9d{bottom:749.502000px;}
.yc2{bottom:749.502180px;}
.y3b{bottom:750.119610px;}
.y137{bottom:758.032935px;}
.y10c{bottom:763.968975px;}
.yef{bottom:763.969335px;}
.y106{bottom:767.502180px;}
.y9c{bottom:771.034275px;}
.y3a{bottom:771.652080px;}
.y136{bottom:777.607650px;}
.y7d{bottom:785.502000px;}
.yee{bottom:785.502180px;}
.y105{bottom:789.034650px;}
.y9b{bottom:792.567120px;}
.y39{bottom:793.184550px;}
.y135{bottom:797.182350px;}
.y7c{bottom:807.034275px;}
.yed{bottom:807.034650px;}
.y104{bottom:810.566745px;}
.yde{bottom:810.567120px;}
.y9a{bottom:814.099410px;}
.yc1{bottom:814.099590px;}
.y38{bottom:814.717020px;}
.y134{bottom:816.757800px;}
.yec{bottom:828.566745px;}
.y7b{bottom:828.567120px;}
.yc0{bottom:835.632060px;}
.y37{bottom:836.249670px;}
.y133{bottom:836.332500px;}
.yd{bottom:841.397998px;}
.y7a{bottom:850.099410px;}
.ydd{bottom:850.099590px;}
.y99{bottom:853.632060px;}
.y132{bottom:855.907935px;}
.ybf{bottom:857.164530px;}
.y36{bottom:857.782140px;}
.y79{bottom:871.632060px;}
.yc{bottom:872.913765px;}
.y131{bottom:875.482650px;}
.ybe{bottom:878.697000px;}
.y35{bottom:879.314610px;}
.y78{bottom:893.164530px;}
.y130{bottom:895.057350px;}
.y58{bottom:897.314610px;}
.y12f{bottom:914.632800px;}
.y77{bottom:914.697000px;}
.ybd{bottom:918.229470px;}
.y34{bottom:918.847275px;}
.yb{bottom:925.392028px;}
.y12e{bottom:934.207500px;}
.y76{bottom:936.229470px;}
.ybc{bottom:939.761940px;}
.y12d{bottom:953.782935px;}
.ydc{bottom:957.761940px;}
.y75{bottom:957.762120px;}
.ybb{bottom:961.294410px;}
.y33{bottom:961.609530px;}
.ya{bottom:965.912279px;}
.y12c{bottom:973.357650px;}
.y74{bottom:979.294410px;}
.yba{bottom:982.826880px;}
.y12b{bottom:992.932350px;}
.y2f{bottom:996.225037px;}
.y73{bottom:1000.826883px;}
.y9{bottom:1006.432515px;}
.y12a{bottom:1012.507793px;}
.yb9{bottom:1022.359353px;}
.y72{bottom:1022.359536px;}
.y129{bottom:1032.082500px;}
.y2{bottom:1033.621513px;}
.y71{bottom:1043.891825px;}
.yeb{bottom:1043.892191px;}
.y128{bottom:1051.657940px;}
.yb8{bottom:1061.891825px;}
.yea{bottom:1065.424295px;}
.y70{bottom:1065.424661px;}
.y127{bottom:1071.232647px;}
.y4{bottom:1079.668876px;}
.yb7{bottom:1083.424661px;}
.ydb{bottom:1086.956766px;}
.y6f{bottom:1086.956949px;}
.y126{bottom:1090.807353px;}
.yb6{bottom:1104.956766px;}
.y6e{bottom:1108.489602px;}
.y125{bottom:1110.382793px;}
.yb5{bottom:1126.489602px;}
.y10b{bottom:1126.489968px;}
.y124{bottom:1129.957500px;}
.y6d{bottom:1148.022074px;}
.ye9{bottom:1148.022440px;}
.y123{bottom:1149.532940px;}
.y2d{bottom:1164.637482px;}
.y6b{bottom:1164.637573px;}
.ye7{bottom:1164.637939px;}
.hc{height:25.416000px;}
.hd{height:25.875000px;}
.h10{height:42.359999px;}
.hf{height:43.124999px;}
.hb{height:46.596001px;}
.h13{height:46.794001px;}
.h5{height:50.954999px;}
.h3{height:51.750000px;}
.ha{height:56.050501px;}
.h8{height:71.756981px;}
.h7{height:71.757002px;}
.h4{height:83.283761px;}
.h16{height:91.135980px;}
.h14{height:91.136175px;}
.h6{height:91.719000px;}
.h17{height:98.362061px;}
.h15{height:98.362427px;}
.h11{height:98.362518px;}
.h12{height:168.412445px;}
.he{height:190.909515px;}
.h2{height:229.378487px;}
.h1{height:398.866233px;}
.h9{height:430.032345px;}
.h0{height:1263.000000px;}
.w2{width:359.999970px;}
.w3{width:360.000045px;}
.w5{width:446.164350px;}
.w6{width:447.085650px;}
.w4{width:721.125000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x3{left:7.875000px;}
.xc{left:21.375000px;}
.x10{left:27.000000px;}
.x12{left:48.375000px;}
.x7{left:72.800783px;}
.x2{left:85.039376px;}
.x6{left:86.370340px;}
.x11{left:106.414376px;}
.x5{left:109.491188px;}
.xa{left:111.765688px;}
.x9{left:122.457668px;}
.x8{left:154.223065px;}
.x1{left:175.749591px;}
.xb{left:257.022334px;}
.xe{left:260.268082px;}
.x4{left:445.039350px;}
.xf{left:446.164350px;}
.xd{left:786.282554px;}
@media print{
.v2{vertical-align:-32.155202pt;}
.v3{vertical-align:-22.968016pt;}
.v4{vertical-align:-20.238284pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:32.155202pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-365.248399pt;}
.ws7{word-spacing:-28.160001pt;}
.ws3{word-spacing:-13.904000pt;}
.ws1{word-spacing:-12.640000pt;}
.ws9{word-spacing:-11.733334pt;}
.ws2{word-spacing:-8.960000pt;}
.ws6{word-spacing:-8.890625pt;}
.ws5{word-spacing:-6.400000pt;}
.ws4{word-spacing:-0.058667pt;}
.ws8{word-spacing:0.000000pt;}
._4{margin-left:-8.379186pt;}
._22{margin-left:-6.701673pt;}
._3{margin-left:-5.310358pt;}
._27{margin-left:-4.178582pt;}
._2{margin-left:-3.118681pt;}
._0{margin-left:-1.777619pt;}
._1{width:1.103882pt;}
._1c{width:2.190624pt;}
._7{width:3.853697pt;}
._8{width:4.864361pt;}
._6{width:7.954612pt;}
._26{width:8.846744pt;}
._1f{width:11.701503pt;}
._5{width:12.628842pt;}
._f{width:15.558136pt;}
._e{width:16.528574pt;}
._b{width:19.595935pt;}
._c{width:20.668287pt;}
._9{width:23.850449pt;}
._a{width:24.754300pt;}
._d{width:27.962172pt;}
._24{width:28.854290pt;}
._11{width:31.932059pt;}
._10{width:35.867033pt;}
._12{width:36.782241pt;}
._16{width:39.184855pt;}
._17{width:40.636143pt;}
._1e{width:43.264058pt;}
._1a{width:44.591483pt;}
._19{width:47.289757pt;}
._15{width:48.511505pt;}
._13{width:51.887718pt;}
._14{width:52.827862pt;}
._1d{width:55.527983pt;}
._18{width:56.704546pt;}
._1b{width:59.870881pt;}
._21{width:60.835244pt;}
._25{width:63.330409pt;}
._20{width:64.655294pt;}
._23{width:68.755149pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:44.799999pt;}
.fs2{font-size:53.333332pt;}
.fs6{font-size:58.666668pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.666664pt;}
.fs3{font-size:96.000000pt;}
.fs0{font-size:486.997865pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:13.583343pt;}
.y1f{bottom:23.370640pt;}
.y8{bottom:25.923197pt;}
.ye8{bottom:26.006276pt;}
.y6c{bottom:26.006602pt;}
.y2e{bottom:26.006683pt;}
.y6{bottom:33.593343pt;}
.y1e{bottom:42.510614pt;}
.y5{bottom:53.603343pt;}
.y1d{bottom:61.650587pt;}
.yb4{bottom:67.583094pt;}
.y6a{bottom:67.583267pt;}
.y2b{bottom:67.583427pt;}
.y32{bottom:77.650588pt;}
.y1c{bottom:80.790640pt;}
.y122{bottom:87.807054pt;}
.y103{bottom:92.023640pt;}
.y31{bottom:96.790562pt;}
.y57{bottom:98.852894pt;}
.y158{bottom:99.606534pt;}
.y1b{bottom:99.930614pt;}
.y98{bottom:101.443880pt;}
.ye6{bottom:101.444214pt;}
.y2a{bottom:101.585000pt;}
.y121{bottom:105.206800pt;}
.yda{bottom:111.163934pt;}
.y102{bottom:111.164267pt;}
.y30{bottom:115.930618pt;}
.y157{bottom:117.006934pt;}
.y56{bottom:117.993040pt;}
.y1a{bottom:119.070667pt;}
.ye5{bottom:120.583854pt;}
.yb3{bottom:120.584187pt;}
.y120{bottom:122.606534pt;}
.yd9{bottom:130.304240pt;}
.y156{bottom:134.406667pt;}
.y97{bottom:136.584187pt;}
.y55{bottom:137.133014pt;}
.y19{bottom:138.210600pt;}
.y29{bottom:139.595987pt;}
.yb2{bottom:139.724160pt;}
.y11f{bottom:140.006934pt;}
.y3{bottom:140.884175pt;}
.y69{bottom:143.412960pt;}
.yd8{bottom:149.444214pt;}
.y155{bottom:151.807054pt;}
.y96{bottom:155.724160pt;}
.y54{bottom:156.272987pt;}
.y28{bottom:157.190836pt;}
.y18{bottom:157.350614pt;}
.y11e{bottom:157.406667pt;}
.yb1{bottom:158.863800pt;}
.ye4{bottom:158.864134pt;}
.y68{bottom:162.553094pt;}
.y101{bottom:168.583534pt;}
.yd7{bottom:168.583854pt;}
.y154{bottom:169.206800pt;}
.y11d{bottom:174.807054pt;}
.y95{bottom:174.863800pt;}
.y53{bottom:175.412960pt;}
.y17{bottom:176.490640pt;}
.ye3{bottom:178.003774pt;}
.yb0{bottom:178.004107pt;}
.y20{bottom:179.892970pt;}
.y67{bottom:181.692907pt;}
.y153{bottom:186.606534pt;}
.yd6{bottom:187.724160pt;}
.y11c{bottom:192.206800pt;}
.y94{bottom:194.004107pt;}
.y52{bottom:194.553094pt;}
.y16{bottom:195.630654pt;}
.y21{bottom:196.610607pt;}
.yaf{bottom:197.144080pt;}
.y66{bottom:200.833040pt;}
.y152{bottom:204.006934pt;}
.yd5{bottom:206.864134pt;}
.y11b{bottom:209.606534pt;}
.y93{bottom:213.144080pt;}
.y51{bottom:213.692907pt;}
.y22{bottom:214.010585pt;}
.y15{bottom:214.770627pt;}
.yae{bottom:216.284054pt;}
.y65{bottom:219.973014pt;}
.y151{bottom:221.406667pt;}
.yd4{bottom:226.003774pt;}
.y11a{bottom:227.006934pt;}
.y23{bottom:231.410571pt;}
.y14{bottom:233.910600pt;}
.yad{bottom:235.424027pt;}
.y150{bottom:238.807054pt;}
.y64{bottom:239.112987pt;}
.y119{bottom:244.406667pt;}
.yd3{bottom:245.144080pt;}
.y92{bottom:248.284054pt;}
.y24{bottom:248.810558pt;}
.y50{bottom:248.833040pt;}
.y13{bottom:253.050654pt;}
.yac{bottom:254.564000pt;}
.y14f{bottom:256.206800pt;}
.y63{bottom:258.253134pt;}
.y10a{bottom:258.269588pt;}
.y1{bottom:258.270241pt;}
.y2c{bottom:258.270415pt;}
.y118{bottom:261.807054pt;}
.yd2{bottom:264.284054pt;}
.y25{bottom:266.892970pt;}
.y91{bottom:267.424027pt;}
.y4f{bottom:267.973014pt;}
.y12{bottom:272.190627pt;}
.y14e{bottom:273.606534pt;}
.y62{bottom:277.393107pt;}
.y117{bottom:279.206800pt;}
.yd1{bottom:283.424027pt;}
.y26{bottom:283.610607pt;}
.y90{bottom:286.564000pt;}
.y4e{bottom:287.112987pt;}
.yab{bottom:289.703974pt;}
.y14d{bottom:291.006934pt;}
.y11{bottom:291.330640pt;}
.y61{bottom:296.532907pt;}
.y116{bottom:296.606534pt;}
.y27{bottom:301.693019pt;}
.yd0{bottom:302.564000pt;}
.y8f{bottom:305.703974pt;}
.y4d{bottom:306.253134pt;}
.y14c{bottom:308.406667pt;}
.yaa{bottom:308.843947pt;}
.y10{bottom:310.470614pt;}
.y115{bottom:314.006934pt;}
.ycf{bottom:321.703974pt;}
.y8e{bottom:324.843947pt;}
.y4c{bottom:325.393107pt;}
.y14b{bottom:325.807054pt;}
.ya9{bottom:327.983920pt;}
.y114{bottom:331.406667pt;}
.y60{bottom:331.673054pt;}
.y100{bottom:337.703974pt;}
.ye{bottom:340.441733pt;}
.yce{bottom:340.843947pt;}
.y14a{bottom:343.206800pt;}
.y8d{bottom:343.983920pt;}
.y4b{bottom:344.532907pt;}
.ya8{bottom:347.123894pt;}
.yf{bottom:348.481640pt;}
.y113{bottom:348.807054pt;}
.yff{bottom:356.843947pt;}
.ycd{bottom:359.983920pt;}
.y149{bottom:360.606534pt;}
.y8c{bottom:363.123894pt;}
.y4a{bottom:363.673054pt;}
.y112{bottom:366.206800pt;}
.ya7{bottom:366.263867pt;}
.y5f{bottom:366.813027pt;}
.yfe{bottom:375.983920pt;}
.y148{bottom:378.006934pt;}
.ycc{bottom:379.123894pt;}
.y8b{bottom:382.263867pt;}
.y49{bottom:382.813027pt;}
.y111{bottom:383.606534pt;}
.ya6{bottom:385.403840pt;}
.yfd{bottom:395.123894pt;}
.y147{bottom:395.406667pt;}
.ycb{bottom:398.263867pt;}
.y8a{bottom:401.403840pt;}
.ye2{bottom:401.404174pt;}
.y48{bottom:401.953000pt;}
.ya5{bottom:404.544147pt;}
.y146{bottom:412.807054pt;}
.yfc{bottom:414.263867pt;}
.yca{bottom:417.403840pt;}
.y89{bottom:420.544147pt;}
.y47{bottom:421.092974pt;}
.ya4{bottom:423.683787pt;}
.y145{bottom:430.206800pt;}
.yfb{bottom:433.404174pt;}
.yc9{bottom:436.544147pt;}
.y88{bottom:439.683787pt;}
.y46{bottom:440.232947pt;}
.ya3{bottom:442.824094pt;}
.y144{bottom:447.606534pt;}
.yfa{bottom:452.543814pt;}
.yc8{bottom:455.683787pt;}
.y87{bottom:458.824094pt;}
.y45{bottom:459.373080pt;}
.ya2{bottom:461.964067pt;}
.y143{bottom:465.006934pt;}
.yf9{bottom:471.683787pt;}
.yc7{bottom:474.824094pt;}
.y86{bottom:477.964067pt;}
.y44{bottom:478.513054pt;}
.ya1{bottom:481.104040pt;}
.y142{bottom:482.406667pt;}
.yf8{bottom:490.824094pt;}
.y110{bottom:490.824414pt;}
.yc6{bottom:493.964067pt;}
.y85{bottom:497.104040pt;}
.y5e{bottom:497.652867pt;}
.y141{bottom:499.807054pt;}
.ya0{bottom:500.244014pt;}
.yf7{bottom:509.964387pt;}
.yc5{bottom:513.104040pt;}
.y43{bottom:513.652867pt;}
.y84{bottom:516.244014pt;}
.y5d{bottom:516.793000pt;}
.y140{bottom:517.206800pt;}
.yf6{bottom:529.103720pt;}
.yc4{bottom:532.244014pt;}
.y42{bottom:532.793000pt;}
.y13f{bottom:534.606534pt;}
.y83{bottom:535.383987pt;}
.y5c{bottom:535.932974pt;}
.y10f{bottom:548.243694pt;}
.yf5{bottom:548.244014pt;}
.yc3{bottom:551.383987pt;}
.y41{bottom:551.932974pt;}
.y13e{bottom:552.006934pt;}
.y82{bottom:554.523960pt;}
.y5b{bottom:555.072947pt;}
.yf4{bottom:567.384307pt;}
.y13d{bottom:569.406667pt;}
.y9f{bottom:570.523960pt;}
.y40{bottom:571.072947pt;}
.ye1{bottom:573.663934pt;}
.y5a{bottom:574.213094pt;}
.yf3{bottom:586.523640pt;}
.y13c{bottom:586.807054pt;}
.y81{bottom:589.663934pt;}
.y3f{bottom:590.213094pt;}
.ye0{bottom:592.804240pt;}
.y59{bottom:593.353067pt;}
.y10e{bottom:602.523640pt;}
.y13b{bottom:604.206800pt;}
.yf2{bottom:605.663934pt;}
.y80{bottom:608.804240pt;}
.y3e{bottom:609.353067pt;}
.ydf{bottom:611.943880pt;}
.y13a{bottom:621.606534pt;}
.y10d{bottom:621.664267pt;}
.y109{bottom:624.804240pt;}
.y7f{bottom:627.943880pt;}
.y3d{bottom:628.493040pt;}
.y139{bottom:639.006934pt;}
.yf1{bottom:640.804240pt;}
.y108{bottom:643.944214pt;}
.y9e{bottom:647.084187pt;}
.y3c{bottom:647.633014pt;}
.y138{bottom:656.406667pt;}
.yf0{bottom:659.944214pt;}
.y107{bottom:663.083854pt;}
.y7e{bottom:663.084187pt;}
.y9d{bottom:666.224000pt;}
.yc2{bottom:666.224160pt;}
.y3b{bottom:666.772987pt;}
.y137{bottom:673.807054pt;}
.y10c{bottom:679.083534pt;}
.yef{bottom:679.083854pt;}
.y106{bottom:682.224160pt;}
.y9c{bottom:685.363800pt;}
.y3a{bottom:685.912960pt;}
.y136{bottom:691.206800pt;}
.y7d{bottom:698.224000pt;}
.yee{bottom:698.224160pt;}
.y105{bottom:701.364134pt;}
.y9b{bottom:704.504107pt;}
.y39{bottom:705.052934pt;}
.y135{bottom:708.606534pt;}
.y7c{bottom:717.363800pt;}
.yed{bottom:717.364134pt;}
.y104{bottom:720.503774pt;}
.yde{bottom:720.504107pt;}
.y9a{bottom:723.643920pt;}
.yc1{bottom:723.644080pt;}
.y38{bottom:724.192907pt;}
.y134{bottom:726.006934pt;}
.yec{bottom:736.503774pt;}
.y7b{bottom:736.504107pt;}
.yc0{bottom:742.784054pt;}
.y37{bottom:743.333040pt;}
.y133{bottom:743.406667pt;}
.yd{bottom:747.909332pt;}
.y7a{bottom:755.643920pt;}
.ydd{bottom:755.644080pt;}
.y99{bottom:758.784054pt;}
.y132{bottom:760.807054pt;}
.ybf{bottom:761.924027pt;}
.y36{bottom:762.473014pt;}
.y79{bottom:774.784054pt;}
.yc{bottom:775.923347pt;}
.y131{bottom:778.206800pt;}
.ybe{bottom:781.064000pt;}
.y35{bottom:781.612987pt;}
.y78{bottom:793.924027pt;}
.y130{bottom:795.606534pt;}
.y58{bottom:797.612987pt;}
.y12f{bottom:813.006934pt;}
.y77{bottom:813.064000pt;}
.ybd{bottom:816.203974pt;}
.y34{bottom:816.753134pt;}
.yb{bottom:822.570692pt;}
.y12e{bottom:830.406667pt;}
.y76{bottom:832.203974pt;}
.ybc{bottom:835.343947pt;}
.y12d{bottom:847.807054pt;}
.ydc{bottom:851.343947pt;}
.y75{bottom:851.344107pt;}
.ybb{bottom:854.483920pt;}
.y33{bottom:854.764027pt;}
.ya{bottom:858.588693pt;}
.y12c{bottom:865.206800pt;}
.y74{bottom:870.483920pt;}
.yba{bottom:873.623894pt;}
.y12b{bottom:882.606534pt;}
.y2f{bottom:885.533367pt;}
.y73{bottom:889.623896pt;}
.y9{bottom:894.606680pt;}
.y12a{bottom:900.006927pt;}
.yb9{bottom:908.763870pt;}
.y72{bottom:908.764032pt;}
.y129{bottom:917.406667pt;}
.y2{bottom:918.774679pt;}
.y71{bottom:927.903844pt;}
.yeb{bottom:927.904170pt;}
.y128{bottom:934.807058pt;}
.yb8{bottom:943.903844pt;}
.yea{bottom:947.043818pt;}
.y70{bottom:947.044143pt;}
.y127{bottom:952.206798pt;}
.y4{bottom:959.705668pt;}
.yb7{bottom:963.044143pt;}
.ydb{bottom:966.183792pt;}
.y6f{bottom:966.183955pt;}
.y126{bottom:969.606536pt;}
.yb6{bottom:982.183792pt;}
.y6e{bottom:985.324091pt;}
.y125{bottom:987.006927pt;}
.yb5{bottom:1001.324091pt;}
.y10b{bottom:1001.324416pt;}
.y124{bottom:1004.406667pt;}
.y6d{bottom:1020.464066pt;}
.ye9{bottom:1020.464391pt;}
.y123{bottom:1021.807058pt;}
.y2d{bottom:1035.233317pt;}
.y6b{bottom:1035.233399pt;}
.ye7{bottom:1035.233724pt;}
.hc{height:22.592000pt;}
.hd{height:23.000000pt;}
.h10{height:37.653332pt;}
.hf{height:38.333332pt;}
.hb{height:41.418668pt;}
.h13{height:41.594668pt;}
.h5{height:45.293332pt;}
.h3{height:46.000000pt;}
.ha{height:49.822668pt;}
.h8{height:63.783983pt;}
.h7{height:63.784001pt;}
.h4{height:74.030009pt;}
.h16{height:81.009760pt;}
.h14{height:81.009933pt;}
.h6{height:81.528000pt;}
.h17{height:87.432943pt;}
.h15{height:87.433268pt;}
.h11{height:87.433349pt;}
.h12{height:149.699951pt;}
.he{height:169.697347pt;}
.h2{height:203.891988pt;}
.h1{height:354.547762pt;}
.h9{height:382.250973pt;}
.h0{height:1122.666667pt;}
.w2{width:319.999973pt;}
.w3{width:320.000040pt;}
.w5{width:396.590533pt;}
.w6{width:397.409467pt;}
.w4{width:641.000000pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x3{left:7.000000pt;}
.xc{left:19.000000pt;}
.x10{left:24.000000pt;}
.x12{left:43.000000pt;}
.x7{left:64.711807pt;}
.x2{left:75.590556pt;}
.x6{left:76.773636pt;}
.x11{left:94.590556pt;}
.x5{left:97.325500pt;}
.xa{left:99.347278pt;}
.x9{left:108.851260pt;}
.x8{left:137.087169pt;}
.x1{left:156.221859pt;}
.xb{left:228.464297pt;}
.xe{left:231.349406pt;}
.x4{left:395.590533pt;}
.xf{left:396.590533pt;}
.xd{left:698.917826pt;}
}




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