
    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_a97b7a257d901803295ae356.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_c5fcc495202470a112a30445.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.912598;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_0ce2b2d2900a1443d72dcb2a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.703000;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_29fd08646656ac09f79930ea.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.892000;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_7af4f79009deb57c73128bff.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.898000;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_3d415e8080e6547cbccbd878.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.674316;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_da8dc36974bc242c3d6da28e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.000000;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_0cbdec481a463181d3af0645.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.363000;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_4b3184bcf083bd388c02f882.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.856934;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;}
.m7{transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.213648px;}
.ls0{letter-spacing:0.383936px;}
.ls2{letter-spacing:37.514795px;}
.ls4{letter-spacing:55.548808px;}
.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;}
}
.ws9{word-spacing:-43.647491px;}
.ws6{word-spacing:-42.164623px;}
.ws0{word-spacing:-28.255789px;}
.ws1{word-spacing:-22.503591px;}
.ws3{word-spacing:-19.795792px;}
.ws4{word-spacing:-15.565794px;}
.ws2{word-spacing:-14.889414px;}
.wsa{word-spacing:-14.043594px;}
.ws8{word-spacing:-13.366435px;}
.ws7{word-spacing:-12.059995px;}
.ws5{word-spacing:0.000000px;}
._1b{margin-left:-2.527763px;}
._1{margin-left:-1.415462px;}
._0{width:1.567536px;}
._2{width:3.077606px;}
._7{width:4.104261px;}
._8{width:5.499883px;}
._9{width:7.151218px;}
._11{width:8.436000px;}
._f{width:9.687786px;}
._3{width:10.882999px;}
._4{width:12.007370px;}
._d{width:13.755705px;}
._1d{width:15.756030px;}
._c{width:16.772505px;}
._e{width:18.748781px;}
._10{width:19.877449px;}
._6{width:21.326525px;}
._5{width:22.510190px;}
._b{width:23.607637px;}
._a{width:24.708326px;}
._15{width:26.146385px;}
._14{width:27.227932px;}
._1a{width:28.354218px;}
._16{width:29.783395px;}
._17{width:30.860652px;}
._13{width:39.032168px;}
._12{width:40.566740px;}
._18{width:42.253212px;}
._19{width:43.360358px;}
._1e{width:46.852468px;}
._1c{width:47.988834px;}
._1f{width:105.750482px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:45.343422px;}
.fs6{font-size:48.051341px;}
.fsb{font-size:48.239981px;}
.fsa{font-size:50.759980px;}
.fsd{font-size:53.465739px;}
.fs0{font-size:56.174378px;}
.fs9{font-size:59.557656px;}
.fs8{font-size:62.263175px;}
.fsc{font-size:64.079974px;}
.fs4{font-size:67.679973px;}
.fs5{font-size:73.094371px;}
.fs1{font-size:79.183168px;}
.fs3{font-size:90.014364px;}
.fs2{font-size:113.023155px;}
.y0{bottom:0.000000px;}
.y2{bottom:90.539964px;}
.y3a{bottom:91.259963px;}
.y39{bottom:109.979956px;}
.y38{bottom:129.059948px;}
.yc4{bottom:129.779948px;}
.yf2{bottom:130.859948px;}
.y11f{bottom:135.539946px;}
.y152{bottom:142.379943px;}
.yf1{bottom:143.279943px;}
.y37{bottom:147.059941px;}
.yc3{bottom:147.599941px;}
.y96{bottom:151.199940px;}
.y66{bottom:152.099939px;}
.y11e{bottom:157.499937px;}
.y151{bottom:158.579937px;}
.y36{bottom:164.879934px;}
.yc2{bottom:165.419934px;}
.y95{bottom:168.839932px;}
.y65{bottom:169.919932px;}
.y150{bottom:174.599930px;}
.y11d{bottom:175.499930px;}
.y35{bottom:182.699927px;}
.yc1{bottom:183.239927px;}
.y94{bottom:186.659925px;}
.y64{bottom:187.919925px;}
.y14f{bottom:190.979924px;}
.y11c{bottom:193.319923px;}
.y34{bottom:200.519920px;}
.yc0{bottom:201.059920px;}
.y93{bottom:204.659918px;}
.y63{bottom:205.559918px;}
.y14e{bottom:206.639917px;}
.y11b{bottom:211.139916px;}
.y100{bottom:213.119915px;}
.y33{bottom:218.339913px;}
.ybf{bottom:219.059912px;}
.y14d{bottom:221.759911px;}
.y92{bottom:222.299911px;}
.y62{bottom:223.379911px;}
.y11a{bottom:228.599909px;}
.yff{bottom:229.319908px;}
.y32{bottom:236.159906px;}
.ybe{bottom:236.699905px;}
.y14c{bottom:237.419905px;}
.y91{bottom:240.299904px;}
.y61{bottom:241.379903px;}
.yfe{bottom:241.739903px;}
.y119{bottom:246.959901px;}
.y14b{bottom:252.539899px;}
.y31{bottom:253.979898px;}
.ybd{bottom:254.519898px;}
.y90{bottom:258.119897px;}
.y60{bottom:259.019896px;}
.y118{bottom:266.219894px;}
.y14a{bottom:268.199893px;}
.y30{bottom:271.979891px;}
.ybc{bottom:272.519891px;}
.y8f{bottom:275.939890px;}
.y5f{bottom:277.019889px;}
.y149{bottom:283.319887px;}
.y117{bottom:284.039886px;}
.y2f{bottom:289.799884px;}
.ybb{bottom:290.159884px;}
.y8e{bottom:293.759882px;}
.yf0{bottom:293.939882px;}
.y5e{bottom:294.839882px;}
.y148{bottom:299.519880px;}
.y116{bottom:301.859879px;}
.y2e{bottom:307.439877px;}
.yba{bottom:308.159877px;}
.yef{bottom:310.859876px;}
.y8d{bottom:311.579875px;}
.y5d{bottom:312.479875px;}
.y147{bottom:315.719874px;}
.y115{bottom:319.859872px;}
.y2d{bottom:325.439870px;}
.yb9{bottom:325.979870px;}
.y8c{bottom:329.399868px;}
.yee{bottom:329.579868px;}
.y5c{bottom:330.479868px;}
.y146{bottom:332.099867px;}
.y114{bottom:337.679865px;}
.yed{bottom:342.179863px;}
.y2c{bottom:343.259863px;}
.yb8{bottom:343.619863px;}
.y8b{bottom:347.219861px;}
.y5b{bottom:348.299861px;}
.y113{bottom:355.319858px;}
.y2b{bottom:361.079856px;}
.yb7{bottom:361.619855px;}
.y145{bottom:364.499854px;}
.y8a{bottom:365.219854px;}
.y5a{bottom:365.939854px;}
.ydf{bottom:366.119854px;}
.y112{bottom:373.319851px;}
.y2a{bottom:378.899848px;}
.yb6{bottom:379.439848px;}
.y144{bottom:380.519848px;}
.y89{bottom:382.859847px;}
.yde{bottom:383.939846px;}
.y59{bottom:384.659846px;}
.y111{bottom:391.139844px;}
.y29{bottom:396.899841px;}
.yb5{bottom:397.259841px;}
.y88{bottom:400.679840px;}
.ydd{bottom:401.939839px;}
.y58{bottom:406.619837px;}
.y110{bottom:408.959836px;}
.y143{bottom:413.099835px;}
.y28{bottom:414.539834px;}
.yb4{bottom:415.259834px;}
.y87{bottom:418.679833px;}
.ydc{bottom:419.579832px;}
.y57{bottom:424.619830px;}
.y10f{bottom:426.779829px;}
.y142{bottom:429.299828px;}
.y27{bottom:432.359827px;}
.yb3{bottom:433.979826px;}
.y86{bottom:436.319825px;}
.ydb{bottom:437.399825px;}
.y56{bottom:442.259823px;}
.y10e{bottom:444.599822px;}
.y141{bottom:445.499822px;}
.y26{bottom:450.359820px;}
.yb2{bottom:451.799819px;}
.yfd{bottom:452.159819px;}
.y85{bottom:452.519819px;}
.yda{bottom:455.399818px;}
.y55{bottom:460.079816px;}
.y140{bottom:461.699815px;}
.y10d{bottom:462.419815px;}
.y84{bottom:464.939814px;}
.y25{bottom:467.999813px;}
.yb1{bottom:469.799812px;}
.yfc{bottom:469.979812px;}
.yd9{bottom:473.039811px;}
.y13f{bottom:477.899809px;}
.y54{bottom:478.079809px;}
.y10c{bottom:480.239808px;}
.yfb{bottom:482.399807px;}
.y24{bottom:485.999806px;}
.yb0{bottom:487.439805px;}
.yd8{bottom:491.039804px;}
.y13e{bottom:494.099802px;}
.y53{bottom:495.719802px;}
.y10b{bottom:498.239801px;}
.y23{bottom:503.459799px;}
.yaf{bottom:505.439798px;}
.yd7{bottom:509.039796px;}
.y13d{bottom:510.299796px;}
.y15e{bottom:513.539795px;}
.y52{bottom:513.719795px;}
.y10a{bottom:515.879794px;}
.yec{bottom:519.119792px;}
.y22{bottom:522.179791px;}
.yae{bottom:523.439791px;}
.y13c{bottom:525.779790px;}
.y83{bottom:528.299789px;}
.yd6{bottom:528.479789px;}
.y15d{bottom:529.739788px;}
.y51{bottom:531.539787px;}
.y109{bottom:533.879786px;}
.yfa{bottom:536.039786px;}
.yeb{bottom:536.939785px;}
.y13b{bottom:539.639784px;}
.yad{bottom:542.159783px;}
.y21{bottom:544.319782px;}
.y82{bottom:546.119782px;}
.yd5{bottom:547.739781px;}
.y50{bottom:549.179780px;}
.y108{bottom:551.699779px;}
.yf9{bottom:552.239779px;}
.yea{bottom:554.759778px;}
.yac{bottom:560.159776px;}
.y20{bottom:561.959775px;}
.y15c{bottom:562.319775px;}
.y81{bottom:563.939774px;}
.yd4{bottom:565.559774px;}
.y4f{bottom:567.179773px;}
.yf8{bottom:568.619773px;}
.y13a{bottom:568.799772px;}
.y107{bottom:568.979772px;}
.ye9{bottom:572.579771px;}
.yab{bottom:577.799769px;}
.y1f{bottom:578.159769px;}
.y15b{bottom:578.339769px;}
.yf7{bottom:581.039768px;}
.y80{bottom:581.759767px;}
.yd3{bottom:583.379767px;}
.y4e{bottom:584.999766px;}
.y106{bottom:588.059765px;}
.ye8{bottom:590.039764px;}
.y15a{bottom:594.539762px;}
.y1e{bottom:594.719762px;}
.yaa{bottom:595.619762px;}
.y7f{bottom:599.759760px;}
.y139{bottom:600.119760px;}
.yd2{bottom:601.199760px;}
.y4d{bottom:602.819759px;}
.ye7{bottom:608.399757px;}
.y105{bottom:610.019756px;}
.y159{bottom:610.919756px;}
.ya9{bottom:613.619755px;}
.y138{bottom:613.979754px;}
.y1d{bottom:615.599754px;}
.y7e{bottom:617.399753px;}
.yd1{bottom:619.199752px;}
.y4c{bottom:620.639752px;}
.y158{bottom:627.119749px;}
.ye6{bottom:627.659749px;}
.y104{bottom:627.839749px;}
.y137{bottom:630.359748px;}
.y1c{bottom:631.619747px;}
.ya8{bottom:632.519747px;}
.y7d{bottom:635.219746px;}
.yd0{bottom:636.839745px;}
.y4b{bottom:638.639745px;}
.y157{bottom:643.319743px;}
.ye5{bottom:644.039742px;}
.y136{bottom:646.559741px;}
.y1b{bottom:647.819741px;}
.ya7{bottom:650.339740px;}
.y7c{bottom:653.219739px;}
.ycf{bottom:654.659738px;}
.y4a{bottom:656.279737px;}
.y156{bottom:659.519736px;}
.y103{bottom:660.239736px;}
.ye4{bottom:661.859735px;}
.y135{bottom:662.039735px;}
.y1a{bottom:664.199734px;}
.ya6{bottom:668.159733px;}
.y7b{bottom:670.859732px;}
.yce{bottom:672.659731px;}
.y49{bottom:674.099730px;}
.y134{bottom:675.719730px;}
.y102{bottom:678.059729px;}
.ye3{bottom:679.499728px;}
.y19{bottom:680.399728px;}
.ya5{bottom:685.979726px;}
.y7a{bottom:688.859724px;}
.y48{bottom:690.299724px;}
.y133{bottom:691.919723px;}
.y101{bottom:694.259722px;}
.y18{bottom:695.879722px;}
.ye2{bottom:697.319721px;}
.ya4{bottom:703.979718px;}
.y47{bottom:704.339718px;}
.y79{bottom:706.679717px;}
.y132{bottom:708.119717px;}
.ycd{bottom:708.299717px;}
.y46{bottom:709.019716px;}
.y17{bottom:711.539715px;}
.y3b{bottom:712.799715px;}
.ye1{bottom:713.519715px;}
.ya3{bottom:722.699711px;}
.y45{bottom:723.419711px;}
.y78{bottom:724.319710px;}
.ycc{bottom:726.119710px;}
.ye0{bottom:729.719708px;}
.y16{bottom:732.419707px;}
.ya2{bottom:740.699704px;}
.y77{bottom:742.319703px;}
.ycb{bottom:743.759702px;}
.y15{bottom:750.779700px;}
.y131{bottom:756.899697px;}
.ya1{bottom:758.519697px;}
.y76{bottom:760.139696px;}
.yca{bottom:761.759695px;}
.y14{bottom:770.219692px;}
.y130{bottom:772.919691px;}
.ya0{bottom:777.419689px;}
.y13{bottom:777.959689px;}
.yc9{bottom:779.579688px;}
.y12f{bottom:789.119684px;}
.y12{bottom:789.659684px;}
.y9f{bottom:795.239682px;}
.y75{bottom:795.779682px;}
.yc8{bottom:797.399681px;}
.y12e{bottom:805.499678px;}
.y44{bottom:808.559677px;}
.y11{bottom:809.099676px;}
.y9e{bottom:813.059675px;}
.y74{bottom:813.779674px;}
.yc7{bottom:815.219674px;}
.y10{bottom:817.019673px;}
.y12d{bottom:821.699671px;}
.y43{bottom:822.959671px;}
.yf{bottom:828.539669px;}
.y9d{bottom:830.879668px;}
.y73{bottom:831.239668px;}
.yc6{bottom:833.219667px;}
.y12c{bottom:837.899665px;}
.yf6{bottom:844.919662px;}
.ye{bottom:848.159661px;}
.y9c{bottom:848.699661px;}
.y72{bottom:849.419660px;}
.yc5{bottom:850.859660px;}
.y12b{bottom:854.099658px;}
.yd{bottom:855.899658px;}
.yf5{bottom:861.119656px;}
.yc{bottom:867.599653px;}
.y9b{bottom:867.779653px;}
.y71{bottom:868.679653px;}
.y12a{bottom:870.299652px;}
.yf4{bottom:877.319649px;}
.y9a{bottom:885.419646px;}
.y129{bottom:886.499645px;}
.y70{bottom:886.679645px;}
.ya{bottom:887.219645px;}
.y3c{bottom:888.479645px;}
.yf3{bottom:889.919644px;}
.yb{bottom:895.679642px;}
.y3d{bottom:902.699639px;}
.y99{bottom:903.419639px;}
.y6f{bottom:904.499638px;}
.y8{bottom:908.099637px;}
.y9{bottom:916.559633px;}
.y128{bottom:918.899632px;}
.y98{bottom:921.239632px;}
.y6e{bottom:922.319631px;}
.y3f{bottom:926.819629px;}
.y7{bottom:929.519628px;}
.y127{bottom:935.279626px;}
.y97{bottom:939.059624px;}
.y6d{bottom:940.139624px;}
.y6{bottom:951.119620px;}
.y126{bottom:951.299619px;}
.y6c{bottom:957.959617px;}
.y125{bottom:967.499613px;}
.y6b{bottom:975.779610px;}
.y5{bottom:982.979607px;}
.y124{bottom:983.699607px;}
.y40{bottom:992.879603px;}
.y6a{bottom:993.599603px;}
.y123{bottom:1000.079600px;}
.y3e{bottom:1006.919597px;}
.y69{bottom:1011.599595px;}
.y4{bottom:1014.479594px;}
.y155{bottom:1015.739594px;}
.y122{bottom:1016.279593px;}
.y42{bottom:1021.139592px;}
.y41{bottom:1028.699589px;}
.y68{bottom:1029.239588px;}
.y121{bottom:1031.399587px;}
.y154{bottom:1031.939587px;}
.y3{bottom:1044.179582px;}
.y120{bottom:1045.439582px;}
.y67{bottom:1047.059581px;}
.y153{bottom:1048.499581px;}
.y1{bottom:1080.179568px;}
.h9{height:31.196274px;}
.h16{height:31.377648px;}
.h12{height:32.152136px;}
.h7{height:33.059322px;}
.hd{height:34.669066px;}
.h17{height:34.922866px;}
.h15{height:36.998291px;}
.he{height:38.367100px;}
.h1{height:38.647972px;}
.h18{height:38.872669px;}
.hc{height:40.796994px;}
.hf{height:42.525749px;}
.h13{height:42.709553px;}
.ha{height:42.837064px;}
.h11{height:43.086117px;}
.h5{height:45.108966px;}
.h8{height:46.563821px;}
.h14{height:46.834541px;}
.hb{height:50.069644px;}
.h6{height:50.288927px;}
.h2{height:52.775891px;}
.h10{height:54.794752px;}
.h4{height:59.994925px;}
.h3{height:75.330374px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:158.759936px;}
.x33{left:162.359935px;}
.x13{left:170.999932px;}
.x34{left:173.699931px;}
.x35{left:177.659929px;}
.xb{left:181.439927px;}
.x2d{left:184.139926px;}
.x36{left:185.399926px;}
.x2e{left:189.899924px;}
.x2b{left:192.419923px;}
.x22{left:196.920386px;}
.x14{left:198.359921px;}
.x3{left:203.939918px;}
.xc{left:205.919918px;}
.x4c{left:209.520094px;}
.x44{left:217.979913px;}
.x4{left:222.479911px;}
.x45{left:224.639910px;}
.x31{left:236.879905px;}
.x32{left:242.639903px;}
.x41{left:251.454004px;}
.x40{left:261.539895px;}
.x43{left:272.699891px;}
.x15{left:273.779890px;}
.x46{left:280.079888px;}
.x47{left:291.239884px;}
.x55{left:294.299882px;}
.x16{left:296.099882px;}
.x3a{left:300.779880px;}
.x1d{left:302.039879px;}
.x37{left:303.299879px;}
.x23{left:304.379878px;}
.x24{left:310.319876px;}
.x2f{left:312.119875px;}
.x54{left:314.279874px;}
.x30{left:317.879873px;}
.x56{left:319.319872px;}
.x4b{left:340.559823px;}
.x4e{left:346.319861px;}
.x2c{left:350.819494px;}
.x50{left:358.379857px;}
.x48{left:367.919853px;}
.x5{left:370.439852px;}
.x49{left:375.839850px;}
.x17{left:387.179845px;}
.x6{left:392.759843px;}
.xd{left:406.259837px;}
.x18{left:409.309336px;}
.xe{left:417.599833px;}
.x1e{left:423.539831px;}
.x39{left:431.459827px;}
.x19{left:460.079816px;}
.x2{left:463.679815px;}
.x1a{left:471.239812px;}
.x25{left:492.479803px;}
.x26{left:498.599801px;}
.x7{left:562.139775px;}
.x3d{left:571.679771px;}
.x8{left:581.759767px;}
.xf{left:586.439765px;}
.x27{left:593.639763px;}
.x10{left:597.599761px;}
.x28{left:599.759760px;}
.x9{left:604.979758px;}
.x1f{left:608.759756px;}
.x20{left:614.699754px;}
.xa{left:624.239750px;}
.x3c{left:631.979747px;}
.x3e{left:637.919745px;}
.x3f{left:640.073849px;}
.x4d{left:643.139743px;}
.x1b{left:644.219742px;}
.x3b{left:645.299742px;}
.x4a{left:648.719741px;}
.x11{left:655.559738px;}
.x1c{left:661.679735px;}
.x51{left:684.719726px;}
.x42{left:705.059718px;}
.x29{left:724.319710px;}
.x2a{left:730.439708px;}
.x12{left:745.919702px;}
.x21{left:751.499699px;}
.x53{left:754.559678px;}
.x4f{left:756.899697px;}
.x38{left:761.579666px;}
.x52{left:763.199695px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.189909pt;}
.ls0{letter-spacing:0.341277pt;}
.ls2{letter-spacing:33.346485pt;}
.ls4{letter-spacing:49.376718pt;}
.ws9{word-spacing:-38.797770pt;}
.ws6{word-spacing:-37.479665pt;}
.ws0{word-spacing:-25.116257pt;}
.ws1{word-spacing:-20.003192pt;}
.ws3{word-spacing:-17.596260pt;}
.ws4{word-spacing:-13.836261pt;}
.ws2{word-spacing:-13.235035pt;}
.wsa{word-spacing:-12.483195pt;}
.ws8{word-spacing:-11.881275pt;}
.ws7{word-spacing:-10.719996pt;}
.ws5{word-spacing:0.000000pt;}
._1b{margin-left:-2.246900pt;}
._1{margin-left:-1.258188pt;}
._0{width:1.393365pt;}
._2{width:2.735650pt;}
._7{width:3.648232pt;}
._8{width:4.888785pt;}
._9{width:6.356638pt;}
._11{width:7.498666pt;}
._f{width:8.611365pt;}
._3{width:9.673777pt;}
._4{width:10.673218pt;}
._d{width:12.227294pt;}
._1d{width:14.005360pt;}
._c{width:14.908893pt;}
._e{width:16.665583pt;}
._10{width:17.668843pt;}
._6{width:18.956911pt;}
._5{width:20.009058pt;}
._b{width:20.984566pt;}
._a{width:21.962956pt;}
._15{width:23.241231pt;}
._14{width:24.202606pt;}
._1a{width:25.203750pt;}
._16{width:26.474129pt;}
._17{width:27.431691pt;}
._13{width:34.695260pt;}
._12{width:36.059324pt;}
._18{width:37.558411pt;}
._19{width:38.542540pt;}
._1e{width:41.646639pt;}
._1c{width:42.656741pt;}
._1f{width:94.000428pt;}
.fs7{font-size:40.305264pt;}
.fs6{font-size:42.712303pt;}
.fsb{font-size:42.879983pt;}
.fsa{font-size:45.119982pt;}
.fsd{font-size:47.525101pt;}
.fs0{font-size:49.932780pt;}
.fs9{font-size:52.940139pt;}
.fs8{font-size:55.345045pt;}
.fsc{font-size:56.959977pt;}
.fs4{font-size:60.159976pt;}
.fs5{font-size:64.972774pt;}
.fs1{font-size:70.385039pt;}
.fs3{font-size:80.012768pt;}
.fs2{font-size:100.465026pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:80.479968pt;}
.y3a{bottom:81.119968pt;}
.y39{bottom:97.759961pt;}
.y38{bottom:114.719954pt;}
.yc4{bottom:115.359954pt;}
.yf2{bottom:116.319953pt;}
.y11f{bottom:120.479952pt;}
.y152{bottom:126.559949pt;}
.yf1{bottom:127.359949pt;}
.y37{bottom:130.719948pt;}
.yc3{bottom:131.199948pt;}
.y96{bottom:134.399946pt;}
.y66{bottom:135.199946pt;}
.y11e{bottom:139.999944pt;}
.y151{bottom:140.959944pt;}
.y36{bottom:146.559941pt;}
.yc2{bottom:147.039941pt;}
.y95{bottom:150.079940pt;}
.y65{bottom:151.039940pt;}
.y150{bottom:155.199938pt;}
.y11d{bottom:155.999938pt;}
.y35{bottom:162.399935pt;}
.yc1{bottom:162.879935pt;}
.y94{bottom:165.919934pt;}
.y64{bottom:167.039933pt;}
.y14f{bottom:169.759932pt;}
.y11c{bottom:171.839931pt;}
.y34{bottom:178.239929pt;}
.yc0{bottom:178.719929pt;}
.y93{bottom:181.919927pt;}
.y63{bottom:182.719927pt;}
.y14e{bottom:183.679927pt;}
.y11b{bottom:187.679925pt;}
.y100{bottom:189.439924pt;}
.y33{bottom:194.079922pt;}
.ybf{bottom:194.719922pt;}
.y14d{bottom:197.119921pt;}
.y92{bottom:197.599921pt;}
.y62{bottom:198.559921pt;}
.y11a{bottom:203.199919pt;}
.yff{bottom:203.839918pt;}
.y32{bottom:209.919916pt;}
.ybe{bottom:210.399916pt;}
.y14c{bottom:211.039916pt;}
.y91{bottom:213.599915pt;}
.y61{bottom:214.559914pt;}
.yfe{bottom:214.879914pt;}
.y119{bottom:219.519912pt;}
.y14b{bottom:224.479910pt;}
.y31{bottom:225.759910pt;}
.ybd{bottom:226.239910pt;}
.y90{bottom:229.439908pt;}
.y60{bottom:230.239908pt;}
.y118{bottom:236.639905pt;}
.y14a{bottom:238.399905pt;}
.y30{bottom:241.759903pt;}
.ybc{bottom:242.239903pt;}
.y8f{bottom:245.279902pt;}
.y5f{bottom:246.239902pt;}
.y149{bottom:251.839899pt;}
.y117{bottom:252.479899pt;}
.y2f{bottom:257.599897pt;}
.ybb{bottom:257.919897pt;}
.y8e{bottom:261.119896pt;}
.yf0{bottom:261.279895pt;}
.y5e{bottom:262.079895pt;}
.y148{bottom:266.239894pt;}
.y116{bottom:268.319893pt;}
.y2e{bottom:273.279891pt;}
.yba{bottom:273.919890pt;}
.yef{bottom:276.319889pt;}
.y8d{bottom:276.959889pt;}
.y5d{bottom:277.759889pt;}
.y147{bottom:280.639888pt;}
.y115{bottom:284.319886pt;}
.y2d{bottom:289.279884pt;}
.yb9{bottom:289.759884pt;}
.y8c{bottom:292.799883pt;}
.yee{bottom:292.959883pt;}
.y5c{bottom:293.759882pt;}
.y146{bottom:295.199882pt;}
.y114{bottom:300.159880pt;}
.yed{bottom:304.159878pt;}
.y2c{bottom:305.119878pt;}
.yb8{bottom:305.439878pt;}
.y8b{bottom:308.639877pt;}
.y5b{bottom:309.599876pt;}
.y113{bottom:315.839874pt;}
.y2b{bottom:320.959872pt;}
.yb7{bottom:321.439871pt;}
.y145{bottom:323.999870pt;}
.y8a{bottom:324.639870pt;}
.y5a{bottom:325.279870pt;}
.ydf{bottom:325.439870pt;}
.y112{bottom:331.839867pt;}
.y2a{bottom:336.799865pt;}
.yb6{bottom:337.279865pt;}
.y144{bottom:338.239865pt;}
.y89{bottom:340.319864pt;}
.yde{bottom:341.279863pt;}
.y59{bottom:341.919863pt;}
.y111{bottom:347.679861pt;}
.y29{bottom:352.799859pt;}
.yb5{bottom:353.119859pt;}
.y88{bottom:356.159858pt;}
.ydd{bottom:357.279857pt;}
.y58{bottom:361.439855pt;}
.y110{bottom:363.519855pt;}
.y143{bottom:367.199853pt;}
.y28{bottom:368.479853pt;}
.yb4{bottom:369.119852pt;}
.y87{bottom:372.159851pt;}
.ydc{bottom:372.959851pt;}
.y57{bottom:377.439849pt;}
.y10f{bottom:379.359848pt;}
.y142{bottom:381.599847pt;}
.y27{bottom:384.319846pt;}
.yb3{bottom:385.759846pt;}
.y86{bottom:387.839845pt;}
.ydb{bottom:388.799844pt;}
.y56{bottom:393.119843pt;}
.y10e{bottom:395.199842pt;}
.y141{bottom:395.999842pt;}
.y26{bottom:400.319840pt;}
.yb2{bottom:401.599839pt;}
.yfd{bottom:401.919839pt;}
.y85{bottom:402.239839pt;}
.yda{bottom:404.799838pt;}
.y55{bottom:408.959836pt;}
.y140{bottom:410.399836pt;}
.y10d{bottom:411.039836pt;}
.y84{bottom:413.279835pt;}
.y25{bottom:415.999834pt;}
.yb1{bottom:417.599833pt;}
.yfc{bottom:417.759833pt;}
.yd9{bottom:420.479832pt;}
.y13f{bottom:424.799830pt;}
.y54{bottom:424.959830pt;}
.y10c{bottom:426.879829pt;}
.yfb{bottom:428.799828pt;}
.y24{bottom:431.999827pt;}
.yb0{bottom:433.279827pt;}
.yd8{bottom:436.479825pt;}
.y13e{bottom:439.199824pt;}
.y53{bottom:440.639824pt;}
.y10b{bottom:442.879823pt;}
.y23{bottom:447.519821pt;}
.yaf{bottom:449.279820pt;}
.yd7{bottom:452.479819pt;}
.y13d{bottom:453.599819pt;}
.y15e{bottom:456.479817pt;}
.y52{bottom:456.639817pt;}
.y10a{bottom:458.559817pt;}
.yec{bottom:461.439815pt;}
.y22{bottom:464.159814pt;}
.yae{bottom:465.279814pt;}
.y13c{bottom:467.359813pt;}
.y83{bottom:469.599812pt;}
.yd6{bottom:469.759812pt;}
.y15d{bottom:470.879812pt;}
.y51{bottom:472.479811pt;}
.y109{bottom:474.559810pt;}
.yfa{bottom:476.479809pt;}
.yeb{bottom:477.279809pt;}
.y13b{bottom:479.679808pt;}
.yad{bottom:481.919807pt;}
.y21{bottom:483.839806pt;}
.y82{bottom:485.439806pt;}
.yd5{bottom:486.879805pt;}
.y50{bottom:488.159805pt;}
.y108{bottom:490.399804pt;}
.yf9{bottom:490.879804pt;}
.yea{bottom:493.119803pt;}
.yac{bottom:497.919801pt;}
.y20{bottom:499.519800pt;}
.y15c{bottom:499.839800pt;}
.y81{bottom:501.279799pt;}
.yd4{bottom:502.719799pt;}
.y4f{bottom:504.159798pt;}
.yf8{bottom:505.439798pt;}
.y13a{bottom:505.599798pt;}
.y107{bottom:505.759798pt;}
.ye9{bottom:508.959796pt;}
.yab{bottom:513.599795pt;}
.y1f{bottom:513.919794pt;}
.y15b{bottom:514.079794pt;}
.yf7{bottom:516.479793pt;}
.y80{bottom:517.119793pt;}
.yd3{bottom:518.559793pt;}
.y4e{bottom:519.999792pt;}
.y106{bottom:522.719791pt;}
.ye8{bottom:524.479790pt;}
.y15a{bottom:528.479789pt;}
.y1e{bottom:528.639789pt;}
.yaa{bottom:529.439788pt;}
.y7f{bottom:533.119787pt;}
.y139{bottom:533.439787pt;}
.yd2{bottom:534.399786pt;}
.y4d{bottom:535.839786pt;}
.ye7{bottom:540.799784pt;}
.y105{bottom:542.239783pt;}
.y159{bottom:543.039783pt;}
.ya9{bottom:545.439782pt;}
.y138{bottom:545.759782pt;}
.y1d{bottom:547.199781pt;}
.y7e{bottom:548.799780pt;}
.yd1{bottom:550.399780pt;}
.y4c{bottom:551.679779pt;}
.y158{bottom:557.439777pt;}
.ye6{bottom:557.919777pt;}
.y104{bottom:558.079777pt;}
.y137{bottom:560.319776pt;}
.y1c{bottom:561.439775pt;}
.ya8{bottom:562.239775pt;}
.y7d{bottom:564.639774pt;}
.yd0{bottom:566.079774pt;}
.y4b{bottom:567.679773pt;}
.y157{bottom:571.839771pt;}
.ye5{bottom:572.479771pt;}
.y136{bottom:574.719770pt;}
.y1b{bottom:575.839770pt;}
.ya7{bottom:578.079769pt;}
.y7c{bottom:580.639768pt;}
.ycf{bottom:581.919767pt;}
.y4a{bottom:583.359767pt;}
.y156{bottom:586.239766pt;}
.y103{bottom:586.879765pt;}
.ye4{bottom:588.319765pt;}
.y135{bottom:588.479765pt;}
.y1a{bottom:590.399764pt;}
.ya6{bottom:593.919762pt;}
.y7b{bottom:596.319761pt;}
.yce{bottom:597.919761pt;}
.y49{bottom:599.199760pt;}
.y134{bottom:600.639760pt;}
.y102{bottom:602.719759pt;}
.ye3{bottom:603.999758pt;}
.y19{bottom:604.799758pt;}
.ya5{bottom:609.759756pt;}
.y7a{bottom:612.319755pt;}
.y48{bottom:613.599755pt;}
.y133{bottom:615.039754pt;}
.y101{bottom:617.119753pt;}
.y18{bottom:618.559753pt;}
.ye2{bottom:619.839752pt;}
.ya4{bottom:625.759750pt;}
.y47{bottom:626.079750pt;}
.y79{bottom:628.159749pt;}
.y132{bottom:629.439748pt;}
.ycd{bottom:629.599748pt;}
.y46{bottom:630.239748pt;}
.y17{bottom:632.479747pt;}
.y3b{bottom:633.599747pt;}
.ye1{bottom:634.239746pt;}
.ya3{bottom:642.399743pt;}
.y45{bottom:643.039743pt;}
.y78{bottom:643.839742pt;}
.ycc{bottom:645.439742pt;}
.ye0{bottom:648.639741pt;}
.y16{bottom:651.039740pt;}
.ya2{bottom:658.399737pt;}
.y77{bottom:659.839736pt;}
.ycb{bottom:661.119736pt;}
.y15{bottom:667.359733pt;}
.y131{bottom:672.799731pt;}
.ya1{bottom:674.239730pt;}
.y76{bottom:675.679730pt;}
.yca{bottom:677.119729pt;}
.y14{bottom:684.639726pt;}
.y130{bottom:687.039725pt;}
.ya0{bottom:691.039724pt;}
.y13{bottom:691.519723pt;}
.yc9{bottom:692.959723pt;}
.y12f{bottom:701.439719pt;}
.y12{bottom:701.919719pt;}
.y9f{bottom:706.879717pt;}
.y75{bottom:707.359717pt;}
.yc8{bottom:708.799716pt;}
.y12e{bottom:715.999714pt;}
.y44{bottom:718.719713pt;}
.y11{bottom:719.199712pt;}
.y9e{bottom:722.719711pt;}
.y74{bottom:723.359711pt;}
.yc7{bottom:724.639710pt;}
.y10{bottom:726.239710pt;}
.y12d{bottom:730.399708pt;}
.y43{bottom:731.519707pt;}
.yf{bottom:736.479705pt;}
.y9d{bottom:738.559705pt;}
.y73{bottom:738.879704pt;}
.yc6{bottom:740.639704pt;}
.y12c{bottom:744.799702pt;}
.yf6{bottom:751.039700pt;}
.ye{bottom:753.919698pt;}
.y9c{bottom:754.399698pt;}
.y72{bottom:755.039698pt;}
.yc5{bottom:756.319697pt;}
.y12b{bottom:759.199696pt;}
.yd{bottom:760.799696pt;}
.yf5{bottom:765.439694pt;}
.yc{bottom:771.199692pt;}
.y9b{bottom:771.359691pt;}
.y71{bottom:772.159691pt;}
.y12a{bottom:773.599691pt;}
.yf4{bottom:779.839688pt;}
.y9a{bottom:787.039685pt;}
.y129{bottom:787.999685pt;}
.y70{bottom:788.159685pt;}
.ya{bottom:788.639685pt;}
.y3c{bottom:789.759684pt;}
.yf3{bottom:791.039684pt;}
.yb{bottom:796.159682pt;}
.y3d{bottom:802.399679pt;}
.y99{bottom:803.039679pt;}
.y6f{bottom:803.999678pt;}
.y8{bottom:807.199677pt;}
.y9{bottom:814.719674pt;}
.y128{bottom:816.799673pt;}
.y98{bottom:818.879672pt;}
.y6e{bottom:819.839672pt;}
.y3f{bottom:823.839670pt;}
.y7{bottom:826.239670pt;}
.y127{bottom:831.359667pt;}
.y97{bottom:834.719666pt;}
.y6d{bottom:835.679666pt;}
.y6{bottom:845.439662pt;}
.y126{bottom:845.599662pt;}
.y6c{bottom:851.519659pt;}
.y125{bottom:859.999656pt;}
.y6b{bottom:867.359653pt;}
.y5{bottom:873.759650pt;}
.y124{bottom:874.399650pt;}
.y40{bottom:882.559647pt;}
.y6a{bottom:883.199647pt;}
.y123{bottom:888.959644pt;}
.y3e{bottom:895.039642pt;}
.y69{bottom:899.199640pt;}
.y4{bottom:901.759639pt;}
.y155{bottom:902.879639pt;}
.y122{bottom:903.359639pt;}
.y42{bottom:907.679637pt;}
.y41{bottom:914.399634pt;}
.y68{bottom:914.879634pt;}
.y121{bottom:916.799633pt;}
.y154{bottom:917.279633pt;}
.y3{bottom:928.159629pt;}
.y120{bottom:929.279628pt;}
.y67{bottom:930.719628pt;}
.y153{bottom:931.999627pt;}
.y1{bottom:960.159616pt;}
.h9{height:27.730022pt;}
.h16{height:27.891243pt;}
.h12{height:28.579676pt;}
.h7{height:29.386064pt;}
.hd{height:30.816948pt;}
.h17{height:31.042548pt;}
.h15{height:32.887370pt;}
.he{height:34.104089pt;}
.h1{height:34.353753pt;}
.h18{height:34.553484pt;}
.hc{height:36.263995pt;}
.hf{height:37.800665pt;}
.h13{height:37.964047pt;}
.ha{height:38.077391pt;}
.h11{height:38.298771pt;}
.h5{height:40.096859pt;}
.h8{height:41.390063pt;}
.h14{height:41.630703pt;}
.hb{height:44.506350pt;}
.h6{height:44.701269pt;}
.h2{height:46.911903pt;}
.h10{height:48.706447pt;}
.h4{height:53.328822pt;}
.h3{height:66.960333pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:141.119944pt;}
.x33{left:144.319942pt;}
.x13{left:151.999939pt;}
.x34{left:154.399938pt;}
.x35{left:157.919937pt;}
.xb{left:161.279935pt;}
.x2d{left:163.679935pt;}
.x36{left:164.799934pt;}
.x2e{left:168.799932pt;}
.x2b{left:171.039932pt;}
.x22{left:175.040343pt;}
.x14{left:176.319929pt;}
.x3{left:181.279927pt;}
.xc{left:183.039927pt;}
.x4c{left:186.240083pt;}
.x44{left:193.759922pt;}
.x4{left:197.759921pt;}
.x45{left:199.679920pt;}
.x31{left:210.559916pt;}
.x32{left:215.679914pt;}
.x41{left:223.514671pt;}
.x40{left:232.479907pt;}
.x43{left:242.399903pt;}
.x15{left:243.359903pt;}
.x46{left:248.959900pt;}
.x47{left:258.879896pt;}
.x55{left:261.599895pt;}
.x16{left:263.199895pt;}
.x3a{left:267.359893pt;}
.x1d{left:268.479893pt;}
.x37{left:269.599892pt;}
.x23{left:270.559892pt;}
.x24{left:275.839890pt;}
.x2f{left:277.439889pt;}
.x54{left:279.359888pt;}
.x30{left:282.559887pt;}
.x56{left:283.839886pt;}
.x4b{left:302.719843pt;}
.x4e{left:307.839877pt;}
.x2c{left:311.839550pt;}
.x50{left:318.559873pt;}
.x48{left:327.039869pt;}
.x5{left:329.279868pt;}
.x49{left:334.079866pt;}
.x17{left:344.159862pt;}
.x6{left:349.119860pt;}
.xd{left:361.119856pt;}
.x18{left:363.830521pt;}
.xe{left:371.199852pt;}
.x1e{left:376.479849pt;}
.x39{left:383.519847pt;}
.x19{left:408.959836pt;}
.x2{left:412.159835pt;}
.x1a{left:418.879832pt;}
.x25{left:437.759825pt;}
.x26{left:443.199823pt;}
.x7{left:499.679800pt;}
.x3d{left:508.159797pt;}
.x8{left:517.119793pt;}
.xf{left:521.279791pt;}
.x27{left:527.679789pt;}
.x10{left:531.199788pt;}
.x28{left:533.119787pt;}
.x9{left:537.759785pt;}
.x1f{left:541.119784pt;}
.x20{left:546.399781pt;}
.xa{left:554.879778pt;}
.x3c{left:561.759775pt;}
.x3e{left:567.039773pt;}
.x3f{left:568.954532pt;}
.x4d{left:571.679771pt;}
.x1b{left:572.639771pt;}
.x3b{left:573.599771pt;}
.x4a{left:576.639769pt;}
.x11{left:582.719767pt;}
.x1c{left:588.159765pt;}
.x51{left:608.639757pt;}
.x42{left:626.719749pt;}
.x29{left:643.839742pt;}
.x2a{left:649.279740pt;}
.x12{left:663.039735pt;}
.x21{left:667.999733pt;}
.x53{left:670.719713pt;}
.x4f{left:672.799731pt;}
.x38{left:676.959703pt;}
.x52{left:678.399729pt;}
}




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