
    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_db2e138306e3fdf753d9a063.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_3df1c2de055e119c7fa61075.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.681152;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_9db0c5ed4b82bbe2223ae53b.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0768e9e426cce31de26fc646.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3044e0624dbb67f03545a754.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_4c0db5285c1493f1ceb2db1c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.674805;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_3e8bf13fc4fd5570bcadf4e9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.900000;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_5d6011282f08e4aade829f2b.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b593defd480816a80b9f048c.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_8239c3daded80c6b33842e71.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_8c9d04463aaa1f2e634e0535.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.677246;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;}
.m8{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);}
.m3{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);}
.m1{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);}
.m7{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);}
.m5{transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m4{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);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.064988px;}
.ls0{letter-spacing:0.140731px;}
.ls6{letter-spacing:6.876357px;}
.ls4{letter-spacing:7.876077px;}
.ls1{letter-spacing:20.547162px;}
.ls5{letter-spacing:187.859207px;}
.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;}
}
.ws7{word-spacing:-48.378487px;}
.ws0{word-spacing:-28.255789px;}
.ws2{word-spacing:-19.795792px;}
.ws5{word-spacing:-16.984981px;}
.ws6{word-spacing:-16.919993px;}
.ws3{word-spacing:-15.565794px;}
.ws1{word-spacing:-14.889414px;}
.ws4{word-spacing:0.000000px;}
._1a{margin-left:-187.859207px;}
._1f{margin-left:-5.417682px;}
._2{margin-left:-1.479999px;}
._0{width:1.000438px;}
._1{width:2.190369px;}
._5{width:3.571787px;}
._6{width:4.877085px;}
._e{width:6.183689px;}
._10{width:8.164024px;}
._3{width:9.901445px;}
._4{width:11.121008px;}
._13{width:12.405279px;}
._12{width:13.818386px;}
._7{width:15.929507px;}
._8{width:16.957461px;}
._11{width:18.511283px;}
._c{width:19.870466px;}
._b{width:21.052083px;}
._f{width:22.958991px;}
._d{width:24.672527px;}
._1c{width:25.910936px;}
._1d{width:27.100197px;}
._1b{width:30.536931px;}
._9{width:68.811134px;}
._a{width:69.918004px;}
._1e{width:354.952316px;}
._14{width:367.970594px;}
._16{width:574.890117px;}
._17{width:578.314034px;}
._18{width:581.800917px;}
._19{width:853.916919px;}
._15{width:1000.948819px;}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:45.343422px;}
.fs5{font-size:48.051341px;}
.fsa{font-size:50.759980px;}
.fsb{font-size:53.465739px;}
.fs0{font-size:56.174378px;}
.fs7{font-size:59.557656px;}
.fs9{font-size:62.263175px;}
.fs1{font-size:67.679973px;}
.fs4{font-size:73.094371px;}
.fs8{font-size:79.183168px;}
.fs3{font-size:90.014364px;}
.fs2{font-size:113.023155px;}
.y0{bottom:0.000000px;}
.yce{bottom:3.599869px;}
.yd1{bottom:3.599892px;}
.yd4{bottom:3.599906px;}
.yd7{bottom:3.599921px;}
.y68{bottom:4.139681px;}
.y2{bottom:103.319959px;}
.yea{bottom:129.959948px;}
.y5b{bottom:138.959944px;}
.y37{bottom:141.659943px;}
.ye9{bottom:146.879941px;}
.y8d{bottom:147.599941px;}
.y11c{bottom:155.699938px;}
.y5a{bottom:156.779937px;}
.y36{bottom:159.659936px;}
.ye8{bottom:162.179935px;}
.y8c{bottom:165.419934px;}
.y11b{bottom:171.899931px;}
.y59{bottom:174.599930px;}
.yd8{bottom:177.119929px;}
.y35{bottom:177.299929px;}
.y8b{bottom:183.059927px;}
.y11a{bottom:188.279925px;}
.y58{bottom:192.419923px;}
.yd6{bottom:193.140000px;}
.y34{bottom:195.119922px;}
.yb0{bottom:197.819921px;}
.y8a{bottom:201.059920px;}
.y119{bottom:204.299918px;}
.y57{bottom:210.419916px;}
.y33{bottom:213.119915px;}
.yd5{bottom:215.459914px;}
.yaf{bottom:215.639914px;}
.y89{bottom:218.879912px;}
.y118{bottom:220.499912px;}
.y56{bottom:227.879909px;}
.yd3{bottom:230.220000px;}
.y32{bottom:230.759908px;}
.yae{bottom:233.279907px;}
.y88{bottom:236.699905px;}
.y55{bottom:244.439902px;}
.y31{bottom:248.759900px;}
.yad{bottom:249.659900px;}
.yd2{bottom:252.539899px;}
.y117{bottom:253.079899px;}
.y87{bottom:254.519898px;}
.y54{bottom:258.479897px;}
.yac{bottom:265.859894px;}
.y30{bottom:266.579893px;}
.yd0{bottom:267.300000px;}
.y116{bottom:269.279892px;}
.y86{bottom:272.339891px;}
.yab{bottom:278.459889px;}
.y2f{bottom:284.219886px;}
.y115{bottom:285.479886px;}
.ycf{bottom:289.619884px;}
.y85{bottom:290.159884px;}
.y114{bottom:301.499879px;}
.y2e{bottom:302.219879px;}
.y84{bottom:307.979877px;}
.y113{bottom:317.879873px;}
.y146{bottom:318.419873px;}
.y2d{bottom:320.039872px;}
.ycd{bottom:322.920000px;}
.y83{bottom:325.979870px;}
.y112{bottom:334.079866px;}
.yaa{bottom:334.259866px;}
.y2c{bottom:337.859865px;}
.y82{bottom:343.619863px;}
.ycc{bottom:344.879862px;}
.y111{bottom:350.279860px;}
.ya9{bottom:351.899859px;}
.y2b{bottom:355.679858px;}
.y145{bottom:356.219858px;}
.y81{bottom:361.439855px;}
.ycb{bottom:363.599855px;}
.y110{bottom:366.479853px;}
.ye7{bottom:368.099853px;}
.ya8{bottom:369.719852px;}
.y144{bottom:372.419851px;}
.y2a{bottom:373.499851px;}
.y80{bottom:379.439848px;}
.yca{bottom:381.419847px;}
.y10f{bottom:382.859847px;}
.ye6{bottom:384.299846px;}
.ya7{bottom:387.719845px;}
.y143{bottom:388.619845px;}
.y29{bottom:391.319843px;}
.y7f{bottom:397.079841px;}
.yc9{bottom:397.619841px;}
.y10e{bottom:398.879840px;}
.ye5{bottom:401.219840px;}
.ya6{bottom:405.359838px;}
.y28{bottom:409.139836px;}
.y7e{bottom:415.079834px;}
.yc8{bottom:415.619834px;}
.ye4{bottom:416.339833px;}
.y142{bottom:421.559831px;}
.ya5{bottom:423.359831px;}
.y27{bottom:427.139829px;}
.y10d{bottom:431.279827px;}
.y7d{bottom:432.899827px;}
.yc7{bottom:433.439827px;}
.y141{bottom:437.759825px;}
.ya4{bottom:441.179824px;}
.y26{bottom:444.779822px;}
.y10c{bottom:447.659821px;}
.y7c{bottom:450.719820px;}
.yc6{bottom:451.259819px;}
.y140{bottom:453.959818px;}
.ya3{bottom:458.999816px;}
.y25{bottom:462.599815px;}
.y10b{bottom:463.859814px;}
.y53{bottom:464.039814px;}
.y7b{bottom:468.539813px;}
.yc5{bottom:468.719813px;}
.y13f{bottom:470.159812px;}
.ya2{bottom:476.819809px;}
.y52{bottom:479.339808px;}
.y24{bottom:480.599808px;}
.y10a{bottom:480.779808px;}
.y7a{bottom:486.359805px;}
.y13e{bottom:486.539805px;}
.yc4{bottom:487.619805px;}
.ya1{bottom:494.639802px;}
.y51{bottom:497.339801px;}
.y23{bottom:498.419801px;}
.y13d{bottom:502.739799px;}
.y109{bottom:503.459799px;}
.y79{bottom:504.179798px;}
.yc3{bottom:506.159798px;}
.ya0{bottom:512.459795px;}
.y50{bottom:515.159794px;}
.y22{bottom:516.779793px;}
.y13c{bottom:518.759792px;}
.y78{bottom:521.999791px;}
.yc2{bottom:524.699790px;}
.y108{bottom:525.419790px;}
.y9f{bottom:530.279788px;}
.y4f{bottom:532.079787px;}
.y13b{bottom:535.139786px;}
.y21{bottom:539.459784px;}
.y77{bottom:539.999784px;}
.yc1{bottom:543.239783px;}
.y107{bottom:543.419783px;}
.y4e{bottom:547.559781px;}
.y9e{bottom:548.819780px;}
.y13a{bottom:551.339779px;}
.y76{bottom:557.639777px;}
.y20{bottom:558.179777px;}
.y106{bottom:561.059776px;}
.yc0{bottom:561.779775px;}
.y4d{bottom:565.379774px;}
.y139{bottom:566.999773px;}
.y9d{bottom:570.959772px;}
.y1f{bottom:574.559770px;}
.y75{bottom:575.459770px;}
.y105{bottom:579.059768px;}
.ybf{bottom:580.319768px;}
.y4c{bottom:583.019767px;}
.y138{bottom:583.739767px;}
.y9c{bottom:588.599765px;}
.y1e{bottom:591.119764px;}
.y74{bottom:593.459763px;}
.y104{bottom:596.879761px;}
.ybe{bottom:598.859760px;}
.y137{bottom:599.939760px;}
.y4b{bottom:601.019760px;}
.y9b{bottom:606.419757px;}
.y73{bottom:611.279755px;}
.y1d{bottom:611.819755px;}
.ye3{bottom:613.979754px;}
.y103{bottom:614.519754px;}
.y136{bottom:616.139754px;}
.ybd{bottom:617.399753px;}
.y4a{bottom:618.839752px;}
.y9a{bottom:624.419750px;}
.y1c{bottom:628.019749px;}
.y72{bottom:629.099748px;}
.y135{bottom:632.339747px;}
.y102{bottom:632.519747px;}
.ye2{bottom:633.239747px;}
.ybc{bottom:635.579746px;}
.y49{bottom:636.659745px;}
.y99{bottom:642.239743px;}
.y1b{bottom:644.219742px;}
.y71{bottom:646.919741px;}
.y134{bottom:647.999741px;}
.y101{bottom:650.339740px;}
.ye1{bottom:651.059740px;}
.y48{bottom:654.479738px;}
.y98{bottom:660.059736px;}
.y1a{bottom:660.419736px;}
.y70{bottom:664.739734px;}
.y100{bottom:668.159733px;}
.ye0{bottom:668.879732px;}
.y47{bottom:670.499732px;}
.ybb{bottom:672.299731px;}
.y19{bottom:676.619729px;}
.y97{bottom:677.879729px;}
.y133{bottom:681.119728px;}
.y6f{bottom:682.559727px;}
.yff{bottom:685.979726px;}
.ydf{bottom:686.699725px;}
.y46{bottom:686.879725px;}
.yba{bottom:688.499725px;}
.y18{bottom:692.999723px;}
.y96{bottom:695.879722px;}
.y132{bottom:697.319721px;}
.y45{bottom:699.299720px;}
.y6e{bottom:700.379720px;}
.yfe{bottom:703.799718px;}
.yde{bottom:704.519718px;}
.yb9{bottom:707.039717px;}
.y17{bottom:709.019716px;}
.y131{bottom:713.339715px;}
.y95{bottom:713.519715px;}
.y6d{bottom:718.379713px;}
.yfd{bottom:721.619711px;}
.ydd{bottom:722.339711px;}
.y16{bottom:725.219710px;}
.yb8{bottom:726.479709px;}
.y130{bottom:729.719708px;}
.y94{bottom:731.339707px;}
.y6c{bottom:736.019706px;}
.yfc{bottom:739.439704px;}
.ydc{bottom:740.879704px;}
.y15{bottom:741.419703px;}
.y12f{bottom:745.379702px;}
.yb7{bottom:745.919702px;}
.y93{bottom:749.339700px;}
.y6b{bottom:754.559698px;}
.yfb{bottom:757.439697px;}
.y14{bottom:757.799697px;}
.y12e{bottom:762.119695px;}
.ydb{bottom:762.839695px;}
.yb6{bottom:765.359694px;}
.y92{bottom:766.979693px;}
.y13{bottom:774.359690px;}
.yfa{bottom:775.079690px;}
.y6a{bottom:777.239689px;}
.y12d{bottom:778.319689px;}
.yda{bottom:779.219688px;}
.yb5{bottom:784.079686px;}
.y91{bottom:784.979686px;}
.yf9{bottom:792.899683px;}
.yd9{bottom:793.259683px;}
.y67{bottom:793.260000px;}
.y12c{bottom:794.519682px;}
.y12{bottom:795.239682px;}
.y69{bottom:797.399681px;}
.y66{bottom:798.299681px;}
.yb4{bottom:802.079679px;}
.y90{bottom:802.799679px;}
.y12b{bottom:810.719676px;}
.yf8{bottom:810.899676px;}
.y11{bottom:816.839673px;}
.y65{bottom:817.379673px;}
.y64{bottom:818.459673px;}
.yb3{bottom:819.899672px;}
.y8f{bottom:820.439672px;}
.y12a{bottom:826.919669px;}
.yf7{bottom:829.259668px;}
.y10{bottom:836.279665px;}
.y44{bottom:836.819665px;}
.y63{bottom:837.719665px;}
.yb2{bottom:838.259665px;}
.y8e{bottom:838.439665px;}
.y62{bottom:838.799664px;}
.y129{bottom:843.119663px;}
.yf{bottom:844.019662px;}
.yf6{bottom:851.219660px;}
.yb1{bottom:853.559659px;}
.ye{bottom:855.719658px;}
.y43{bottom:856.259657px;}
.y61{bottom:857.879657px;}
.y60{bottom:858.959656px;}
.y128{bottom:859.319656px;}
.yf5{bottom:869.219652px;}
.y42{bottom:874.079650px;}
.yd{bottom:875.159650px;}
.y127{bottom:875.699650px;}
.y5f{bottom:876.959649px;}
.yc{bottom:882.899647px;}
.yf4{bottom:887.039645px;}
.y126{bottom:891.719643px;}
.y41{bottom:891.899643px;}
.yb{bottom:894.599642px;}
.y5e{bottom:896.039642px;}
.yf3{bottom:904.859638px;}
.y125{bottom:907.919637px;}
.y40{bottom:909.719636px;}
.y5d{bottom:913.679635px;}
.ya{bottom:914.039634px;}
.y9{bottom:921.779631px;}
.yf2{bottom:922.679631px;}
.y124{bottom:924.299630px;}
.y3f{bottom:927.539629px;}
.y5c{bottom:929.159628px;}
.y7{bottom:933.659627px;}
.yf1{bottom:940.499624px;}
.y8{bottom:942.119623px;}
.y3e{bottom:945.359622px;}
.y6{bottom:954.719618px;}
.y123{bottom:956.699617px;}
.yf0{bottom:958.319617px;}
.y3d{bottom:963.359615px;}
.y122{bottom:972.899611px;}
.yef{bottom:976.139610px;}
.y5{bottom:978.659609px;}
.y3c{bottom:980.999608px;}
.y121{bottom:989.099604px;}
.yee{bottom:994.139602px;}
.y3b{bottom:998.819600px;}
.y120{bottom:1005.299598px;}
.y4{bottom:1010.339596px;}
.yed{bottom:1011.779595px;}
.y3a{bottom:1016.819593px;}
.y11f{bottom:1021.499591px;}
.yec{bottom:1029.779588px;}
.y39{bottom:1034.459586px;}
.y11e{bottom:1037.699585px;}
.y3{bottom:1042.199583px;}
.yeb{bottom:1048.319581px;}
.y38{bottom:1052.459579px;}
.y11d{bottom:1053.899578px;}
.y1{bottom:1086.659565px;}
.h8{height:0.000000px;}
.h12{height:17.460000px;}
.h10{height:19.080000px;}
.h7{height:31.196274px;}
.h6{height:33.059322px;}
.hb{height:38.367100px;}
.h1{height:38.647972px;}
.h13{height:38.985018px;}
.ha{height:40.796994px;}
.he{height:42.837064px;}
.hd{height:43.210644px;}
.h11{height:45.108966px;}
.h2{height:46.563821px;}
.hf{height:46.969901px;}
.h9{height:50.069644px;}
.h5{height:50.288927px;}
.hc{height:54.953119px;}
.h4{height:59.994925px;}
.h3{height:75.330374px;}
.h0{height:1188.000000px;}
.w3{width:4.320000px;}
.w1{width:5.580000px;}
.w5{width:7.920000px;}
.w9{width:17.280000px;}
.w7{width:18.180000px;}
.w4{width:19.080000px;}
.wb{width:35.820000px;}
.w2{width:41.040000px;}
.w8{width:57.780000px;}
.wa{width:95.940000px;}
.w6{width:192.060000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3{left:153.179939px;}
.x26{left:156.419937px;}
.x23{left:159.299936px;}
.x28{left:161.639935px;}
.x5{left:162.720076px;}
.x24{left:165.059934px;}
.x29{left:167.219933px;}
.x6{left:180.719928px;}
.x2d{left:186.299925px;}
.x59{left:190.439924px;}
.x3d{left:191.699923px;}
.x41{left:197.279921px;}
.x31{left:209.879916px;}
.x1{left:215.099914px;}
.x15{left:221.759911px;}
.x7{left:224.279910px;}
.x53{left:229.319908px;}
.x2b{left:231.119908px;}
.x48{left:234.899906px;}
.x2c{left:236.879905px;}
.x8{left:241.559903px;}
.x46{left:243.000220px;}
.x16{left:247.139901px;}
.x5a{left:248.579901px;}
.x52{left:252.179899px;}
.x5c{left:260.279896px;}
.x36{left:263.879508px;}
.x42{left:265.679894px;}
.x5b{left:268.379893px;}
.x34{left:275.939890px;}
.x4d{left:281.160000px;}
.x4a{left:282.960000px;}
.x58{left:286.559885px;}
.x3e{left:298.799880px;}
.x43{left:300.779880px;}
.x1e{left:302.219591px;}
.x2e{left:304.019878px;}
.x3f{left:306.539877px;}
.x9{left:317.159873px;}
.x49{left:320.759872px;}
.x56{left:326.520565px;}
.x47{left:327.959869px;}
.xa{left:336.419865px;}
.x33{left:341.999863px;}
.x17{left:346.859861px;}
.x54{left:351.899859px;}
.x51{left:357.659857px;}
.x27{left:358.739223px;}
.x1f{left:362.519855px;}
.x20{left:368.639853px;}
.x18{left:372.599851px;}
.x57{left:382.859847px;}
.xb{left:394.006342px;}
.x25{left:398.339403px;}
.x40{left:428.579829px;}
.x37{left:430.199828px;}
.xc{left:431.819827px;}
.x3a{left:435.780000px;}
.xd{left:437.399825px;}
.x39{left:448.199821px;}
.x45{left:450.899820px;}
.x4{left:455.579818px;}
.x38{left:461.159816px;}
.xe{left:462.959815px;}
.x19{left:464.939814px;}
.x4f{left:466.020000px;}
.xf{left:468.539813px;}
.x21{left:474.119810px;}
.x3b{left:476.820000px;}
.x1a{left:479.339808px;}
.x3c{left:480.959808px;}
.x10{left:485.999806px;}
.x4c{left:487.980000px;}
.x35{left:496.619801px;}
.x2a{left:513.539795px;}
.x4e{left:525.960000px;}
.x11{left:561.239776px;}
.x1b{left:565.019774px;}
.x12{left:579.779768px;}
.x1c{left:588.779764px;}
.x22{left:602.999759px;}
.x4b{left:622.260000px;}
.x50{left:664.559734px;}
.x55{left:666.179734px;}
.x1d{left:695.159722px;}
.x2{left:696.419721px;}
.x13{left:697.859721px;}
.x14{left:715.139714px;}
.x32{left:737.639705px;}
.x30{left:744.479702px;}
.x44{left:745.559702px;}
.x2f{left:751.138406px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.057767pt;}
.ls0{letter-spacing:0.125094pt;}
.ls6{letter-spacing:6.112318pt;}
.ls4{letter-spacing:7.000957pt;}
.ls1{letter-spacing:18.264144pt;}
.ls5{letter-spacing:166.985961pt;}
.ws7{word-spacing:-43.003100pt;}
.ws0{word-spacing:-25.116257pt;}
.ws2{word-spacing:-17.596260pt;}
.ws5{word-spacing:-15.097761pt;}
.ws6{word-spacing:-15.039994pt;}
.ws3{word-spacing:-13.836261pt;}
.ws1{word-spacing:-13.235035pt;}
.ws4{word-spacing:0.000000pt;}
._1a{margin-left:-166.985961pt;}
._1f{margin-left:-4.815717pt;}
._2{margin-left:-1.315554pt;}
._0{width:0.889278pt;}
._1{width:1.946995pt;}
._5{width:3.174921pt;}
._6{width:4.335187pt;}
._e{width:5.496613pt;}
._10{width:7.256911pt;}
._3{width:8.801284pt;}
._4{width:9.885340pt;}
._13{width:11.026914pt;}
._12{width:12.283010pt;}
._7{width:14.159562pt;}
._8{width:15.073298pt;}
._11{width:16.454474pt;}
._c{width:17.662637pt;}
._b{width:18.712963pt;}
._f{width:20.407992pt;}
._d{width:21.931135pt;}
._1c{width:23.031943pt;}
._1d{width:24.089064pt;}
._1b{width:27.143939pt;}
._9{width:61.165453pt;}
._a{width:62.149337pt;}
._1e{width:315.513170pt;}
._14{width:327.084972pt;}
._16{width:511.013437pt;}
._17{width:514.056919pt;}
._18{width:517.156371pt;}
._19{width:759.037261pt;}
._15{width:889.732284pt;}
.fs6{font-size:40.305264pt;}
.fs5{font-size:42.712303pt;}
.fsa{font-size:45.119982pt;}
.fsb{font-size:47.525101pt;}
.fs0{font-size:49.932780pt;}
.fs7{font-size:52.940139pt;}
.fs9{font-size:55.345045pt;}
.fs1{font-size:60.159976pt;}
.fs4{font-size:64.972774pt;}
.fs8{font-size:70.385039pt;}
.fs3{font-size:80.012768pt;}
.fs2{font-size:100.465026pt;}
.y0{bottom:0.000000pt;}
.yce{bottom:3.199884pt;}
.yd1{bottom:3.199904pt;}
.yd4{bottom:3.199917pt;}
.yd7{bottom:3.199930pt;}
.y68{bottom:3.679716pt;}
.y2{bottom:91.839963pt;}
.yea{bottom:115.519954pt;}
.y5b{bottom:123.519951pt;}
.y37{bottom:125.919950pt;}
.ye9{bottom:130.559948pt;}
.y8d{bottom:131.199948pt;}
.y11c{bottom:138.399945pt;}
.y5a{bottom:139.359944pt;}
.y36{bottom:141.919943pt;}
.ye8{bottom:144.159942pt;}
.y8c{bottom:147.039941pt;}
.y11b{bottom:152.799939pt;}
.y59{bottom:155.199938pt;}
.yd8{bottom:157.439937pt;}
.y35{bottom:157.599937pt;}
.y8b{bottom:162.719935pt;}
.y11a{bottom:167.359933pt;}
.y58{bottom:171.039932pt;}
.yd6{bottom:171.680000pt;}
.y34{bottom:173.439931pt;}
.yb0{bottom:175.839930pt;}
.y8a{bottom:178.719929pt;}
.y119{bottom:181.599927pt;}
.y57{bottom:187.039925pt;}
.y33{bottom:189.439924pt;}
.yd5{bottom:191.519923pt;}
.yaf{bottom:191.679923pt;}
.y89{bottom:194.559922pt;}
.y118{bottom:195.999922pt;}
.y56{bottom:202.559919pt;}
.yd3{bottom:204.640000pt;}
.y32{bottom:205.119918pt;}
.yae{bottom:207.359917pt;}
.y88{bottom:210.399916pt;}
.y55{bottom:217.279913pt;}
.y31{bottom:221.119912pt;}
.yad{bottom:221.919911pt;}
.yd2{bottom:224.479910pt;}
.y117{bottom:224.959910pt;}
.y87{bottom:226.239910pt;}
.y54{bottom:229.759908pt;}
.yac{bottom:236.319905pt;}
.y30{bottom:236.959905pt;}
.yd0{bottom:237.600000pt;}
.y116{bottom:239.359904pt;}
.y86{bottom:242.079903pt;}
.yab{bottom:247.519901pt;}
.y2f{bottom:252.639899pt;}
.y115{bottom:253.759898pt;}
.ycf{bottom:257.439897pt;}
.y85{bottom:257.919897pt;}
.y114{bottom:267.999893pt;}
.y2e{bottom:268.639893pt;}
.y84{bottom:273.759890pt;}
.y113{bottom:282.559887pt;}
.y146{bottom:283.039887pt;}
.y2d{bottom:284.479886pt;}
.ycd{bottom:287.040000pt;}
.y83{bottom:289.759884pt;}
.y112{bottom:296.959881pt;}
.yaa{bottom:297.119881pt;}
.y2c{bottom:300.319880pt;}
.y82{bottom:305.439878pt;}
.ycc{bottom:306.559877pt;}
.y111{bottom:311.359875pt;}
.ya9{bottom:312.799875pt;}
.y2b{bottom:316.159874pt;}
.y145{bottom:316.639873pt;}
.y81{bottom:321.279871pt;}
.ycb{bottom:323.199871pt;}
.y110{bottom:325.759870pt;}
.ye7{bottom:327.199869pt;}
.ya8{bottom:328.639869pt;}
.y144{bottom:331.039868pt;}
.y2a{bottom:331.999867pt;}
.y80{bottom:337.279865pt;}
.yca{bottom:339.039864pt;}
.y10f{bottom:340.319864pt;}
.ye6{bottom:341.599863pt;}
.ya7{bottom:344.639862pt;}
.y143{bottom:345.439862pt;}
.y29{bottom:347.839861pt;}
.y7f{bottom:352.959859pt;}
.yc9{bottom:353.439859pt;}
.y10e{bottom:354.559858pt;}
.ye5{bottom:356.639857pt;}
.ya6{bottom:360.319856pt;}
.y28{bottom:363.679855pt;}
.y7e{bottom:368.959852pt;}
.yc8{bottom:369.439852pt;}
.ye4{bottom:370.079852pt;}
.y142{bottom:374.719850pt;}
.ya5{bottom:376.319849pt;}
.y27{bottom:379.679848pt;}
.y10d{bottom:383.359847pt;}
.y7d{bottom:384.799846pt;}
.yc7{bottom:385.279846pt;}
.y141{bottom:389.119844pt;}
.ya4{bottom:392.159843pt;}
.y26{bottom:395.359842pt;}
.y10c{bottom:397.919841pt;}
.y7c{bottom:400.639840pt;}
.yc6{bottom:401.119840pt;}
.y140{bottom:403.519839pt;}
.ya3{bottom:407.999837pt;}
.y25{bottom:411.199836pt;}
.y10b{bottom:412.319835pt;}
.y53{bottom:412.479835pt;}
.y7b{bottom:416.479833pt;}
.yc5{bottom:416.639833pt;}
.y13f{bottom:417.919833pt;}
.ya2{bottom:423.839830pt;}
.y52{bottom:426.079830pt;}
.y24{bottom:427.199829pt;}
.y10a{bottom:427.359829pt;}
.y7a{bottom:432.319827pt;}
.y13e{bottom:432.479827pt;}
.yc4{bottom:433.439827pt;}
.ya1{bottom:439.679824pt;}
.y51{bottom:442.079823pt;}
.y23{bottom:443.039823pt;}
.y13d{bottom:446.879821pt;}
.y109{bottom:447.519821pt;}
.y79{bottom:448.159821pt;}
.yc3{bottom:449.919820pt;}
.ya0{bottom:455.519818pt;}
.y50{bottom:457.919817pt;}
.y22{bottom:459.359816pt;}
.y13c{bottom:461.119816pt;}
.y78{bottom:463.999814pt;}
.yc2{bottom:466.399813pt;}
.y108{bottom:467.039813pt;}
.y9f{bottom:471.359811pt;}
.y4f{bottom:472.959811pt;}
.y13b{bottom:475.679810pt;}
.y21{bottom:479.519808pt;}
.y77{bottom:479.999808pt;}
.yc1{bottom:482.879807pt;}
.y107{bottom:483.039807pt;}
.y4e{bottom:486.719805pt;}
.y9e{bottom:487.839805pt;}
.y13a{bottom:490.079804pt;}
.y76{bottom:495.679802pt;}
.y20{bottom:496.159802pt;}
.y106{bottom:498.719801pt;}
.yc0{bottom:499.359800pt;}
.y4d{bottom:502.559799pt;}
.y139{bottom:503.999798pt;}
.y9d{bottom:507.519797pt;}
.y1f{bottom:510.719796pt;}
.y75{bottom:511.519795pt;}
.y105{bottom:514.719794pt;}
.ybf{bottom:515.839794pt;}
.y4c{bottom:518.239793pt;}
.y138{bottom:518.879792pt;}
.y9c{bottom:523.199791pt;}
.y1e{bottom:525.439790pt;}
.y74{bottom:527.519789pt;}
.y104{bottom:530.559788pt;}
.ybe{bottom:532.319787pt;}
.y137{bottom:533.279787pt;}
.y4b{bottom:534.239786pt;}
.y9b{bottom:539.039784pt;}
.y73{bottom:543.359783pt;}
.y1d{bottom:543.839782pt;}
.ye3{bottom:545.759782pt;}
.y103{bottom:546.239782pt;}
.y136{bottom:547.679781pt;}
.ybd{bottom:548.799780pt;}
.y4a{bottom:550.079780pt;}
.y9a{bottom:555.039778pt;}
.y1c{bottom:558.239777pt;}
.y72{bottom:559.199776pt;}
.y135{bottom:562.079775pt;}
.y102{bottom:562.239775pt;}
.ye2{bottom:562.879775pt;}
.ybc{bottom:564.959774pt;}
.y49{bottom:565.919774pt;}
.y99{bottom:570.879772pt;}
.y1b{bottom:572.639771pt;}
.y71{bottom:575.039770pt;}
.y134{bottom:575.999770pt;}
.y101{bottom:578.079769pt;}
.ye1{bottom:578.719769pt;}
.y48{bottom:581.759767pt;}
.y98{bottom:586.719765pt;}
.y1a{bottom:587.039765pt;}
.y70{bottom:590.879764pt;}
.y100{bottom:593.919762pt;}
.ye0{bottom:594.559762pt;}
.y47{bottom:595.999762pt;}
.ybb{bottom:597.599761pt;}
.y19{bottom:601.439759pt;}
.y97{bottom:602.559759pt;}
.y133{bottom:605.439758pt;}
.y6f{bottom:606.719757pt;}
.yff{bottom:609.759756pt;}
.ydf{bottom:610.399756pt;}
.y46{bottom:610.559756pt;}
.yba{bottom:611.999755pt;}
.y18{bottom:615.999754pt;}
.y96{bottom:618.559753pt;}
.y132{bottom:619.839752pt;}
.y45{bottom:621.599751pt;}
.y6e{bottom:622.559751pt;}
.yfe{bottom:625.599750pt;}
.yde{bottom:626.239750pt;}
.yb9{bottom:628.479749pt;}
.y17{bottom:630.239748pt;}
.y131{bottom:634.079746pt;}
.y95{bottom:634.239746pt;}
.y6d{bottom:638.559745pt;}
.yfd{bottom:641.439743pt;}
.ydd{bottom:642.079743pt;}
.y16{bottom:644.639742pt;}
.yb8{bottom:645.759742pt;}
.y130{bottom:648.639741pt;}
.y94{bottom:650.079740pt;}
.y6c{bottom:654.239738pt;}
.yfc{bottom:657.279737pt;}
.ydc{bottom:658.559737pt;}
.y15{bottom:659.039736pt;}
.y12f{bottom:662.559735pt;}
.yb7{bottom:663.039735pt;}
.y93{bottom:666.079734pt;}
.y6b{bottom:670.719732pt;}
.yfb{bottom:673.279731pt;}
.y14{bottom:673.599731pt;}
.y12e{bottom:677.439729pt;}
.ydb{bottom:678.079729pt;}
.yb6{bottom:680.319728pt;}
.y92{bottom:681.759727pt;}
.y13{bottom:688.319725pt;}
.yfa{bottom:688.959724pt;}
.y6a{bottom:690.879724pt;}
.y12d{bottom:691.839723pt;}
.yda{bottom:692.639723pt;}
.yb5{bottom:696.959721pt;}
.y91{bottom:697.759721pt;}
.yf9{bottom:704.799718pt;}
.yd9{bottom:705.119718pt;}
.y67{bottom:705.120000pt;}
.y12c{bottom:706.239718pt;}
.y12{bottom:706.879717pt;}
.y69{bottom:708.799716pt;}
.y66{bottom:709.599716pt;}
.yb4{bottom:712.959715pt;}
.y90{bottom:713.599715pt;}
.y12b{bottom:720.639712pt;}
.yf8{bottom:720.799712pt;}
.y11{bottom:726.079710pt;}
.y65{bottom:726.559709pt;}
.y64{bottom:727.519709pt;}
.yb3{bottom:728.799708pt;}
.y8f{bottom:729.279708pt;}
.y12a{bottom:735.039706pt;}
.yf7{bottom:737.119705pt;}
.y10{bottom:743.359703pt;}
.y44{bottom:743.839702pt;}
.y63{bottom:744.639702pt;}
.yb2{bottom:745.119702pt;}
.y8e{bottom:745.279702pt;}
.y62{bottom:745.599702pt;}
.y129{bottom:749.439700pt;}
.yf{bottom:750.239700pt;}
.yf6{bottom:756.639697pt;}
.yb1{bottom:758.719697pt;}
.ye{bottom:760.639696pt;}
.y43{bottom:761.119696pt;}
.y61{bottom:762.559695pt;}
.y60{bottom:763.519695pt;}
.y128{bottom:763.839694pt;}
.yf5{bottom:772.639691pt;}
.y42{bottom:776.959689pt;}
.yd{bottom:777.919689pt;}
.y127{bottom:778.399689pt;}
.y5f{bottom:779.519688pt;}
.yc{bottom:784.799686pt;}
.yf4{bottom:788.479685pt;}
.y126{bottom:792.639683pt;}
.y41{bottom:792.799683pt;}
.yb{bottom:795.199682pt;}
.y5e{bottom:796.479681pt;}
.yf3{bottom:804.319678pt;}
.y125{bottom:807.039677pt;}
.y40{bottom:808.639677pt;}
.y5d{bottom:812.159675pt;}
.ya{bottom:812.479675pt;}
.y9{bottom:819.359672pt;}
.yf2{bottom:820.159672pt;}
.y124{bottom:821.599671pt;}
.y3f{bottom:824.479670pt;}
.y5c{bottom:825.919670pt;}
.y7{bottom:829.919668pt;}
.yf1{bottom:835.999666pt;}
.y8{bottom:837.439665pt;}
.y3e{bottom:840.319664pt;}
.y6{bottom:848.639661pt;}
.y123{bottom:850.399660pt;}
.yf0{bottom:851.839659pt;}
.y3d{bottom:856.319657pt;}
.y122{bottom:864.799654pt;}
.yef{bottom:867.679653pt;}
.y5{bottom:869.919652pt;}
.y3c{bottom:871.999651pt;}
.y121{bottom:879.199648pt;}
.yee{bottom:883.679647pt;}
.y3b{bottom:887.839645pt;}
.y120{bottom:893.599643pt;}
.y4{bottom:898.079641pt;}
.yed{bottom:899.359640pt;}
.y3a{bottom:903.839638pt;}
.y11f{bottom:907.999637pt;}
.yec{bottom:915.359634pt;}
.y39{bottom:919.519632pt;}
.y11e{bottom:922.399631pt;}
.y3{bottom:926.399629pt;}
.yeb{bottom:931.839627pt;}
.y38{bottom:935.519626pt;}
.y11d{bottom:936.799625pt;}
.y1{bottom:965.919614pt;}
.h8{height:0.000000pt;}
.h12{height:15.520000pt;}
.h10{height:16.960000pt;}
.h7{height:27.730022pt;}
.h6{height:29.386064pt;}
.hb{height:34.104089pt;}
.h1{height:34.353753pt;}
.h13{height:34.653349pt;}
.ha{height:36.263995pt;}
.he{height:38.077391pt;}
.hd{height:38.409461pt;}
.h11{height:40.096859pt;}
.h2{height:41.390063pt;}
.hf{height:41.751023pt;}
.h9{height:44.506350pt;}
.h5{height:44.701269pt;}
.hc{height:48.847217pt;}
.h4{height:53.328822pt;}
.h3{height:66.960333pt;}
.h0{height:1056.000000pt;}
.w3{width:3.840000pt;}
.w1{width:4.960000pt;}
.w5{width:7.040000pt;}
.w9{width:15.360000pt;}
.w7{width:16.160000pt;}
.w4{width:16.960000pt;}
.wb{width:31.840000pt;}
.w2{width:36.480000pt;}
.w8{width:51.360000pt;}
.wa{width:85.280000pt;}
.w6{width:170.720000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3{left:136.159946pt;}
.x26{left:139.039944pt;}
.x23{left:141.599943pt;}
.x28{left:143.679943pt;}
.x5{left:144.640068pt;}
.x24{left:146.719941pt;}
.x29{left:148.639941pt;}
.x6{left:160.639936pt;}
.x2d{left:165.599934pt;}
.x59{left:169.279932pt;}
.x3d{left:170.399932pt;}
.x41{left:175.359930pt;}
.x31{left:186.559925pt;}
.x1{left:191.199924pt;}
.x15{left:197.119921pt;}
.x7{left:199.359920pt;}
.x53{left:203.839918pt;}
.x2b{left:205.439918pt;}
.x48{left:208.799916pt;}
.x2c{left:210.559916pt;}
.x8{left:214.719914pt;}
.x46{left:216.000195pt;}
.x16{left:219.679912pt;}
.x5a{left:220.959912pt;}
.x52{left:224.159910pt;}
.x5c{left:231.359907pt;}
.x36{left:234.559563pt;}
.x42{left:236.159906pt;}
.x5b{left:238.559905pt;}
.x34{left:245.279902pt;}
.x4d{left:249.920000pt;}
.x4a{left:251.520000pt;}
.x58{left:254.719898pt;}
.x3e{left:265.599894pt;}
.x43{left:267.359893pt;}
.x1e{left:268.639636pt;}
.x2e{left:270.239892pt;}
.x3f{left:272.479891pt;}
.x9{left:281.919887pt;}
.x49{left:285.119886pt;}
.x56{left:290.240502pt;}
.x47{left:291.519883pt;}
.xa{left:299.039880pt;}
.x33{left:303.999878pt;}
.x17{left:308.319877pt;}
.x54{left:312.799875pt;}
.x51{left:317.919873pt;}
.x27{left:318.879309pt;}
.x1f{left:322.239871pt;}
.x20{left:327.679869pt;}
.x18{left:331.199868pt;}
.x57{left:340.319864pt;}
.xb{left:350.227860pt;}
.x25{left:354.079469pt;}
.x40{left:380.959848pt;}
.x37{left:382.399847pt;}
.xc{left:383.839846pt;}
.x3a{left:387.360000pt;}
.xd{left:388.799844pt;}
.x39{left:398.399841pt;}
.x45{left:400.799840pt;}
.x4{left:404.959838pt;}
.x38{left:409.919836pt;}
.xe{left:411.519835pt;}
.x19{left:413.279835pt;}
.x4f{left:414.240000pt;}
.xf{left:416.479833pt;}
.x21{left:421.439831pt;}
.x3b{left:423.840000pt;}
.x1a{left:426.079830pt;}
.x3c{left:427.519829pt;}
.x10{left:431.999827pt;}
.x4c{left:433.760000pt;}
.x35{left:441.439823pt;}
.x2a{left:456.479817pt;}
.x4e{left:467.520000pt;}
.x11{left:498.879800pt;}
.x1b{left:502.239799pt;}
.x12{left:515.359794pt;}
.x1c{left:523.359791pt;}
.x22{left:535.999786pt;}
.x4b{left:553.120000pt;}
.x50{left:590.719764pt;}
.x55{left:592.159763pt;}
.x1d{left:617.919753pt;}
.x2{left:619.039752pt;}
.x13{left:620.319752pt;}
.x14{left:635.679746pt;}
.x32{left:655.679738pt;}
.x30{left:661.759735pt;}
.x44{left:662.719735pt;}
.x2f{left:667.678583pt;}
}




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