
    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_93ec9acf726407125e811241.woff')format("woff");}.ff1{font-family:ff1;line-height:0.973633;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_7738a5b0a3d3c8c9fe9398a6.woff')format("woff");}.ff2{font-family:ff2;line-height:1.041992;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_d9b23422643b48d5647d5288.woff')format("woff");}.ff3{font-family:ff3;line-height:0.953125;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_b9f0dbfb0a0c6a711d3b0d7d.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_bc61596e5e355614a3f71df7.woff')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_f51660901a8875f7ba68e20e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.759766;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_f4eb1f7e7ca42447dccba055.woff')format("woff");}.ff7{font-family:ff7;line-height:0.720703;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_0b2bd432b7283de4ef40c937.woff')format("woff");}.ff8{font-family:ff8;line-height:1.031738;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b13ad7d758b3376040db0ebe.woff')format("woff");}.ff9{font-family:ff9;line-height:0.759766;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_4436819fa2389d2dd773fe3f.woff')format("woff");}.ffa{font-family:ffa;line-height:1.031738;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ee80bf75c7fedb109c83492f.woff')format("woff");}.ffb{font-family:ffb;line-height:0.968750;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:ffc;src:url('chunks/assets/font_f88370a273cc999bd9256c28.woff')format("woff");}.ffc{font-family:ffc;line-height:0.973633;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:ffd;src:url('chunks/assets/font_3b21690b40cd802e60b0b4f4.woff')format("woff");}.ffd{font-family:ffd;line-height:0.964890;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-19.385743px;}
.ws1{word-spacing:-16.403321px;}
.ws2{word-spacing:-16.371094px;}
.ws0{word-spacing:-14.912109px;}
.ws4{word-spacing:-0.066000px;}
.ws3{word-spacing:0.000000px;}
._2{margin-left:-340.194606px;}
._6{margin-left:-18.336914px;}
._c{margin-left:-9.647924px;}
._b{margin-left:-6.630053px;}
._7{margin-left:-5.250194px;}
._5{margin-left:-3.941884px;}
._a{margin-left:-2.259466px;}
._0{margin-left:-1.006229px;}
._4{width:1.543645px;}
._3{width:2.588257px;}
._8{width:37.133787px;}
._9{width:49.798827px;}
._1{width:347.647292px;}
.fc8{color:rgb(17,85,204);}
.fc6{color:rgb(117,56,0);}
.fc5{color:rgb(198,219,225);}
.fc3{color:rgb(229,229,229);}
.fc2{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc7{color:rgb(255,200,170);}
.fc4{color:rgb(177,2,2);}
.fc0{color:rgb(65,64,66);}
.fs4{font-size:24.000001px;}
.fs2{font-size:36.000000px;}
.fs0{font-size:59.999999px;}
.fs5{font-size:66.000002px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:78.000003px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yb6{bottom:0.000002px;}
.y80{bottom:0.000005px;}
.y43{bottom:0.000006px;}
.y6{bottom:6.450440px;}
.y58{bottom:11.371388px;}
.y66{bottom:11.371589px;}
.y5f{bottom:11.371763px;}
.y110{bottom:11.999624px;}
.yb4{bottom:11.999627px;}
.yd7{bottom:11.999630px;}
.ya4{bottom:11.999633px;}
.yd2{bottom:11.999637px;}
.y94{bottom:11.999816px;}
.y69{bottom:11.999817px;}
.y4e{bottom:11.999904px;}
.y2a{bottom:11.999907px;}
.y22{bottom:11.999952px;}
.y91{bottom:11.999985px;}
.yc0{bottom:11.999988px;}
.y108{bottom:11.999990px;}
.y11a{bottom:11.999994px;}
.y8d{bottom:11.999997px;}
.yd{bottom:11.999999px;}
.y75{bottom:12.000000px;}
.y14d{bottom:12.000008px;}
.y14{bottom:12.000023px;}
.y11{bottom:12.000024px;}
.y48{bottom:12.000090px;}
.y79{bottom:12.000177px;}
.y4b{bottom:12.000183px;}
.y7e{bottom:12.000189px;}
.y9d{bottom:12.000192px;}
.ye7{bottom:12.000362px;}
.yca{bottom:12.000363px;}
.yed{bottom:12.000366px;}
.yce{bottom:12.000372px;}
.y97{bottom:12.000375px;}
.y117{bottom:12.000731px;}
.y12a{bottom:12.000732px;}
.yf0{bottom:12.749633px;}
.ya{bottom:12.749999px;}
.yad{bottom:12.750365px;}
.y124{bottom:13.236622px;}
.y128{bottom:13.237052px;}
.y122{bottom:13.237053px;}
.y125{bottom:13.237055px;}
.y15b{bottom:13.237059px;}
.yeb{bottom:13.237061px;}
.y147{bottom:13.237065px;}
.y133{bottom:13.237066px;}
.y131{bottom:13.237068px;}
.y15a{bottom:13.237353px;}
.y61{bottom:13.237354px;}
.y121{bottom:13.237356px;}
.y5a{bottom:13.237414px;}
.yd0{bottom:13.237418px;}
.y62{bottom:13.237426px;}
.y50{bottom:13.237429px;}
.y9b{bottom:13.237433px;}
.y1b{bottom:13.237473px;}
.y25{bottom:13.237475px;}
.y1d{bottom:13.237515px;}
.y1e{bottom:13.237527px;}
.y24{bottom:13.237537px;}
.y1a{bottom:13.237551px;}
.y87{bottom:13.237610px;}
.y6b{bottom:13.237624px;}
.y8a{bottom:13.237720px;}
.y13d{bottom:13.237783px;}
.yaa{bottom:13.237786px;}
.y8b{bottom:13.237792px;}
.y150{bottom:13.237798px;}
.y137{bottom:13.237801px;}
.y13c{bottom:13.238086px;}
.y146{bottom:13.238088px;}
.y3e{bottom:14.217509px;}
.yc2{bottom:14.217774px;}
.y5{bottom:27.153809px;}
.y57{bottom:30.344783px;}
.y65{bottom:30.344984px;}
.y5e{bottom:30.345158px;}
.y13a{bottom:31.802484px;}
.y135{bottom:31.802490px;}
.y14c{bottom:31.802498px;}
.y10f{bottom:31.802849px;}
.y74{bottom:31.803045px;}
.y10{bottom:31.803204px;}
.yb3{bottom:31.803212px;}
.yd6{bottom:31.803215px;}
.y4d{bottom:31.803219px;}
.ybc{bottom:31.803221px;}
.y21{bottom:31.803222px;}
.y42{bottom:31.803314px;}
.y7d{bottom:31.803399px;}
.y90{bottom:31.803405px;}
.ye6{bottom:31.803572px;}
.ybf{bottom:31.803588px;}
.y116{bottom:31.803954px;}
.y159{bottom:34.278075px;}
.y130{bottom:35.515143px;}
.y11f{bottom:35.515431px;}
.y18{bottom:35.515731px;}
.y19{bottom:35.515743px;}
.y120{bottom:35.515863px;}
.y154{bottom:35.515869px;}
.y145{bottom:35.515875px;}
.y144{bottom:35.516163px;}
.y3d{bottom:36.036899px;}
.y4{bottom:47.857178px;}
.y56{bottom:49.318178px;}
.y5d{bottom:49.318538px;}
.y64{bottom:49.946777px;}
.y10e{bottom:51.606434px;}
.yb2{bottom:51.606437px;}
.yd5{bottom:51.606440px;}
.yf{bottom:51.606444px;}
.y73{bottom:51.606450px;}
.y14b{bottom:51.606458px;}
.y47{bottom:51.606536px;}
.y115{bottom:51.607176px;}
.y158{bottom:54.081297px;}
.y16{bottom:57.793941px;}
.y17{bottom:57.793953px;}
.y3c{bottom:57.856304px;}
.y44{bottom:61.095431px;}
.y81{bottom:61.095522px;}
.yb7{bottom:61.095705px;}
.y55{bottom:68.291558px;}
.y5c{bottom:68.920166px;}
.y3{bottom:69.685547px;}
.y103{bottom:71.409287px;}
.y10d{bottom:71.409299px;}
.yb1{bottom:71.409302px;}
.yd4{bottom:71.409305px;}
.y107{bottom:71.409665px;}
.ybb{bottom:71.409666px;}
.y14a{bottom:71.409668px;}
.y72{bottom:71.409675px;}
.y46{bottom:71.409759px;}
.ye5{bottom:71.410022px;}
.y114{bottom:71.410400px;}
.y157{bottom:73.884521px;}
.y3b{bottom:79.675694px;}
.y12f{bottom:80.071293px;}
.y54{bottom:87.264953px;}
.y10c{bottom:91.212524px;}
.y71{bottom:91.212720px;}
.y102{bottom:91.212872px;}
.yba{bottom:91.212890px;}
.ye4{bottom:91.213247px;}
.y2{bottom:91.513916px;}
.y3a{bottom:101.495099px;}
.y12e{bottom:102.350103px;}
.y53{bottom:106.866941px;}
.ye3{bottom:111.016097px;}
.y70{bottom:111.016125px;}
.y151{bottom:118.987793px;}
.y41{bottom:122.656218px;}
.y39{bottom:123.314489px;}
.y52{bottom:126.670166px;}
.y101{bottom:130.818962px;}
.y6f{bottom:130.819335px;}
.ye2{bottom:130.819697px;}
.y40{bottom:132.557930px;}
.y7f{bottom:132.974297px;}
.yb5{bottom:135.223393px;}
.yb0{bottom:142.049565px;}
.y38{bottom:145.133894px;}
.ye9{bottom:146.611444px;}
.y111{bottom:149.730103px;}
.y7c{bottom:149.777527px;}
.y100{bottom:150.622547px;}
.ye1{bottom:150.622922px;}
.y14f{bottom:156.118651px;}
.y10b{bottom:156.556278px;}
.y14e{bottom:158.593505px;}
.y7b{bottom:159.679325px;}
.ye8{bottom:163.939447px;}
.y37{bottom:166.953284px;}
.ye0{bottom:170.425772px;}
.yaf{bottom:171.754389px;}
.y3f{bottom:181.717798px;}
.y2b{bottom:188.544060px;}
.y36{bottom:188.772689px;}
.yff{bottom:190.228622px;}
.ydf{bottom:190.229357px;}
.y149{bottom:195.272454px;}
.y10a{bottom:196.162346px;}
.yda{bottom:205.342905px;}
.yfe{bottom:210.032207px;}
.yde{bottom:210.032582px;}
.y35{bottom:210.592079px;}
.ydd{bottom:229.835432px;}
.y143{bottom:229.928460px;}
.y7a{bottom:229.932492px;}
.y34{bottom:232.411484px;}
.y78{bottom:239.609255px;}
.yae{bottom:240.717403px;}
.yac{bottom:247.543210px;}
.y77{bottom:249.510858px;}
.yfd{bottom:249.638297px;}
.ydc{bottom:249.639032px;}
.y148{bottom:252.207268px;}
.y33{bottom:254.230874px;}
.y142{bottom:254.682123px;}
.yfc{bottom:269.441882px;}
.ydb{bottom:269.442257px;}
.y109{bottom:275.027338px;}
.y32{bottom:276.050264px;}
.y106{bottom:281.853522px;}
.yfb{bottom:289.245107px;}
.yab{bottom:294.917717px;}
.y141{bottom:295.230462px;}
.y31{bottom:297.869669px;}
.y76{bottom:298.671013px;}
.y140{bottom:304.907221px;}
.y6e{bottom:305.497186px;}
.yfa{bottom:309.047957px;}
.y105{bottom:311.558344px;}
.ya9{bottom:313.970954px;}
.ya8{bottom:316.446174px;}
.y30{bottom:319.689059px;}
.yf9{bottom:328.851557px;}
.y2f{bottom:341.508464px;}
.y13f{bottom:352.281737px;}
.ya7{bottom:355.374023px;}
.ya6{bottom:357.849609px;}
.y2e{bottom:363.327854px;}
.y6d{bottom:364.906863px;}
.y139{bottom:367.959968px;}
.y2d{bottom:385.147259px;}
.y29{bottom:385.926725px;}
.ya5{bottom:396.777097px;}
.ya3{bottom:399.252684px;}
.y104{bottom:400.324948px;}
.y13b{bottom:405.090827px;}
.y2c{bottom:406.966649px;}
.yf8{bottom:407.151135px;}
.y13e{bottom:407.565679px;}
.ya2{bottom:438.180547px;}
.ya1{bottom:440.655768px;}
.y134{bottom:444.244622px;}
.yd8{bottom:460.309943px;}
.y136{bottom:461.572259px;}
.yd9{bottom:462.785163px;}
.y6c{bottom:463.574893px;}
.y138{bottom:464.047113px;}
.y68{bottom:470.401055px;}
.ya0{bottom:479.583983px;}
.y9f{bottom:482.059203px;}
.y6a{bottom:487.729241px;}
.y12d{bottom:500.726067px;}
.yd3{bottom:501.713382px;}
.y9c{bottom:520.987055px;}
.y63{bottom:526.882500px;}
.y9e{bottom:538.315241px;}
.yf7{bottom:555.675289px;}
.yd1{bottom:561.123049px;}
.y67{bottom:562.354241px;}
.ycf{bottom:578.451052px;}
.y9a{bottom:579.718507px;}
.y99{bottom:582.193728px;}
.y132{bottom:589.839103px;}
.y12c{bottom:592.313958px;}
.y5b{bottom:601.507326px;}
.ycd{bottom:619.854124px;}
.y96{bottom:621.121576px;}
.y28{bottom:622.567753px;}
.y12b{bottom:628.992193px;}
.y27{bottom:629.393927px;}
.y129{bottom:631.466314px;}
.ycb{bottom:637.182127px;}
.y98{bottom:638.449946px;}
.ycc{bottom:639.657714px;}
.y60{bottom:655.952639px;}
.y127{bottom:668.145269px;}
.y126{bottom:670.620123px;}
.y26{bottom:676.768202px;}
.y4a{bottom:678.230713px;}
.yc9{bottom:678.585569px;}
.y95{bottom:679.853216px;}
.y93{bottom:682.328436px;}
.y20{bottom:693.571475px;}
.y51{bottom:695.105901px;}
.yc7{bottom:695.913937px;}
.yc8{bottom:698.389158px;}
.y11e{bottom:707.298342px;}
.y23{bottom:710.899660px;}
.y8f{bottom:721.256476px;}
.y123{bottom:729.577151px;}
.y11d{bottom:732.051273px;}
.yc6{bottom:736.192389px;}
.y92{bottom:738.584846px;}
.y1f{bottom:752.633053px;}
.y162{bottom:756.169194px;}
.y15{bottom:759.459222px;}
.yf6{bottom:763.261228px;}
.yf5{bottom:770.087407px;}
.y11c{bottom:772.599612px;}
.yc5{bottom:775.450558px;}
.y8c{bottom:779.987915px;}
.y161{bottom:780.368402px;}
.yc4{bottom:782.276365px;}
.y11b{bottom:782.277107px;}
.y8e{bottom:797.315918px;}
.y160{bottom:803.142332px;}
.y1c{bottom:804.015648px;}
.y13{bottom:806.490639px;}
.y59{bottom:807.301031px;}
.yf4{bottom:817.461182px;}
.y15f{bottom:825.915527px;}
.yc3{bottom:829.650872px;}
.yf3{bottom:836.514408px;}
.y89{bottom:838.719367px;}
.y88{bottom:841.194588px;}
.y12{bottom:845.749078px;}
.y119{bottom:846.454102px;}
.ybe{bottom:846.454109px;}
.y4c{bottom:846.454282px;}
.y15e{bottom:848.689457px;}
.ye{bottom:852.575243px;}
.yc1{bottom:864.241339px;}
.y15d{bottom:865.492681px;}
.y118{bottom:866.257323px;}
.yc{bottom:872.378448px;}
.yf2{bottom:874.317626px;}
.y85{bottom:880.122439px;}
.y4f{bottom:883.585691px;}
.y86{bottom:897.450626px;}
.ybd{bottom:905.515873px;}
.yb9{bottom:912.342042px;}
.y15c{bottom:912.867182px;}
.yf1{bottom:913.576168px;}
.yef{bottom:920.402711px;}
.y49{bottom:925.319098px;}
.y156{bottom:929.670411px;}
.yb{bottom:931.440079px;}
.y113{bottom:932.144532px;}
.y45{bottom:932.145172px;}
.y84{bottom:937.729248px;}
.y9{bottom:938.266251px;}
.yb8{bottom:951.948488px;}
.y112{bottom:961.850099px;}
.y153{bottom:966.801270px;}
.yee{bottom:967.776855px;}
.y83{bottom:978.277587px;}
.y8{bottom:982.415337px;}
.yea{bottom:986.830078px;}
.y82{bottom:987.954346px;}
.y155{bottom:989.080078px;}
.yec{bottom:989.304565px;}
.y152{bottom:991.554199px;}
.y7{bottom:1002.577882px;}
.y1{bottom:1028.233155px;}
.h7{height:19.500001px;}
.h4{height:29.250000px;}
.h24{height:35.552856px;}
.h23{height:35.553039px;}
.h12{height:35.553130px;}
.h8{height:35.553222px;}
.hb{height:35.553246px;}
.h18{height:35.553406px;}
.h2c{height:35.553589px;}
.h33{height:35.553956px;}
.h2a{height:37.569581px;}
.h32{height:38.027345px;}
.h1d{height:38.028076px;}
.he{height:38.028237px;}
.h11{height:38.028259px;}
.h21{height:38.028442px;}
.h36{height:38.028809px;}
.h2d{height:39.153442px;}
.h5{height:39.153808px;}
.h25{height:39.154175px;}
.h19{height:46.921876px;}
.h14{height:48.082032px;}
.h2{height:48.749999px;}
.hf{height:49.500001px;}
.hc{height:50.176759px;}
.h1b{height:52.948243px;}
.h9{height:53.625001px;}
.h35{height:55.355713px;}
.h10{height:55.356445px;}
.h15{height:55.356537px;}
.h22{height:55.356629px;}
.h29{height:55.356811px;}
.h3a{height:58.500000px;}
.h31{height:60.306153px;}
.h37{height:60.306885px;}
.h6{height:63.375002px;}
.h1e{height:73.500000px;}
.ha{height:75.159667px;}
.hd{height:82.584663px;}
.h3{height:87.750000px;}
.h1c{height:92.473389px;}
.h26{height:94.962525px;}
.h38{height:94.962891px;}
.h17{height:94.962982px;}
.h30{height:94.963623px;}
.h39{height:97.437744px;}
.h2f{height:114.765747px;}
.h28{height:114.766113px;}
.h16{height:116.220429px;}
.h20{height:116.220521px;}
.h27{height:116.220703px;}
.h34{height:127.141113px;}
.h1a{height:150.223389px;}
.h1f{height:154.372559px;}
.h1{height:159.766845px;}
.h2b{height:292.995480px;}
.h2e{height:352.404780px;}
.h13{height:430.318500px;}
.h0{height:1188.000000px;}
.w6{width:73.125000px;}
.w18{width:87.750000px;}
.w14{width:88.875000px;}
.w1b{width:127.125000px;}
.w8{width:132.750000px;}
.w9{width:133.875000px;}
.wf{width:135.000000px;}
.w11{width:137.250000px;}
.we{width:138.375000px;}
.wc{width:142.875000px;}
.w16{width:147.375000px;}
.w12{width:148.500000px;}
.wb{width:164.250000px;}
.w17{width:171.000000px;}
.w13{width:172.125000px;}
.w2{width:175.500000px;}
.w5{width:201.375000px;}
.w4{width:209.250000px;}
.w1e{width:210.375000px;}
.w1f{width:250.875000px;}
.w1d{width:257.625000px;}
.w1a{width:258.750000px;}
.w7{width:315.000000px;}
.wa{width:322.875000px;}
.w15{width:394.875000px;}
.w1c{width:412.875000px;}
.w19{width:414.000000px;}
.w10{width:532.125000px;}
.wd{width:533.250000px;}
.w3{width:622.125000px;}
.w1{width:803.250000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:6.750000px;}
.xf{left:12.375000px;}
.x1e{left:13.500000px;}
.x22{left:19.125000px;}
.x32{left:29.272934px;}
.x1c{left:33.750000px;}
.x1f{left:40.500000px;}
.x9{left:54.000000px;}
.xc{left:55.125000px;}
.x7{left:56.250000px;}
.xa{left:57.375000px;}
.x1d{left:60.750000px;}
.x2d{left:65.798578px;}
.x2f{left:68.189702px;}
.x21{left:79.802456px;}
.x16{left:101.246498px;}
.x6{left:108.000000px;}
.x30{left:114.667328px;}
.x24{left:120.805630px;}
.xe{left:127.911021px;}
.x10{left:130.503536px;}
.x26{left:134.089645px;}
.x2e{left:136.203587px;}
.x25{left:151.214275px;}
.x11{left:152.329577px;}
.x27{left:155.601752px;}
.x36{left:175.161981px;}
.x15{left:190.125000px;}
.x33{left:191.250000px;}
.x2a{left:204.750000px;}
.x14{left:229.602690px;}
.x1b{left:232.875000px;}
.xb{left:235.125000px;}
.xd{left:266.625000px;}
.x17{left:325.125000px;}
.x5{left:368.501220px;}
.x2b{left:378.000000px;}
.x34{left:403.875000px;}
.x18{left:460.125000px;}
.x2c{left:468.000000px;}
.x12{left:469.125000px;}
.x31{left:470.250000px;}
.x13{left:544.500000px;}
.x35{left:554.625000px;}
.x20{left:556.875000px;}
.x28{left:589.500000px;}
.x19{left:595.125000px;}
.x1{left:601.361044px;}
.x2{left:671.773241px;}
.x23{left:722.250000px;}
.x29{left:729.000000px;}
.x1a{left:730.125000px;}
.x3{left:783.728674px;}
.x4{left:864.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws5{word-spacing:-17.231772pt;}
.ws1{word-spacing:-14.580730pt;}
.ws2{word-spacing:-14.552084pt;}
.ws0{word-spacing:-13.255208pt;}
.ws4{word-spacing:-0.058667pt;}
.ws3{word-spacing:0.000000pt;}
._2{margin-left:-302.395205pt;}
._6{margin-left:-16.299479pt;}
._c{margin-left:-8.575933pt;}
._b{margin-left:-5.893380pt;}
._7{margin-left:-4.666839pt;}
._5{margin-left:-3.503897pt;}
._a{margin-left:-2.008414pt;}
._0{margin-left:-0.894426pt;}
._4{width:1.372129pt;}
._3{width:2.300673pt;}
._8{width:33.007810pt;}
._9{width:44.265624pt;}
._1{width:309.019815pt;}
.fs4{font-size:21.333334pt;}
.fs2{font-size:32.000000pt;}
.fs0{font-size:53.333332pt;}
.fs5{font-size:58.666668pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:69.333336pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yb6{bottom:0.000001pt;}
.y80{bottom:0.000004pt;}
.y43{bottom:0.000005pt;}
.y6{bottom:5.733724pt;}
.y58{bottom:10.107900pt;}
.y66{bottom:10.108079pt;}
.y5f{bottom:10.108233pt;}
.y110{bottom:10.666332pt;}
.yb4{bottom:10.666335pt;}
.yd7{bottom:10.666338pt;}
.ya4{bottom:10.666340pt;}
.yd2{bottom:10.666344pt;}
.y94{bottom:10.666503pt;}
.y69{bottom:10.666504pt;}
.y4e{bottom:10.666582pt;}
.y2a{bottom:10.666584pt;}
.y22{bottom:10.666624pt;}
.y91{bottom:10.666654pt;}
.yc0{bottom:10.666656pt;}
.y108{bottom:10.666658pt;}
.y11a{bottom:10.666662pt;}
.y8d{bottom:10.666664pt;}
.yd{bottom:10.666666pt;}
.y75{bottom:10.666667pt;}
.y14d{bottom:10.666674pt;}
.y14{bottom:10.666687pt;}
.y11{bottom:10.666688pt;}
.y48{bottom:10.666747pt;}
.y79{bottom:10.666824pt;}
.y4b{bottom:10.666830pt;}
.y7e{bottom:10.666835pt;}
.y9d{bottom:10.666838pt;}
.ye7{bottom:10.666988pt;}
.yca{bottom:10.666990pt;}
.yed{bottom:10.666992pt;}
.yce{bottom:10.666998pt;}
.y97{bottom:10.667000pt;}
.y117{bottom:10.667316pt;}
.y12a{bottom:10.667318pt;}
.yf0{bottom:11.333007pt;}
.ya{bottom:11.333333pt;}
.yad{bottom:11.333658pt;}
.y124{bottom:11.765886pt;}
.y128{bottom:11.766268pt;}
.y122{bottom:11.766269pt;}
.y125{bottom:11.766271pt;}
.y15b{bottom:11.766275pt;}
.yeb{bottom:11.766276pt;}
.y147{bottom:11.766280pt;}
.y133{bottom:11.766281pt;}
.y131{bottom:11.766283pt;}
.y15a{bottom:11.766536pt;}
.y61{bottom:11.766537pt;}
.y121{bottom:11.766538pt;}
.y5a{bottom:11.766591pt;}
.yd0{bottom:11.766593pt;}
.y62{bottom:11.766601pt;}
.y50{bottom:11.766604pt;}
.y9b{bottom:11.766607pt;}
.y1b{bottom:11.766643pt;}
.y25{bottom:11.766644pt;}
.y1d{bottom:11.766680pt;}
.y1e{bottom:11.766691pt;}
.y24{bottom:11.766700pt;}
.y1a{bottom:11.766712pt;}
.y87{bottom:11.766764pt;}
.y6b{bottom:11.766777pt;}
.y8a{bottom:11.766862pt;}
.y13d{bottom:11.766919pt;}
.yaa{bottom:11.766921pt;}
.y8b{bottom:11.766927pt;}
.y150{bottom:11.766932pt;}
.y137{bottom:11.766935pt;}
.y13c{bottom:11.767188pt;}
.y146{bottom:11.767189pt;}
.y3e{bottom:12.637785pt;}
.yc2{bottom:12.638021pt;}
.y5{bottom:24.136719pt;}
.y57{bottom:26.973140pt;}
.y65{bottom:26.973319pt;}
.y5e{bottom:26.973473pt;}
.y13a{bottom:28.268875pt;}
.y135{bottom:28.268880pt;}
.y14c{bottom:28.268887pt;}
.y10f{bottom:28.269199pt;}
.y74{bottom:28.269374pt;}
.y10{bottom:28.269515pt;}
.yb3{bottom:28.269522pt;}
.yd6{bottom:28.269524pt;}
.y4d{bottom:28.269528pt;}
.ybc{bottom:28.269530pt;}
.y21{bottom:28.269531pt;}
.y42{bottom:28.269612pt;}
.y7d{bottom:28.269688pt;}
.y90{bottom:28.269694pt;}
.ye6{bottom:28.269842pt;}
.ybf{bottom:28.269856pt;}
.y116{bottom:28.270182pt;}
.y159{bottom:30.469400pt;}
.y130{bottom:31.569016pt;}
.y11f{bottom:31.569272pt;}
.y18{bottom:31.569538pt;}
.y19{bottom:31.569549pt;}
.y120{bottom:31.569656pt;}
.y154{bottom:31.569661pt;}
.y145{bottom:31.569667pt;}
.y144{bottom:31.569922pt;}
.y3d{bottom:32.032799pt;}
.y4{bottom:42.539714pt;}
.y56{bottom:43.838380pt;}
.y5d{bottom:43.838700pt;}
.y64{bottom:44.397135pt;}
.y10e{bottom:45.872386pt;}
.yb2{bottom:45.872388pt;}
.yd5{bottom:45.872391pt;}
.yf{bottom:45.872395pt;}
.y73{bottom:45.872400pt;}
.y14b{bottom:45.872407pt;}
.y47{bottom:45.872476pt;}
.y115{bottom:45.873046pt;}
.y158{bottom:48.072264pt;}
.y16{bottom:51.372392pt;}
.y17{bottom:51.372403pt;}
.y3c{bottom:51.427825pt;}
.y44{bottom:54.307049pt;}
.y81{bottom:54.307131pt;}
.yb7{bottom:54.307293pt;}
.y55{bottom:60.703607pt;}
.y5c{bottom:61.262370pt;}
.y3{bottom:61.942708pt;}
.y103{bottom:63.474922pt;}
.y10d{bottom:63.474932pt;}
.yb1{bottom:63.474935pt;}
.yd4{bottom:63.474938pt;}
.y107{bottom:63.475258pt;}
.ybb{bottom:63.475259pt;}
.y14a{bottom:63.475260pt;}
.y72{bottom:63.475267pt;}
.y46{bottom:63.475342pt;}
.ye5{bottom:63.475575pt;}
.y114{bottom:63.475911pt;}
.y157{bottom:65.675130pt;}
.y3b{bottom:70.822839pt;}
.y12f{bottom:71.174483pt;}
.y54{bottom:77.568847pt;}
.y10c{bottom:81.077799pt;}
.y71{bottom:81.077974pt;}
.y102{bottom:81.078108pt;}
.yba{bottom:81.078124pt;}
.ye4{bottom:81.078442pt;}
.y2{bottom:81.345703pt;}
.y3a{bottom:90.217865pt;}
.y12e{bottom:90.977869pt;}
.y53{bottom:94.992836pt;}
.ye3{bottom:98.680975pt;}
.y70{bottom:98.681000pt;}
.y151{bottom:105.766927pt;}
.y41{bottom:109.027749pt;}
.y39{bottom:109.612879pt;}
.y52{bottom:112.595703pt;}
.y101{bottom:116.283522pt;}
.y6f{bottom:116.283854pt;}
.ye2{bottom:116.284175pt;}
.y40{bottom:117.829271pt;}
.y7f{bottom:118.199375pt;}
.yb5{bottom:120.198571pt;}
.yb0{bottom:126.266280pt;}
.y38{bottom:129.007905pt;}
.ye9{bottom:130.321284pt;}
.y111{bottom:133.093425pt;}
.y7c{bottom:133.135580pt;}
.y100{bottom:133.886708pt;}
.ye1{bottom:133.887042pt;}
.y14f{bottom:138.772135pt;}
.y10b{bottom:139.161136pt;}
.y14e{bottom:140.972004pt;}
.y7b{bottom:141.937177pt;}
.ye8{bottom:145.723953pt;}
.y37{bottom:148.402919pt;}
.ye0{bottom:151.489575pt;}
.yaf{bottom:152.670568pt;}
.y3f{bottom:161.526931pt;}
.y2b{bottom:167.594720pt;}
.y36{bottom:167.797945pt;}
.yff{bottom:169.092108pt;}
.ydf{bottom:169.092762pt;}
.y149{bottom:173.575515pt;}
.y10a{bottom:174.366529pt;}
.yda{bottom:182.527027pt;}
.yfe{bottom:186.695295pt;}
.yde{bottom:186.695628pt;}
.y35{bottom:187.192959pt;}
.ydd{bottom:204.298162pt;}
.y143{bottom:204.380853pt;}
.y7a{bottom:204.384437pt;}
.y34{bottom:206.587985pt;}
.y78{bottom:212.986004pt;}
.yae{bottom:213.971025pt;}
.yac{bottom:220.038409pt;}
.y77{bottom:221.787429pt;}
.yfd{bottom:221.900708pt;}
.ydc{bottom:221.901362pt;}
.y148{bottom:224.184239pt;}
.y33{bottom:225.982999pt;}
.y142{bottom:226.384109pt;}
.yfc{bottom:239.503895pt;}
.ydb{bottom:239.504228pt;}
.y109{bottom:244.468745pt;}
.y32{bottom:245.378012pt;}
.y106{bottom:250.536464pt;}
.yfb{bottom:257.106762pt;}
.yab{bottom:262.149082pt;}
.y141{bottom:262.427078pt;}
.y31{bottom:264.773039pt;}
.y76{bottom:265.485345pt;}
.y140{bottom:271.028641pt;}
.y6e{bottom:271.553055pt;}
.yfa{bottom:274.709295pt;}
.y105{bottom:276.940751pt;}
.ya9{bottom:279.085292pt;}
.ya8{bottom:281.285488pt;}
.y30{bottom:284.168052pt;}
.yf9{bottom:292.312495pt;}
.y2f{bottom:303.563079pt;}
.y13f{bottom:313.139322pt;}
.ya7{bottom:315.888020pt;}
.ya6{bottom:318.088541pt;}
.y2e{bottom:322.958092pt;}
.y6d{bottom:324.361656pt;}
.y139{bottom:327.075527pt;}
.y2d{bottom:342.353119pt;}
.y29{bottom:343.045977pt;}
.ya5{bottom:352.690753pt;}
.ya3{bottom:354.891275pt;}
.y104{bottom:355.844398pt;}
.y13b{bottom:360.080735pt;}
.y2c{bottom:361.748132pt;}
.yf8{bottom:361.912120pt;}
.y13e{bottom:362.280604pt;}
.ya2{bottom:389.493820pt;}
.ya1{bottom:391.694016pt;}
.y134{bottom:394.884108pt;}
.yd8{bottom:409.164393pt;}
.y136{bottom:410.286452pt;}
.yd9{bottom:411.364589pt;}
.y6c{bottom:412.066571pt;}
.y138{bottom:412.486323pt;}
.y68{bottom:418.134271pt;}
.ya0{bottom:426.296873pt;}
.y9f{bottom:428.497069pt;}
.y6a{bottom:433.537103pt;}
.y12d{bottom:445.089837pt;}
.yd3{bottom:445.967451pt;}
.y9c{bottom:463.099604pt;}
.y63{bottom:468.340000pt;}
.y9e{bottom:478.502436pt;}
.yf7{bottom:493.933591pt;}
.yd1{bottom:498.776044pt;}
.y67{bottom:499.870436pt;}
.ycf{bottom:514.178713pt;}
.y9a{bottom:515.305340pt;}
.y99{bottom:517.505536pt;}
.y132{bottom:524.301425pt;}
.y12c{bottom:526.501296pt;}
.y5b{bottom:534.673179pt;}
.ycd{bottom:550.981444pt;}
.y96{bottom:552.108068pt;}
.y28{bottom:553.393558pt;}
.y12b{bottom:559.104172pt;}
.y27{bottom:559.461268pt;}
.y129{bottom:561.303391pt;}
.ycb{bottom:566.384113pt;}
.y98{bottom:567.511063pt;}
.ycc{bottom:568.584635pt;}
.y60{bottom:583.069012pt;}
.y127{bottom:593.906905pt;}
.y126{bottom:596.106776pt;}
.y26{bottom:601.571735pt;}
.y4a{bottom:602.871745pt;}
.yc9{bottom:603.187172pt;}
.y95{bottom:604.313969pt;}
.y93{bottom:606.514165pt;}
.y20{bottom:616.507977pt;}
.y51{bottom:617.871912pt;}
.yc7{bottom:618.590167pt;}
.yc8{bottom:620.790363pt;}
.y11e{bottom:628.709637pt;}
.y23{bottom:631.910809pt;}
.y8f{bottom:641.116868pt;}
.y123{bottom:648.513023pt;}
.y11d{bottom:650.712243pt;}
.yc6{bottom:654.393235pt;}
.y92{bottom:656.519863pt;}
.y1f{bottom:669.007158pt;}
.y162{bottom:672.150395pt;}
.y15{bottom:675.074864pt;}
.yf6{bottom:678.454425pt;}
.yf5{bottom:684.522140pt;}
.y11c{bottom:686.755211pt;}
.yc5{bottom:689.289385pt;}
.y8c{bottom:693.322591pt;}
.y161{bottom:693.660802pt;}
.yc4{bottom:695.356769pt;}
.y11b{bottom:695.357428pt;}
.y8e{bottom:708.725260pt;}
.y160{bottom:713.904295pt;}
.y1c{bottom:714.680576pt;}
.y13{bottom:716.880568pt;}
.y59{bottom:717.600916pt;}
.yf4{bottom:726.632162pt;}
.y15f{bottom:734.147135pt;}
.yc3{bottom:737.467442pt;}
.yf3{bottom:743.568363pt;}
.y89{bottom:745.528327pt;}
.y88{bottom:747.728523pt;}
.y12{bottom:751.776958pt;}
.y119{bottom:752.403647pt;}
.ybe{bottom:752.403652pt;}
.y4c{bottom:752.403807pt;}
.y15e{bottom:754.390628pt;}
.ye{bottom:757.844660pt;}
.yc1{bottom:768.214524pt;}
.y15d{bottom:769.326828pt;}
.y118{bottom:770.006509pt;}
.yc{bottom:775.447509pt;}
.yf2{bottom:777.171223pt;}
.y85{bottom:782.331057pt;}
.y4f{bottom:785.409503pt;}
.y86{bottom:797.733889pt;}
.ybd{bottom:804.902998pt;}
.yb9{bottom:810.970704pt;}
.y15c{bottom:811.437495pt;}
.yf1{bottom:812.067705pt;}
.yef{bottom:818.135743pt;}
.y49{bottom:822.505865pt;}
.y156{bottom:826.373699pt;}
.yb{bottom:827.946737pt;}
.y113{bottom:828.572917pt;}
.y45{bottom:828.573487pt;}
.y84{bottom:833.537109pt;}
.y9{bottom:834.014445pt;}
.yb8{bottom:846.176433pt;}
.y112{bottom:854.977865pt;}
.y153{bottom:859.378907pt;}
.yee{bottom:860.246094pt;}
.y83{bottom:869.580078pt;}
.y8{bottom:873.258077pt;}
.yea{bottom:877.182292pt;}
.y82{bottom:878.181641pt;}
.y155{bottom:879.182292pt;}
.yec{bottom:879.381836pt;}
.y152{bottom:881.381511pt;}
.y7{bottom:891.180339pt;}
.y1{bottom:913.985027pt;}
.h7{height:17.333334pt;}
.h4{height:26.000000pt;}
.h24{height:31.602539pt;}
.h23{height:31.602701pt;}
.h12{height:31.602783pt;}
.h8{height:31.602864pt;}
.hb{height:31.602885pt;}
.h18{height:31.603028pt;}
.h2c{height:31.603191pt;}
.h33{height:31.603516pt;}
.h2a{height:33.395183pt;}
.h32{height:33.802084pt;}
.h1d{height:33.802735pt;}
.he{height:33.802877pt;}
.h11{height:33.802897pt;}
.h21{height:33.803060pt;}
.h36{height:33.803385pt;}
.h2d{height:34.803060pt;}
.h5{height:34.803385pt;}
.h25{height:34.803711pt;}
.h19{height:41.708334pt;}
.h14{height:42.739584pt;}
.h2{height:43.333332pt;}
.hf{height:44.000001pt;}
.hc{height:44.601564pt;}
.h1b{height:47.065105pt;}
.h9{height:47.666668pt;}
.h35{height:49.205079pt;}
.h10{height:49.205729pt;}
.h15{height:49.205811pt;}
.h22{height:49.205892pt;}
.h29{height:49.206055pt;}
.h3a{height:52.000000pt;}
.h31{height:53.605469pt;}
.h37{height:53.606120pt;}
.h6{height:56.333336pt;}
.h1e{height:65.333333pt;}
.ha{height:66.808593pt;}
.hd{height:73.408589pt;}
.h3{height:78.000000pt;}
.h1c{height:82.198568pt;}
.h26{height:84.411133pt;}
.h38{height:84.411459pt;}
.h17{height:84.411540pt;}
.h30{height:84.412109pt;}
.h39{height:86.611328pt;}
.h2f{height:102.013997pt;}
.h28{height:102.014323pt;}
.h16{height:103.307048pt;}
.h20{height:103.307129pt;}
.h27{height:103.307292pt;}
.h34{height:113.014323pt;}
.h1a{height:133.531901pt;}
.h1f{height:137.220052pt;}
.h1{height:142.014973pt;}
.h2b{height:260.440427pt;}
.h2e{height:313.248693pt;}
.h13{height:382.505333pt;}
.h0{height:1056.000000pt;}
.w6{width:65.000000pt;}
.w18{width:78.000000pt;}
.w14{width:79.000000pt;}
.w1b{width:113.000000pt;}
.w8{width:118.000000pt;}
.w9{width:119.000000pt;}
.wf{width:120.000000pt;}
.w11{width:122.000000pt;}
.we{width:123.000000pt;}
.wc{width:127.000000pt;}
.w16{width:131.000000pt;}
.w12{width:132.000000pt;}
.wb{width:146.000000pt;}
.w17{width:152.000000pt;}
.w13{width:153.000000pt;}
.w2{width:156.000000pt;}
.w5{width:179.000000pt;}
.w4{width:186.000000pt;}
.w1e{width:187.000000pt;}
.w1f{width:223.000000pt;}
.w1d{width:229.000000pt;}
.w1a{width:230.000000pt;}
.w7{width:280.000000pt;}
.wa{width:287.000000pt;}
.w15{width:351.000000pt;}
.w1c{width:367.000000pt;}
.w19{width:368.000000pt;}
.w10{width:473.000000pt;}
.wd{width:474.000000pt;}
.w3{width:553.000000pt;}
.w1{width:714.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.000000pt;}
.xf{left:11.000000pt;}
.x1e{left:12.000000pt;}
.x22{left:17.000000pt;}
.x32{left:26.020386pt;}
.x1c{left:30.000000pt;}
.x1f{left:36.000000pt;}
.x9{left:48.000000pt;}
.xc{left:49.000000pt;}
.x7{left:50.000000pt;}
.xa{left:51.000000pt;}
.x1d{left:54.000000pt;}
.x2d{left:58.487625pt;}
.x2f{left:60.613068pt;}
.x21{left:70.935516pt;}
.x16{left:89.996887pt;}
.x6{left:96.000000pt;}
.x30{left:101.926514pt;}
.x24{left:107.382782pt;}
.xe{left:113.698685pt;}
.x10{left:116.003143pt;}
.x26{left:119.190796pt;}
.x2e{left:121.069855pt;}
.x25{left:134.412689pt;}
.x11{left:135.404068pt;}
.x27{left:138.312668pt;}
.x36{left:155.699539pt;}
.x15{left:169.000000pt;}
.x33{left:170.000000pt;}
.x2a{left:182.000000pt;}
.x14{left:204.091280pt;}
.x1b{left:207.000000pt;}
.xb{left:209.000000pt;}
.xd{left:237.000000pt;}
.x17{left:289.000000pt;}
.x5{left:327.556640pt;}
.x2b{left:336.000000pt;}
.x34{left:359.000000pt;}
.x18{left:409.000000pt;}
.x2c{left:416.000000pt;}
.x12{left:417.000000pt;}
.x31{left:418.000000pt;}
.x13{left:484.000000pt;}
.x35{left:493.000000pt;}
.x20{left:495.000000pt;}
.x28{left:524.000000pt;}
.x19{left:529.000000pt;}
.x1{left:534.543150pt;}
.x2{left:597.131770pt;}
.x23{left:642.000000pt;}
.x29{left:648.000000pt;}
.x1a{left:649.000000pt;}
.x3{left:696.647710pt;}
.x4{left:768.000000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  