
    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_83986a8b25d41953c07a3ea0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.008000;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_b2b5af61551b3b7909188441.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.019000;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_0a82e2e80f5cf8743677a8c9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_5b0a068cd2fdd1345372de07.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a7e6227cf279139932059b53.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_82ec8e95d00e02d5d97e7643.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_337f968e67d1b3b9105baa82.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_30da9476b3f6c43d83fc30b6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893066;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_62390d4044718e412734718a.woff2')format("woff");}.ff9{font-family:ff9;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;}
.m3{transform:matrix(0.076029,0.238159,-0.238110,0.076180,0,0);-ms-transform:matrix(0.076029,0.238159,-0.238110,0.076180,0,0);-webkit-transform:matrix(0.076029,0.238159,-0.238110,0.076180,0,0);}
.m6{transform:matrix(0.188168,-0.164598,0.164411,0.188332,0,0);-ms-transform:matrix(0.188168,-0.164598,0.164411,0.188332,0,0);-webkit-transform:matrix(0.188168,-0.164598,0.164411,0.188332,0,0);}
.m2{transform:matrix(0.188193,-0.164570,0.164411,0.188332,0,0);-ms-transform:matrix(0.188193,-0.164570,0.164411,0.188332,0,0);-webkit-transform:matrix(0.188193,-0.164570,0.164411,0.188332,0,0);}
.m4{transform:matrix(0.226011,0.106859,-0.106777,0.226050,0,0);-ms-transform:matrix(0.226011,0.106859,-0.106777,0.226050,0,0);-webkit-transform:matrix(0.226011,0.106859,-0.106777,0.226050,0,0);}
.mb{transform:matrix(0.237313,-0.078628,0.078428,0.237380,0,0);-ms-transform:matrix(0.237313,-0.078628,0.078428,0.237380,0,0);-webkit-transform:matrix(0.237313,-0.078628,0.078428,0.237380,0,0);}
.ma{transform:matrix(0.241544,0.064469,-0.064572,0.241517,0,0);-ms-transform:matrix(0.241544,0.064469,-0.064572,0.241517,0,0);-webkit-transform:matrix(0.241544,0.064469,-0.064572,0.241517,0,0);}
.m8{transform:matrix(0.250000,0.000393,-0.000420,0.250000,0,0);-ms-transform:matrix(0.250000,0.000393,-0.000420,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000393,-0.000420,0.250000,0,0);}
.m9{transform:matrix(0.250000,0.000253,-0.000420,0.250000,0,0);-ms-transform:matrix(0.250000,0.000253,-0.000420,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000253,-0.000420,0.250000,0,0);}
.m7{transform:matrix(0.250000,0.001281,0.000321,0.250000,0,0);-ms-transform:matrix(0.250000,0.001281,0.000321,0.250000,0,0);-webkit-transform:matrix(0.250000,0.001281,0.000321,0.250000,0,0);}
.m5{transform:matrix(0.250000,0.000131,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000131,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000131,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);}
.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;}
.ls2{letter-spacing:107.972021px;}
.ls4{letter-spacing:107.986084px;}
.ls1{letter-spacing:107.986185px;}
.ls3{letter-spacing:107.986253px;}
.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;}
}
.ws6{word-spacing:-34.914000px;}
.ws7{word-spacing:-23.268000px;}
.ws4{word-spacing:-22.428000px;}
.ws5{word-spacing:-21.252000px;}
.ws3{word-spacing:-20.826001px;}
.wsa{word-spacing:-19.944001px;}
.wsb{word-spacing:-19.224001px;}
.ws0{word-spacing:-17.622001px;}
.ws8{word-spacing:-16.020000px;}
.wse{word-spacing:-13.617000px;}
.ws9{word-spacing:-13.500000px;}
.wsd{word-spacing:-12.903000px;}
.ws1{word-spacing:-11.214000px;}
.ws2{word-spacing:0.000000px;}
.wsc{word-spacing:512.467504px;}
._8{margin-left:-17.664000px;}
._9{margin-left:-14.970000px;}
._d{margin-left:-12.288001px;}
._a{margin-left:-10.590257px;}
._6{margin-left:-9.449741px;}
._2{margin-left:-7.488001px;}
._3{margin-left:-6.006000px;}
._4{margin-left:-4.488000px;}
._0{margin-left:-3.036000px;}
._1{margin-left:-1.560000px;}
._5{width:1.464000px;}
._7{width:2.688000px;}
._c{width:4.603397px;}
._b{width:5.916002px;}
.fc10{color:rgb(0,79,159);}
.fcd{color:rgb(0,0,255);}
.fc0{color:rgb(19,41,75);}
.fc1{color:rgb(0,151,167);}
.fc2{color:rgb(0,132,255);}
.fc5{color:rgb(0,0,0);}
.fc3{color:rgb(47,52,61);}
.fc6{color:rgb(255,255,255);}
.fc4{color:rgb(4,51,88);}
.fc7{color:rgb(7,42,84);}
.fc8{color:rgb(255,128,0);}
.fce{color:rgb(95,152,196);}
.fcc{color:rgb(89,89,89);}
.fc9{color:rgb(255,153,0);}
.fca{color:rgb(230,145,56);}
.fcf{color:rgb(4,50,87);}
.fcb{color:rgb(4,51,92);}
.fs3{font-size:42.000000px;}
.fsa{font-size:44.487001px;}
.fs12{font-size:48.000002px;}
.fsd{font-size:48.000006px;}
.fsf{font-size:48.000008px;}
.fsc{font-size:48.000012px;}
.fs13{font-size:48.000013px;}
.fs11{font-size:48.000017px;}
.fsb{font-size:48.000020px;}
.fs10{font-size:48.000028px;}
.fs15{font-size:51.000000px;}
.fs9{font-size:54.000002px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000004px;}
.fse{font-size:72.000002px;}
.fs4{font-size:78.000005px;}
.fs5{font-size:84.000000px;}
.fs14{font-size:96.000006px;}
.fs8{font-size:102.000000px;}
.fs6{font-size:138.000001px;}
.fs1{font-size:156.000011px;}
.fs0{font-size:276.000003px;}
.y0{bottom:0.000000px;}
.ya8{bottom:7.739506px;}
.y70{bottom:10.334064px;}
.y52{bottom:14.912801px;}
.y1c{bottom:16.742996px;}
.ya{bottom:19.697923px;}
.y6f{bottom:22.934066px;}
.y41{bottom:23.331950px;}
.yaa{bottom:23.746214px;}
.y1a4{bottom:24.825469px;}
.yd3{bottom:25.839020px;}
.y67{bottom:26.701224px;}
.y1a3{bottom:27.096297px;}
.yc3{bottom:30.062997px;}
.y43{bottom:30.452888px;}
.y9{bottom:32.297922px;}
.y11a{bottom:33.174324px;}
.y17b{bottom:33.317343px;}
.y139{bottom:34.740758px;}
.y6e{bottom:35.534065px;}
.ya9{bottom:36.346213px;}
.ya7{bottom:36.719518px;}
.y32{bottom:42.830869px;}
.yc2{bottom:43.409097px;}
.y160{bottom:43.521136px;}
.y1b{bottom:43.652974px;}
.y51{bottom:43.892813px;}
.y1a2{bottom:44.691275px;}
.y6d{bottom:48.134064px;}
.y40{bottom:52.311962px;}
.yac{bottom:52.965815px;}
.ybd{bottom:53.471525px;}
.y119{bottom:54.774320px;}
.y128{bottom:55.134545px;}
.y66{bottom:55.681236px;}
.yc1{bottom:56.755197px;}
.yba{bottom:57.862033px;}
.y42{bottom:59.432900px;}
.y138{bottom:59.940759px;}
.y1a1{bottom:62.286265px;}
.ya6{bottom:65.699530px;}
.yab{bottom:66.311915px;}
.ybc{bottom:66.817625px;}
.y50{bottom:72.872825px;}
.y14c{bottom:74.617237px;}
.y137{bottom:76.140748px;}
.y118{bottom:76.374318px;}
.y127{bottom:76.734543px;}
.y1a0{bottom:79.881231px;}
.ybb{bottom:80.163726px;}
.y3f{bottom:81.291975px;}
.y1a5{bottom:82.209324px;}
.yd2{bottom:83.799044px;}
.y8{bottom:84.241457px;}
.y65{bottom:84.661249px;}
.yc0{bottom:86.842045px;}
.y31{bottom:88.412912px;}
.y14b{bottom:90.791272px;}
.yde{bottom:91.352571px;}
.y86{bottom:91.367331px;}
.y14e{bottom:92.204363px;}
.y136{bottom:92.340749px;}
.y1a{bottom:97.472931px;}
.y19f{bottom:97.476232px;}
.y117{bottom:97.974321px;}
.y126{bottom:98.334546px;}
.y4f{bottom:101.852838px;}
.y14a{bottom:106.991272px;}
.y7{bottom:107.011452px;}
.ydd{bottom:107.552573px;}
.y85{bottom:107.567333px;}
.y7c{bottom:108.249712px;}
.y14d{bottom:108.404362px;}
.y135{bottom:108.540738px;}
.y1a7{bottom:111.074051px;}
.y120{bottom:112.604080px;}
.y80{bottom:113.322314px;}
.y64{bottom:113.641261px;}
.y19e{bottom:115.071210px;}
.yb9{bottom:115.822069px;}
.y2d{bottom:117.392936px;}
.y116{bottom:119.574322px;}
.y125{bottom:119.934547px;}
.yda{bottom:120.181777px;}
.y184{bottom:123.382092px;}
.ya5{bottom:123.659555px;}
.y150{bottom:124.214506px;}
.y19{bottom:124.382932px;}
.y157{bottom:124.406670px;}
.y7b{bottom:124.449713px;}
.y134{bottom:124.740727px;}
.y73{bottom:124.775617px;}
.y10f{bottom:128.804081px;}
.y7f{bottom:129.522315px;}
.y11e{bottom:131.190825px;}
.y54{bottom:131.286835px;}
.yfc{bottom:132.180307px;}
.y19d{bottom:132.666188px;}
.y1a6{bottom:136.274050px;}
.yd9{bottom:136.381779px;}
.y72{bottom:137.375616px;}
.y3e{bottom:139.252010px;}
.y14f{bottom:140.414505px;}
.y133{bottom:140.940728px;}
.y4e{bottom:141.332891px;}
.yd1{bottom:141.759080px;}
.y122{bottom:141.956569px;}
.yb6{bottom:144.802070px;}
.y11f{bottom:145.004080px;}
.y7e{bottom:145.722316px;}
.y30{bottom:146.372936px;}
.yf1{bottom:146.971403px;}
.y10e{bottom:147.390825px;}
.y145{bottom:147.623119px;}
.yfb{bottom:148.380309px;}
.y71{bottom:149.975615px;}
.y19c{bottom:150.261177px;}
.y155{bottom:150.618544px;}
.y6c{bottom:150.873825px;}
.y6{bottom:152.551448px;}
.ya4{bottom:152.639578px;}
.y132{bottom:157.140717px;}
.y110{bottom:158.156569px;}
.yf5{bottom:159.033181px;}
.y7d{bottom:161.922317px;}
.yf0{bottom:163.171404px;}
.y11d{bottom:163.590825px;}
.y144{bottom:163.823121px;}
.y154{bottom:166.818547px;}
.y19b{bottom:167.856155px;}
.y3d{bottom:168.232011px;}
.y4d{bottom:170.312904px;}
.yd0{bottom:170.739081px;}
.y63{bottom:171.601285px;}
.y131{bottom:173.340717px;}
.yb5{bottom:173.782071px;}
.y121{bottom:174.356569px;}
.yf4{bottom:175.233181px;}
.y5{bottom:175.321449px;}
.y2c{bottom:175.352937px;}
.y158{bottom:175.735263px;}
.y18{bottom:178.202889px;}
.y143{bottom:180.023123px;}
.y156{bottom:180.642933px;}
.y6b{bottom:181.248826px;}
.y183{bottom:181.342116px;}
.y153{bottom:183.018548px;}
.y112{bottom:184.245499px;}
.y124{bottom:184.247475px;}
.y19a{bottom:185.451122px;}
.y130{bottom:189.540718px;}
.yf3{bottom:191.433183px;}
.y111{bottom:195.093438px;}
.y123{bottom:195.095416px;}
.y3c{bottom:197.212012px;}
.ycf{bottom:199.719081px;}
.y62{bottom:200.581286px;}
.yb8{bottom:202.762094px;}
.y199{bottom:203.046123px;}
.y15a{bottom:203.925871px;}
.y2b{bottom:204.332961px;}
.y17{bottom:205.112867px;}
.y12f{bottom:205.740730px;}
.yf2{bottom:207.633183px;}
.y4c{bottom:209.792957px;}
.ya3{bottom:210.599580px;}
.y6a{bottom:211.623827px;}
.y152{bottom:218.212264px;}
.y198{bottom:220.641101px;}
.y142{bottom:221.498586px;}
.y12e{bottom:221.940736px;}
.y7a{bottom:224.936720px;}
.y114{bottom:228.312187px;}
.y61{bottom:229.561309px;}
.yb4{bottom:231.742106px;}
.y16{bottom:232.022845px;}
.y113{bottom:232.700158px;}
.y2f{bottom:233.312973px;}
.y149{bottom:233.884338px;}
.y151{bottom:234.412263px;}
.y84{bottom:236.006561px;}
.y141{bottom:237.698589px;}
.y12d{bottom:238.140742px;}
.y197{bottom:238.236090px;}
.y56{bottom:238.332048px;}
.y4b{bottom:238.772969px;}
.y182{bottom:239.302140px;}
.ya2{bottom:239.579603px;}
.y115{bottom:241.449560px;}
.y109{bottom:241.527746px;}
.y69{bottom:241.998825px;}
.y79{bottom:243.181060px;}
.y4{bottom:244.288698px;}
.yef{bottom:246.032721px;}
.y148{bottom:246.613897px;}
.y10d{bottom:249.636791px;}
.y83{bottom:252.206562px;}
.y140{bottom:253.898590px;}
.y12c{bottom:254.340731px;}
.y3b{bottom:255.172048px;}
.y196{bottom:255.831068px;}
.yd8{bottom:256.795506px;}
.yce{bottom:257.679117px;}
.y108{bottom:257.727750px;}
.y60{bottom:258.541322px;}
.y15{bottom:258.932824px;}
.y78{bottom:259.381063px;}
.yb3{bottom:260.722118px;}
.y2a{bottom:262.292985px;}
.yfa{bottom:262.789515px;}
.y147{bottom:262.813900px;}
.y10c{bottom:265.836792px;}
.y181{bottom:268.282152px;}
.ya1{bottom:268.559615px;}
.y13f{bottom:269.595066px;}
.yee{bottom:269.964004px;}
.y12b{bottom:270.540732px;}
.y11c{bottom:271.654926px;}
.y68{bottom:272.373826px;}
.y195{bottom:273.426058px;}
.y107{bottom:273.927749px;}
.y4a{bottom:278.253001px;}
.yf9{bottom:278.989517px;}
.y146{bottom:279.013901px;}
.y3a{bottom:284.152060px;}
.y13e{bottom:285.795065px;}
.yed{bottom:286.164007px;}
.ycd{bottom:286.659129px;}
.y12a{bottom:286.740728px;}
.y5f{bottom:287.521334px;}
.ybf{bottom:289.702131px;}
.y194{bottom:291.021036px;}
.y3{bottom:291.088711px;}
.y29{bottom:291.272997px;}
.ye7{bottom:291.273774px;}
.ya0{bottom:297.539628px;}
.y77{bottom:306.880652px;}
.y49{bottom:307.232990px;}
.y193{bottom:308.616014px;}
.yff{bottom:308.847662px;}
.ye6{bottom:311.073786px;}
.y170{bottom:312.662477px;}
.y14{bottom:312.752848px;}
.y39{bottom:313.132072px;}
.y129{bottom:313.440729px;}
.y11b{bottom:314.875740px;}
.ycc{bottom:315.639141px;}
.yb2{bottom:318.682132px;}
.y28{bottom:320.252998px;}
.y55{bottom:321.132032px;}
.y94{bottom:322.149871px;}
.y76{bottom:323.080652px;}
.y192{bottom:326.211014px;}
.y180{bottom:326.242132px;}
.y9f{bottom:326.519640px;}
.y159{bottom:329.746874px;}
.y82{bottom:330.346971px;}
.ye5{bottom:330.873775px;}
.y16f{bottom:334.262471px;}
.y16a{bottom:334.265362px;}
.yec{bottom:335.540106px;}
.y2{bottom:337.888701px;}
.y75{bottom:339.280653px;}
.y13{bottom:339.662849px;}
.y165{bottom:340.340902px;}
.ydc{bottom:342.488703px;}
.y191{bottom:343.806015px;}
.y5e{bottom:345.481347px;}
.y81{bottom:346.546973px;}
.y48{bottom:346.712977px;}
.ybe{bottom:347.662121px;}
.y27{bottom:349.232988px;}
.y106{bottom:350.149368px;}
.yf7{bottom:350.345984px;}
.ye4{bottom:350.673771px;}
.y10b{bottom:350.919833px;}
.yeb{bottom:351.740107px;}
.y9e{bottom:355.499641px;}
.y16e{bottom:355.862467px;}
.y169{bottom:355.865358px;}
.ydb{bottom:358.688704px;}
.y190{bottom:361.401015px;}
.y13b{bottom:362.771206px;}
.yf6{bottom:366.545986px;}
.y12{bottom:366.572850px;}
.y10a{bottom:367.119833px;}
.yea{bottom:367.940107px;}
.yd7{bottom:369.108510px;}
.y93{bottom:369.551939px;}
.y105{bottom:369.949364px;}
.ye3{bottom:370.473769px;}
.y38{bottom:371.092063px;}
.y164{bottom:372.965903px;}
.ycb{bottom:373.599132px;}
.y1d{bottom:374.924335px;}
.y47{bottom:375.692978px;}
.yb1{bottom:376.642111px;}
.y16d{bottom:377.462465px;}
.y168{bottom:377.465357px;}
.y26{bottom:378.212978px;}
.y13a{bottom:378.971205px;}
.y18f{bottom:378.996016px;}
.y17f{bottom:384.202122px;}
.yd6{bottom:385.308510px;}
.y15f{bottom:389.074097px;}
.y104{bottom:389.749363px;}
.ye2{bottom:390.273766px;}
.y1{bottom:391.888695px;}
.y90{bottom:393.127314px;}
.y17a{bottom:393.127316px;}
.ye9{bottom:395.009554px;}
.yf8{bottom:396.585446px;}
.y18e{bottom:396.591017px;}
.y16c{bottom:399.062468px;}
.y167{bottom:399.065360px;}
.y37{bottom:400.072052px;}
.y161{bottom:400.801156px;}
.yd5{bottom:401.508511px;}
.yca{bottom:402.579122px;}
.y5d{bottom:403.441326px;}
.y163{bottom:405.590900px;}
.yd4{bottom:405.622112px;}
.y25{bottom:407.192979px;}
.yfe{bottom:407.375865px;}
.y53{bottom:407.660329px;}
.y103{bottom:409.549359px;}
.ye1{bottom:410.073766px;}
.y15e{bottom:410.674100px;}
.y15c{bottom:411.093074px;}
.ye8{bottom:411.209556px;}
.y8f{bottom:412.927325px;}
.y179{bottom:412.927328px;}
.y17e{bottom:413.182112px;}
.y9d{bottom:413.459620px;}
.y18d{bottom:414.186017px;}
.y46{bottom:415.172964px;}
.y92{bottom:417.333853px;}
.y11{bottom:420.392840px;}
.y16b{bottom:420.662469px;}
.y166{bottom:420.665360px;}
.yfd{bottom:423.575864px;}
.y15b{bottom:425.493073px;}
.y102{bottom:429.349359px;}
.ye0{bottom:429.873767px;}
.yc9{bottom:431.559123px;}
.y18c{bottom:431.781018px;}
.y15d{bottom:432.274101px;}
.y5c{bottom:432.421327px;}
.y8e{bottom:432.727337px;}
.y178{bottom:432.727340px;}
.y91{bottom:433.533854px;}
.yb0{bottom:434.602101px;}
.y2e{bottom:436.172968px;}
.y162{bottom:438.215901px;}
.y96{bottom:438.516580px;}
.y13d{bottom:442.000621px;}
.y9c{bottom:442.439621px;}
.y10{bottom:447.302841px;}
.y20{bottom:449.060320px;}
.y101{bottom:449.149360px;}
.y18b{bottom:449.376029px;}
.ydf{bottom:449.673767px;}
.y8d{bottom:452.527327px;}
.y177{bottom:452.527329px;}
.y45{bottom:454.652973px;}
.y95{bottom:454.716581px;}
.y36{bottom:458.032043px;}
.y13c{bottom:458.200621px;}
.yc8{bottom:460.539112px;}
.y5b{bottom:461.401317px;}
.yaf{bottom:463.582102px;}
.y24{bottom:465.152969px;}
.y18a{bottom:466.971026px;}
.y100{bottom:468.949361px;}
.y17d{bottom:471.142091px;}
.y9b{bottom:471.419611px;}
.y8c{bottom:472.327323px;}
.y176{bottom:472.327325px;}
.yf{bottom:474.212842px;}
.y74{bottom:481.958612px;}
.y44{bottom:483.632968px;}
.y189{bottom:484.566025px;}
.y35{bottom:487.012044px;}
.yc7{bottom:489.519113px;}
.y5a{bottom:490.381318px;}
.y1f{bottom:490.460321px;}
.y8b{bottom:492.127321px;}
.y175{bottom:492.127323px;}
.yb7{bottom:492.562092px;}
.y23{bottom:494.132959px;}
.y17c{bottom:500.122088px;}
.y9a{bottom:500.399612px;}
.ye{bottom:501.122838px;}
.y188{bottom:502.161026px;}
.y8a{bottom:511.927317px;}
.y174{bottom:511.927320px;}
.yc6{bottom:518.499103px;}
.y59{bottom:519.361307px;}
.y187{bottom:519.756025px;}
.yae{bottom:521.542090px;}
.y22{bottom:523.112956px;}
.yd{bottom:528.032837px;}
.y99{bottom:529.379601px;}
.y89{bottom:531.727318px;}
.y173{bottom:531.727320px;}
.y1e{bottom:531.860312px;}
.y186{bottom:537.351024px;}
.y34{bottom:544.972031px;}
.yc5{bottom:547.479100px;}
.y58{bottom:548.341305px;}
.yad{bottom:550.522085px;}
.y88{bottom:551.527319px;}
.y172{bottom:551.527321px;}
.y21{bottom:552.092952px;}
.yc{bottom:554.942835px;}
.y185{bottom:554.946022px;}
.y98{bottom:558.359599px;}
.y87{bottom:571.327319px;}
.y171{bottom:571.327321px;}
.y33{bottom:573.952026px;}
.yc4{bottom:576.459096px;}
.y57{bottom:577.321300px;}
.yb{bottom:581.852834px;}
.y97{bottom:587.339594px;}
.h5{height:32.676000px;}
.h1b{height:33.351564px;}
.h11{height:33.351567px;}
.h14{height:33.351568px;}
.h10{height:33.351571px;}
.h19{height:33.351574px;}
.hf{height:33.351577px;}
.h15{height:33.351582px;}
.he{height:34.610887px;}
.h18{height:36.571290px;}
.h16{height:36.597657px;}
.h20{height:37.344002px;}
.h17{height:37.494142px;}
.hd{height:37.520509px;}
.h1a{height:37.624365px;}
.h1f{height:39.678000px;}
.h1e{height:40.749000px;}
.hb{height:46.680000px;}
.h3{height:51.348003px;}
.h4{height:52.734003px;}
.h13{height:56.016002px;}
.h12{height:57.528002px;}
.h7{height:60.684004px;}
.h21{height:61.154297px;}
.h6{height:62.322004px;}
.h8{height:65.352000px;}
.ha{height:67.116000px;}
.h1c{height:68.448004px;}
.h1d{height:74.688005px;}
.hc{height:79.356000px;}
.h9{height:110.262001px;}
.h2{height:121.368009px;}
.h1{height:214.728002px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x2e{left:20.418309px;}
.x7a{left:23.622048px;}
.x79{left:28.125001px;}
.xd{left:42.425197px;}
.xc{left:45.429456px;}
.x10{left:52.358271px;}
.x49{left:64.723537px;}
.x76{left:73.529093px;}
.x7b{left:77.622050px;}
.x2c{left:79.714771px;}
.x47{left:91.312367px;}
.x61{left:97.888337px;}
.x31{left:102.670282px;}
.x48{left:105.567128px;}
.x2b{left:108.514925px;}
.x62{left:114.769930px;}
.x59{left:116.245668px;}
.x50{left:117.432191px;}
.x66{left:123.951137px;}
.x67{left:126.956997px;}
.x5a{left:133.127260px;}
.x58{left:134.488467px;}
.x35{left:142.072317px;}
.x51{left:155.352393px;}
.x15{left:158.608792px;}
.x1e{left:160.887279px;}
.x52{left:164.822469px;}
.x17{left:172.665576px;}
.x14{left:173.697828px;}
.x74{left:180.141846px;}
.x16{left:191.284915px;}
.x75{left:196.783476px;}
.x18{left:198.646656px;}
.x1a{left:214.356845px;}
.x1b{left:223.552402px;}
.x32{left:229.903108px;}
.x1f{left:233.142782px;}
.x1c{left:234.422276px;}
.x36{left:237.598491px;}
.x33{left:239.098665px;}
.x3d{left:241.641359px;}
.x4f{left:246.796307px;}
.x20{left:248.887290px;}
.x34{left:249.968539px;}
.x37{left:253.342999px;}
.x3e{left:261.706790px;}
.x70{left:262.750340px;}
.x2d{left:263.789229px;}
.x5e{left:270.972852px;}
.x63{left:273.511096px;}
.x53{left:276.966082px;}
.x5b{left:278.114733px;}
.x40{left:279.837236px;}
.x1{left:282.513715px;}
.x2f{left:286.101437px;}
.x30{left:290.655032px;}
.x41{left:295.581744px;}
.x9{left:308.176210px;}
.x7d{left:320.943514px;}
.x7c{left:338.951137px;}
.x72{left:340.314570px;}
.x13{left:342.124672px;}
.x54{left:345.095079px;}
.x57{left:378.633994px;}
.x5{left:381.962746px;}
.x27{left:384.404506px;}
.x26{left:394.031825px;}
.x2{left:396.523036px;}
.x39{left:402.203739px;}
.x12{left:407.979677px;}
.x46{left:410.385774px;}
.x38{left:411.831058px;}
.x7f{left:413.857684px;}
.x4{left:416.660728px;}
.x3f{left:417.746774px;}
.x5c{left:419.047098px;}
.x7{left:420.099865px;}
.x1d{left:422.806115px;}
.x68{left:424.152563px;}
.x6{left:432.515084px;}
.x8{left:439.144102px;}
.x3{left:443.601442px;}
.x3b{left:445.028513px;}
.x65{left:450.456681px;}
.x5f{left:453.588720px;}
.x60{left:456.212254px;}
.x3c{left:464.527050px;}
.x64{left:468.089739px;}
.x29{left:473.001425px;}
.x2a{left:492.499962px;}
.x11{left:495.351410px;}
.x19{left:501.806353px;}
.x56{left:509.712496px;}
.x6d{left:521.464586px;}
.x55{left:523.293283px;}
.x6c{left:530.073474px;}
.x6e{left:533.448474px;}
.x4b{left:544.686002px;}
.x4c{left:553.881559px;}
.x4e{left:562.133460px;}
.x4d{left:564.751433px;}
.xa{left:573.635917px;}
.x42{left:581.835251px;}
.x44{left:584.847703px;}
.x21{left:590.445720px;}
.x71{left:595.024266px;}
.x43{left:597.589647px;}
.x23{left:602.224430px;}
.x22{left:606.200116px;}
.xb{left:612.410465px;}
.x6f{left:616.041743px;}
.xf{left:626.733461px;}
.x24{left:661.171784px;}
.x45{left:662.486711px;}
.xe{left:666.410466px;}
.x25{left:681.296541px;}
.x5d{left:734.444911px;}
.x69{left:738.566519px;}
.x6a{left:747.406492px;}
.x73{left:754.502987px;}
.x6b{left:756.780027px;}
.x3a{left:831.599419px;}
.x7e{left:835.290364px;}
.x4a{left:842.701797px;}
.x28{left:859.833703px;}
.x78{left:877.712822px;}
.x77{left:879.014953px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:95.975130pt;}
.ls4{letter-spacing:95.987631pt;}
.ls1{letter-spacing:95.987720pt;}
.ls3{letter-spacing:95.987780pt;}
.ws6{word-spacing:-31.034667pt;}
.ws7{word-spacing:-20.682667pt;}
.ws4{word-spacing:-19.936000pt;}
.ws5{word-spacing:-18.890667pt;}
.ws3{word-spacing:-18.512001pt;}
.wsa{word-spacing:-17.728001pt;}
.wsb{word-spacing:-17.088001pt;}
.ws0{word-spacing:-15.664001pt;}
.ws8{word-spacing:-14.240000pt;}
.wse{word-spacing:-12.104000pt;}
.ws9{word-spacing:-12.000000pt;}
.wsd{word-spacing:-11.469333pt;}
.ws1{word-spacing:-9.968000pt;}
.ws2{word-spacing:0.000000pt;}
.wsc{word-spacing:455.526671pt;}
._8{margin-left:-15.701333pt;}
._9{margin-left:-13.306667pt;}
._d{margin-left:-10.922667pt;}
._a{margin-left:-9.413562pt;}
._6{margin-left:-8.399770pt;}
._2{margin-left:-6.656000pt;}
._3{margin-left:-5.338667pt;}
._4{margin-left:-3.989334pt;}
._0{margin-left:-2.698667pt;}
._1{margin-left:-1.386667pt;}
._5{width:1.301334pt;}
._7{width:2.389333pt;}
._c{width:4.091908pt;}
._b{width:5.258668pt;}
.fs3{font-size:37.333333pt;}
.fsa{font-size:39.544001pt;}
.fs12{font-size:42.666669pt;}
.fsd{font-size:42.666672pt;}
.fsf{font-size:42.666674pt;}
.fsc{font-size:42.666677pt;}
.fs13{font-size:42.666678pt;}
.fs11{font-size:42.666681pt;}
.fsb{font-size:42.666685pt;}
.fs10{font-size:42.666692pt;}
.fs15{font-size:45.333333pt;}
.fs9{font-size:48.000002pt;}
.fs7{font-size:53.333334pt;}
.fs2{font-size:58.666670pt;}
.fse{font-size:64.000002pt;}
.fs4{font-size:69.333338pt;}
.fs5{font-size:74.666666pt;}
.fs14{font-size:85.333339pt;}
.fs8{font-size:90.666667pt;}
.fs6{font-size:122.666668pt;}
.fs1{font-size:138.666676pt;}
.fs0{font-size:245.333336pt;}
.y0{bottom:0.000000pt;}
.ya8{bottom:6.879561pt;}
.y70{bottom:9.185835pt;}
.y52{bottom:13.255823pt;}
.y1c{bottom:14.882663pt;}
.ya{bottom:17.509265pt;}
.y6f{bottom:20.385836pt;}
.y41{bottom:20.739511pt;}
.yaa{bottom:21.107745pt;}
.y1a4{bottom:22.067083pt;}
.yd3{bottom:22.968017pt;}
.y67{bottom:23.734421pt;}
.y1a3{bottom:24.085597pt;}
.yc3{bottom:26.722664pt;}
.y43{bottom:27.069234pt;}
.y9{bottom:28.709264pt;}
.y11a{bottom:29.488288pt;}
.y17b{bottom:29.615416pt;}
.y139{bottom:30.880674pt;}
.y6e{bottom:31.585836pt;}
.ya9{bottom:32.307745pt;}
.ya7{bottom:32.639572pt;}
.y32{bottom:38.071884pt;}
.yc2{bottom:38.585864pt;}
.y160{bottom:38.685454pt;}
.y1b{bottom:38.802644pt;}
.y51{bottom:39.015834pt;}
.y1a2{bottom:39.725578pt;}
.y6d{bottom:42.785835pt;}
.y40{bottom:46.499522pt;}
.yac{bottom:47.080724pt;}
.ybd{bottom:47.530244pt;}
.y119{bottom:48.688284pt;}
.y128{bottom:49.008484pt;}
.y66{bottom:49.494432pt;}
.yc1{bottom:50.449064pt;}
.yba{bottom:51.432918pt;}
.y42{bottom:52.829244pt;}
.y138{bottom:53.280674pt;}
.y1a1{bottom:55.365568pt;}
.ya6{bottom:58.399582pt;}
.yab{bottom:58.943925pt;}
.ybc{bottom:59.393445pt;}
.y50{bottom:64.775845pt;}
.y14c{bottom:66.326433pt;}
.y137{bottom:67.680665pt;}
.y118{bottom:67.888283pt;}
.y127{bottom:68.208483pt;}
.y1a0{bottom:71.005539pt;}
.ybb{bottom:71.256645pt;}
.y3f{bottom:72.259533pt;}
.y1a5{bottom:73.074955pt;}
.yd2{bottom:74.488039pt;}
.y8{bottom:74.881295pt;}
.y65{bottom:75.254443pt;}
.yc0{bottom:77.192929pt;}
.y31{bottom:78.589255pt;}
.y14b{bottom:80.703353pt;}
.yde{bottom:81.202285pt;}
.y86{bottom:81.215405pt;}
.y14e{bottom:81.959433pt;}
.y136{bottom:82.080665pt;}
.y1a{bottom:86.642605pt;}
.y19f{bottom:86.645539pt;}
.y117{bottom:87.088286pt;}
.y126{bottom:87.408486pt;}
.y4f{bottom:90.535856pt;}
.y14a{bottom:95.103353pt;}
.y7{bottom:95.121291pt;}
.ydd{bottom:95.602287pt;}
.y85{bottom:95.615407pt;}
.y7c{bottom:96.221966pt;}
.y14d{bottom:96.359433pt;}
.y135{bottom:96.480656pt;}
.y1a7{bottom:98.732490pt;}
.y120{bottom:100.092516pt;}
.y80{bottom:100.730946pt;}
.y64{bottom:101.014454pt;}
.y19e{bottom:102.285520pt;}
.yb9{bottom:102.952950pt;}
.y2d{bottom:104.349276pt;}
.y116{bottom:106.288286pt;}
.y125{bottom:106.608486pt;}
.yda{bottom:106.828246pt;}
.y184{bottom:109.672970pt;}
.ya5{bottom:109.919604pt;}
.y150{bottom:110.412894pt;}
.y19{bottom:110.562606pt;}
.y157{bottom:110.583706pt;}
.y7b{bottom:110.621967pt;}
.y134{bottom:110.880646pt;}
.y73{bottom:110.911659pt;}
.y10f{bottom:114.492516pt;}
.y7f{bottom:115.130946pt;}
.y11e{bottom:116.614066pt;}
.y54{bottom:116.699408pt;}
.yfc{bottom:117.493606pt;}
.y19d{bottom:117.925500pt;}
.y1a6{bottom:121.132489pt;}
.yd9{bottom:121.228248pt;}
.y72{bottom:122.111659pt;}
.y3e{bottom:123.779565pt;}
.y14f{bottom:124.812894pt;}
.y133{bottom:125.280647pt;}
.y4e{bottom:125.629237pt;}
.yd1{bottom:126.008071pt;}
.y122{bottom:126.183617pt;}
.yb6{bottom:128.712951pt;}
.y11f{bottom:128.892516pt;}
.y7e{bottom:129.530948pt;}
.y30{bottom:130.109277pt;}
.yf1{bottom:130.641247pt;}
.y10e{bottom:131.014067pt;}
.y145{bottom:131.220550pt;}
.yfb{bottom:131.893608pt;}
.y71{bottom:133.311658pt;}
.y19c{bottom:133.565491pt;}
.y155{bottom:133.883150pt;}
.y6c{bottom:134.110067pt;}
.y6{bottom:135.601287pt;}
.ya4{bottom:135.679625pt;}
.y132{bottom:139.680637pt;}
.y110{bottom:140.583617pt;}
.yf5{bottom:141.362827pt;}
.y7d{bottom:143.930948pt;}
.yf0{bottom:145.041248pt;}
.y11d{bottom:145.414066pt;}
.y144{bottom:145.620552pt;}
.y154{bottom:148.283152pt;}
.y19b{bottom:149.205471pt;}
.y3d{bottom:149.539566pt;}
.y4d{bottom:151.389248pt;}
.yd0{bottom:151.768072pt;}
.y63{bottom:152.534476pt;}
.y131{bottom:154.080638pt;}
.yb5{bottom:154.472952pt;}
.y121{bottom:154.983617pt;}
.yf4{bottom:155.762828pt;}
.y5{bottom:155.841288pt;}
.y2c{bottom:155.869278pt;}
.y158{bottom:156.209122pt;}
.y18{bottom:158.402568pt;}
.y143{bottom:160.020553pt;}
.y156{bottom:160.571496pt;}
.y6b{bottom:161.110068pt;}
.y183{bottom:161.192992pt;}
.y153{bottom:162.683153pt;}
.y112{bottom:163.773777pt;}
.y124{bottom:163.775533pt;}
.y19a{bottom:164.845442pt;}
.y130{bottom:168.480638pt;}
.yf3{bottom:170.162829pt;}
.y111{bottom:173.416389pt;}
.y123{bottom:173.418148pt;}
.y3c{bottom:175.299566pt;}
.ycf{bottom:177.528072pt;}
.y62{bottom:178.294476pt;}
.yb8{bottom:180.232972pt;}
.y199{bottom:180.485442pt;}
.y15a{bottom:181.267441pt;}
.y2b{bottom:181.629299pt;}
.y17{bottom:182.322548pt;}
.y12f{bottom:182.880649pt;}
.yf2{bottom:184.562830pt;}
.y4c{bottom:186.482629pt;}
.ya3{bottom:187.199627pt;}
.y6a{bottom:188.110069pt;}
.y152{bottom:193.966457pt;}
.y198{bottom:196.125423pt;}
.y142{bottom:196.887632pt;}
.y12e{bottom:197.280654pt;}
.y7a{bottom:199.943751pt;}
.y114{bottom:202.944167pt;}
.y61{bottom:204.054497pt;}
.yb4{bottom:205.992983pt;}
.y16{bottom:206.242529pt;}
.y113{bottom:206.844585pt;}
.y2f{bottom:207.389309pt;}
.y149{bottom:207.897190pt;}
.y151{bottom:208.366456pt;}
.y84{bottom:209.783609pt;}
.y141{bottom:211.287634pt;}
.y12d{bottom:211.680659pt;}
.y197{bottom:211.765413pt;}
.y56{bottom:211.850709pt;}
.y4b{bottom:212.242640pt;}
.y182{bottom:212.713014pt;}
.ya2{bottom:212.959647pt;}
.y115{bottom:214.621832pt;}
.y109{bottom:214.691330pt;}
.y69{bottom:215.110067pt;}
.y79{bottom:216.160943pt;}
.y4{bottom:217.145510pt;}
.yef{bottom:218.695752pt;}
.y148{bottom:219.212353pt;}
.y10d{bottom:221.899370pt;}
.y83{bottom:224.183611pt;}
.y140{bottom:225.687635pt;}
.y12c{bottom:226.080650pt;}
.y3b{bottom:226.819598pt;}
.y196{bottom:227.405394pt;}
.yd8{bottom:228.262672pt;}
.yce{bottom:229.048104pt;}
.y108{bottom:229.091333pt;}
.y60{bottom:229.814508pt;}
.y15{bottom:230.162510pt;}
.y78{bottom:230.560945pt;}
.yb3{bottom:231.752994pt;}
.y2a{bottom:233.149320pt;}
.yfa{bottom:233.590680pt;}
.y147{bottom:233.612355pt;}
.y10c{bottom:236.299370pt;}
.y181{bottom:238.473024pt;}
.ya1{bottom:238.719658pt;}
.y13f{bottom:239.640058pt;}
.yee{bottom:239.968003pt;}
.y12b{bottom:240.480650pt;}
.y11c{bottom:241.471045pt;}
.y68{bottom:242.110067pt;}
.y195{bottom:243.045384pt;}
.y107{bottom:243.491333pt;}
.y4a{bottom:247.336001pt;}
.yf9{bottom:247.990682pt;}
.y146{bottom:248.012356pt;}
.y3a{bottom:252.579609pt;}
.y13e{bottom:254.040058pt;}
.yed{bottom:254.368006pt;}
.ycd{bottom:254.808115pt;}
.y12a{bottom:254.880647pt;}
.y5f{bottom:255.574519pt;}
.ybf{bottom:257.513005pt;}
.y194{bottom:258.685365pt;}
.y3{bottom:258.745521pt;}
.y29{bottom:258.909331pt;}
.ye7{bottom:258.910021pt;}
.ya0{bottom:264.479669pt;}
.y77{bottom:272.782801pt;}
.y49{bottom:273.095991pt;}
.y193{bottom:274.325345pt;}
.yff{bottom:274.531256pt;}
.ye6{bottom:276.510032pt;}
.y170{bottom:277.922202pt;}
.y14{bottom:278.002531pt;}
.y39{bottom:278.339620pt;}
.y129{bottom:278.613982pt;}
.y11b{bottom:279.889546pt;}
.ycc{bottom:280.568126pt;}
.yb2{bottom:283.273006pt;}
.y28{bottom:284.669332pt;}
.y55{bottom:285.450695pt;}
.y94{bottom:286.355441pt;}
.y76{bottom:287.182802pt;}
.y192{bottom:289.965346pt;}
.y180{bottom:289.993006pt;}
.y9f{bottom:290.239680pt;}
.y159{bottom:293.108332pt;}
.y82{bottom:293.641752pt;}
.ye5{bottom:294.110022pt;}
.y16f{bottom:297.122196pt;}
.y16a{bottom:297.124766pt;}
.yec{bottom:298.257872pt;}
.y2{bottom:300.345512pt;}
.y75{bottom:301.582802pt;}
.y13{bottom:301.922532pt;}
.y165{bottom:302.525246pt;}
.ydc{bottom:304.434402pt;}
.y191{bottom:305.605346pt;}
.y5e{bottom:307.094531pt;}
.y81{bottom:308.041754pt;}
.y48{bottom:308.189313pt;}
.ybe{bottom:309.032997pt;}
.y27{bottom:310.429323pt;}
.y106{bottom:311.243883pt;}
.yf7{bottom:311.418653pt;}
.ye4{bottom:311.710019pt;}
.y10b{bottom:311.928741pt;}
.yeb{bottom:312.657873pt;}
.y9e{bottom:315.999681pt;}
.y16e{bottom:316.322193pt;}
.y169{bottom:316.324763pt;}
.ydb{bottom:318.834404pt;}
.y190{bottom:321.245347pt;}
.y13b{bottom:322.463294pt;}
.yf6{bottom:325.818654pt;}
.y12{bottom:325.842533pt;}
.y10a{bottom:326.328740pt;}
.yea{bottom:327.057873pt;}
.yd7{bottom:328.096453pt;}
.y93{bottom:328.490612pt;}
.y105{bottom:328.843879pt;}
.ye3{bottom:329.310017pt;}
.y38{bottom:329.859611pt;}
.y164{bottom:331.525247pt;}
.ycb{bottom:332.088117pt;}
.y1d{bottom:333.266075pt;}
.y47{bottom:333.949313pt;}
.yb1{bottom:334.792987pt;}
.y16d{bottom:335.522191pt;}
.y168{bottom:335.524761pt;}
.y26{bottom:336.189313pt;}
.y13a{bottom:336.863293pt;}
.y18f{bottom:336.885348pt;}
.y17f{bottom:341.512998pt;}
.yd6{bottom:342.496454pt;}
.y15f{bottom:345.843642pt;}
.y104{bottom:346.443878pt;}
.ye2{bottom:346.910014pt;}
.y1{bottom:348.345507pt;}
.y90{bottom:349.446501pt;}
.y17a{bottom:349.446503pt;}
.ye9{bottom:351.119604pt;}
.yf8{bottom:352.520396pt;}
.y18e{bottom:352.525348pt;}
.y16c{bottom:354.722194pt;}
.y167{bottom:354.724764pt;}
.y37{bottom:355.619602pt;}
.y161{bottom:356.267694pt;}
.yd5{bottom:356.896454pt;}
.yca{bottom:357.848108pt;}
.y5d{bottom:358.614512pt;}
.y163{bottom:360.525244pt;}
.yd4{bottom:360.552988pt;}
.y25{bottom:361.949314pt;}
.yfe{bottom:362.111880pt;}
.y53{bottom:362.364737pt;}
.y103{bottom:364.043874pt;}
.ye1{bottom:364.510014pt;}
.y15e{bottom:365.043644pt;}
.y15c{bottom:365.416065pt;}
.ye8{bottom:365.519605pt;}
.y8f{bottom:367.046511pt;}
.y179{bottom:367.046513pt;}
.y17e{bottom:367.272988pt;}
.y9d{bottom:367.519662pt;}
.y18d{bottom:368.165349pt;}
.y46{bottom:369.042635pt;}
.y92{bottom:370.963425pt;}
.y11{bottom:373.682524pt;}
.y16b{bottom:373.922195pt;}
.y166{bottom:373.924765pt;}
.yfd{bottom:376.511879pt;}
.y15b{bottom:378.216065pt;}
.y102{bottom:381.643875pt;}
.ye0{bottom:382.110015pt;}
.yc9{bottom:383.608109pt;}
.y18c{bottom:383.805349pt;}
.y15d{bottom:384.243645pt;}
.y5c{bottom:384.374513pt;}
.y8e{bottom:384.646522pt;}
.y178{bottom:384.646524pt;}
.y91{bottom:385.363426pt;}
.yb0{bottom:386.312979pt;}
.y2e{bottom:387.709305pt;}
.y162{bottom:389.525245pt;}
.y96{bottom:389.792515pt;}
.y13d{bottom:392.889441pt;}
.y9c{bottom:393.279663pt;}
.y10{bottom:397.602525pt;}
.y20{bottom:399.164728pt;}
.y101{bottom:399.243875pt;}
.y18b{bottom:399.445360pt;}
.ydf{bottom:399.710016pt;}
.y8d{bottom:402.246513pt;}
.y177{bottom:402.246515pt;}
.y45{bottom:404.135976pt;}
.y95{bottom:404.192517pt;}
.y36{bottom:407.139594pt;}
.y13c{bottom:407.289441pt;}
.yc8{bottom:409.368100pt;}
.y5b{bottom:410.134504pt;}
.yaf{bottom:412.072980pt;}
.y24{bottom:413.469306pt;}
.y18a{bottom:415.085356pt;}
.y100{bottom:416.843876pt;}
.y17d{bottom:418.792970pt;}
.y9b{bottom:419.039654pt;}
.y8c{bottom:419.846509pt;}
.y176{bottom:419.846511pt;}
.yf{bottom:421.522526pt;}
.y74{bottom:428.407655pt;}
.y44{bottom:429.895971pt;}
.y189{bottom:430.725356pt;}
.y35{bottom:432.899595pt;}
.yc7{bottom:435.128101pt;}
.y5a{bottom:435.894505pt;}
.y1f{bottom:435.964730pt;}
.y8b{bottom:437.446508pt;}
.y175{bottom:437.446510pt;}
.yb7{bottom:437.832971pt;}
.y23{bottom:439.229297pt;}
.y17c{bottom:444.552967pt;}
.y9a{bottom:444.799655pt;}
.ye{bottom:445.442523pt;}
.y188{bottom:446.365356pt;}
.y8a{bottom:455.046504pt;}
.y174{bottom:455.046506pt;}
.yc6{bottom:460.888091pt;}
.y59{bottom:461.654495pt;}
.y187{bottom:462.005356pt;}
.yae{bottom:463.592969pt;}
.y22{bottom:464.989295pt;}
.yd{bottom:469.362522pt;}
.y99{bottom:470.559646pt;}
.y89{bottom:472.646505pt;}
.y173{bottom:472.646507pt;}
.y1e{bottom:472.764722pt;}
.y186{bottom:477.645355pt;}
.y34{bottom:484.419583pt;}
.yc5{bottom:486.648089pt;}
.y58{bottom:487.414493pt;}
.yad{bottom:489.352964pt;}
.y88{bottom:490.246505pt;}
.y172{bottom:490.246507pt;}
.y21{bottom:490.749290pt;}
.yc{bottom:493.282520pt;}
.y185{bottom:493.285353pt;}
.y98{bottom:496.319643pt;}
.y87{bottom:507.846506pt;}
.y171{bottom:507.846508pt;}
.y33{bottom:510.179579pt;}
.yc4{bottom:512.408085pt;}
.y57{bottom:513.174489pt;}
.yb{bottom:517.202519pt;}
.y97{bottom:522.079639pt;}
.h5{height:29.045333pt;}
.h1b{height:29.645835pt;}
.h11{height:29.645837pt;}
.h14{height:29.645838pt;}
.h10{height:29.645841pt;}
.h19{height:29.645844pt;}
.hf{height:29.645846pt;}
.h15{height:29.645851pt;}
.he{height:30.765233pt;}
.h18{height:32.507814pt;}
.h16{height:32.531251pt;}
.h20{height:33.194669pt;}
.h17{height:33.328126pt;}
.hd{height:33.351564pt;}
.h1a{height:33.443880pt;}
.h1f{height:35.269333pt;}
.h1e{height:36.221333pt;}
.hb{height:41.493334pt;}
.h3{height:45.642669pt;}
.h4{height:46.874669pt;}
.h13{height:49.792002pt;}
.h12{height:51.136002pt;}
.h7{height:53.941337pt;}
.h21{height:54.359375pt;}
.h6{height:55.397337pt;}
.h8{height:58.090666pt;}
.ha{height:59.658666pt;}
.h1c{height:60.842671pt;}
.h1d{height:66.389338pt;}
.hc{height:70.538667pt;}
.h9{height:98.010668pt;}
.h2{height:107.882674pt;}
.h1{height:190.869335pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x2e{left:18.149608pt;}
.x7a{left:20.997376pt;}
.x79{left:25.000001pt;}
.xd{left:37.711286pt;}
.xc{left:40.381738pt;}
.x10{left:46.540685pt;}
.x49{left:57.532033pt;}
.x76{left:65.359194pt;}
.x7b{left:68.997378pt;}
.x2c{left:70.857574pt;}
.x47{left:81.166549pt;}
.x61{left:87.011855pt;}
.x31{left:91.262473pt;}
.x48{left:93.837447pt;}
.x2b{left:96.457711pt;}
.x62{left:102.017715pt;}
.x59{left:103.329482pt;}
.x50{left:104.384170pt;}
.x66{left:110.178789pt;}
.x67{left:112.850664pt;}
.x5a{left:118.335342pt;}
.x58{left:119.545304pt;}
.x35{left:126.286504pt;}
.x51{left:138.091016pt;}
.x15{left:140.985593pt;}
.x1e{left:143.010915pt;}
.x52{left:146.508861pt;}
.x17{left:153.480512pt;}
.x14{left:154.398069pt;}
.x74{left:160.126085pt;}
.x16{left:170.031035pt;}
.x75{left:174.918646pt;}
.x18{left:176.574806pt;}
.x1a{left:190.539418pt;}
.x1b{left:198.713246pt;}
.x32{left:204.358319pt;}
.x1f{left:207.238029pt;}
.x1c{left:208.375357pt;}
.x36{left:211.198659pt;}
.x33{left:212.532147pt;}
.x3d{left:214.792319pt;}
.x4f{left:219.374495pt;}
.x20{left:221.233147pt;}
.x34{left:222.194257pt;}
.x37{left:225.193777pt;}
.x3e{left:232.628257pt;}
.x70{left:233.555857pt;}
.x2d{left:234.479315pt;}
.x5e{left:240.864758pt;}
.x63{left:243.120974pt;}
.x53{left:246.192073pt;}
.x5b{left:247.213096pt;}
.x40{left:248.744210pt;}
.x1{left:251.123302pt;}
.x2f{left:254.312388pt;}
.x30{left:258.360028pt;}
.x41{left:262.739328pt;}
.x9{left:273.934409pt;}
.x7d{left:285.283123pt;}
.x7c{left:301.289900pt;}
.x72{left:302.501840pt;}
.x13{left:304.110820pt;}
.x54{left:306.751181pt;}
.x57{left:336.563550pt;}
.x5{left:339.522441pt;}
.x27{left:341.692894pt;}
.x26{left:350.250511pt;}
.x2{left:352.464921pt;}
.x39{left:357.514434pt;}
.x12{left:362.648602pt;}
.x46{left:364.787355pt;}
.x38{left:366.072052pt;}
.x7f{left:367.873497pt;}
.x4{left:370.365092pt;}
.x3f{left:371.330466pt;}
.x5c{left:372.486309pt;}
.x7{left:373.422102pt;}
.x1d{left:375.827658pt;}
.x68{left:377.024500pt;}
.x6{left:384.457852pt;}
.x8{left:390.350312pt;}
.x3{left:394.312393pt;}
.x3b{left:395.580901pt;}
.x65{left:400.405939pt;}
.x5f{left:403.189973pt;}
.x60{left:405.522004pt;}
.x3c{left:412.912933pt;}
.x64{left:416.079768pt;}
.x29{left:420.445711pt;}
.x2a{left:437.777744pt;}
.x11{left:440.312364pt;}
.x19{left:446.050091pt;}
.x56{left:453.077774pt;}
.x6d{left:463.524077pt;}
.x55{left:465.149585pt;}
.x6c{left:471.176421pt;}
.x6e{left:474.176421pt;}
.x4b{left:484.165335pt;}
.x4c{left:492.339164pt;}
.x4e{left:499.674187pt;}
.x4d{left:502.001274pt;}
.xa{left:509.898593pt;}
.x42{left:517.186890pt;}
.x44{left:519.864625pt;}
.x21{left:524.840640pt;}
.x71{left:528.910458pt;}
.x43{left:531.190797pt;}
.x23{left:535.310604pt;}
.x22{left:538.844547pt;}
.xb{left:544.364857pt;}
.x6f{left:547.592661pt;}
.xf{left:557.096410pt;}
.x24{left:587.708253pt;}
.x45{left:588.877077pt;}
.xe{left:592.364859pt;}
.x25{left:605.596925pt;}
.x5d{left:652.839921pt;}
.x69{left:656.503573pt;}
.x6a{left:664.361326pt;}
.x73{left:670.669321pt;}
.x6b{left:672.693358pt;}
.x3a{left:739.199484pt;}
.x7e{left:742.480324pt;}
.x4a{left:749.068264pt;}
.x28{left:764.296624pt;}
.x78{left:780.189175pt;}
.x77{left:781.346625pt;}
}




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