
    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_fd1b9a230d66e10fb5444ce8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.984375;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_8501213e901cc450cec12b74.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.128906;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_6521d43df640cbdb45a1e6e5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.962891;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_f27405a74f569d71b6799e06.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_4a74fb00208303448de7a278.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.900879;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_66e150f224b22498513704a1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.687500;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_9ae39dbd5237d0d1c72e7368.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.900879;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_eb3ab2dd3572cf09b3f4906e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.093262;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_ade83cb9991974add4dfb583.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.791504;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_fef024698a1b9a8cda19e2df.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.128906;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_f5cc47ba680d4059bb1db207.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.984375;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_a7d51e426791e416fe2e877d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.973145;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_347c6ddd70ba3b4acacedf87.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.769043;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:ffe;src:url('chunks/assets/font_5912c411aa9aed58a6939266.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.984375;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;}
.m1{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249390,0.000000,-0.079805,0.236920,0,0);-ms-transform:matrix(0.249390,0.000000,-0.079805,0.236920,0,0);-webkit-transform:matrix(0.249390,0.000000,-0.079805,0.236920,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:6.000000px;}
.ls6{letter-spacing:-9.000000px;}
.ls12{letter-spacing:-6.014682px;}
.ls11{letter-spacing:-6.000000px;}
.ls5{letter-spacing:-3.000000px;}
.ls7{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.600000px;}
.lsb{letter-spacing:0.601468px;}
.ls3{letter-spacing:1.392000px;}
.ls13{letter-spacing:3.000000px;}
.lsa{letter-spacing:3.608809px;}
.ls0{letter-spacing:6.000000px;}
.lsc{letter-spacing:9.623491px;}
.ls10{letter-spacing:11.232000px;}
.ls14{letter-spacing:15.000000px;}
.ls2{letter-spacing:19.500000px;}
.ls8{letter-spacing:21.000000px;}
.lsf{letter-spacing:22.800000px;}
.ls9{letter-spacing:26.700000px;}
.ls1{letter-spacing:28.509000px;}
.lsd{letter-spacing:143.628000px;}
.lse{letter-spacing:151.428000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-69.624000px;}
.ws6{word-spacing:-66.000000px;}
.ws4{word-spacing:-54.009000px;}
.wse{word-spacing:-31.500000px;}
.ws18{word-spacing:-26.568000px;}
.ws17{word-spacing:-18.044046px;}
.ws2{word-spacing:-17.568000px;}
.ws16{word-spacing:-15.291000px;}
.wsc{word-spacing:-15.000000px;}
.wsf{word-spacing:-14.460000px;}
.ws3{word-spacing:-13.500000px;}
.wsd{word-spacing:-12.750000px;}
.ws13{word-spacing:-12.029364px;}
.ws11{word-spacing:-11.568000px;}
.ws9{word-spacing:-10.500000px;}
.ws15{word-spacing:-10.122000px;}
.wsa{word-spacing:-6.240000px;}
.ws14{word-spacing:-4.138101px;}
.wsb{word-spacing:-3.486000px;}
.ws1{word-spacing:-3.192000px;}
.ws7{word-spacing:-0.436800px;}
.ws10{word-spacing:0.000000px;}
.ws8{word-spacing:0.470400px;}
.ws12{word-spacing:15.864000px;}
.ws5{word-spacing:20.952000px;}
._22{margin-left:-36.627000px;}
._20{margin-left:-27.456000px;}
._23{margin-left:-26.160000px;}
._2b{margin-left:-23.919000px;}
._26{margin-left:-22.128000px;}
._d{margin-left:-20.976000px;}
._2f{margin-left:-19.584000px;}
._12{margin-left:-18.048000px;}
._13{margin-left:-15.312000px;}
._25{margin-left:-13.824000px;}
._21{margin-left:-12.528000px;}
._28{margin-left:-10.944000px;}
._24{margin-left:-9.792000px;}
._1d{margin-left:-7.824000px;}
._0{margin-left:-6.612000px;}
._a{margin-left:-5.088000px;}
._10{margin-left:-3.936000px;}
._4{margin-left:-2.928000px;}
._7{margin-left:-1.632000px;}
._3{width:1.008000px;}
._5{width:2.592000px;}
._e{width:4.080000px;}
._11{width:5.136000px;}
._b{width:6.192000px;}
._9{width:7.776000px;}
._1{width:9.504000px;}
._6{width:11.088000px;}
._8{width:12.144000px;}
._f{width:13.632000px;}
._c{width:14.688000px;}
._2{width:15.840000px;}
._34{width:17.496000px;}
._14{width:19.056000px;}
._18{width:20.928000px;}
._33{width:22.176000px;}
._19{width:23.280000px;}
._17{width:24.768000px;}
._15{width:26.112000px;}
._2d{width:27.552000px;}
._1e{width:28.896000px;}
._1a{width:30.912000px;}
._16{width:32.352000px;}
._27{width:33.456000px;}
._1f{width:34.464000px;}
._30{width:35.616000px;}
._1b{width:36.912000px;}
._2c{width:38.496000px;}
._2e{width:39.792000px;}
._29{width:42.144000px;}
._1c{width:43.584000px;}
._38{width:45.312000px;}
._36{width:51.456000px;}
._2a{width:55.086000px;}
._39{width:68.760000px;}
._3c{width:78.624000px;}
._32{width:102.096000px;}
._35{width:131.226000px;}
._3b{width:149.988000px;}
._31{width:157.440000px;}
._37{width:198.276000px;}
._3a{width:401.904000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs12{font-size:19.246983px;}
.fs4{font-size:24.000000px;}
.fs11{font-size:24.058728px;}
.fsc{font-size:27.000000px;}
.fs8{font-size:33.600000px;}
.fsa{font-size:36.000000px;}
.fsb{font-size:38.400000px;}
.fs9{font-size:42.000000px;}
.fs2{font-size:48.000000px;}
.fs13{font-size:48.117456px;}
.fs6{font-size:51.000000px;}
.fs3{font-size:54.000000px;}
.fse{font-size:60.000000px;}
.fsd{font-size:60.146820px;}
.fs0{font-size:87.000000px;}
.fs5{font-size:111.000000px;}
.fs7{font-size:120.000000px;}
.fsf{font-size:198.000000px;}
.fs10{font-size:249.000000px;}
.fs1{font-size:264.000000px;}
.y10b{bottom:-0.015000px;}
.y0{bottom:0.000000px;}
.y10a{bottom:11.535000px;}
.y87{bottom:40.335000px;}
.y86{bottom:47.535000px;}
.yc8{bottom:58.035000px;}
.y109{bottom:58.335000px;}
.y85{bottom:84.285000px;}
.y84{bottom:92.235000px;}
.yc7{bottom:98.985000px;}
.y108{bottom:99.435000px;}
.y83{bottom:102.585000px;}
.yfb{bottom:105.135000px;}
.y38{bottom:106.935000px;}
.yc6{bottom:114.135000px;}
.y82{bottom:118.485000px;}
.yfa{bottom:121.035000px;}
.y37{bottom:122.835000px;}
.y64{bottom:128.235000px;}
.yc5{bottom:130.635000px;}
.y81{bottom:134.685000px;}
.y63{bottom:135.735000px;}
.yf9{bottom:137.235000px;}
.y36{bottom:139.035000px;}
.yc4{bottom:146.535000px;}
.y107{bottom:146.835000px;}
.y80{bottom:150.885000px;}
.yf8{bottom:152.235000px;}
.y35{bottom:154.785000px;}
.yc3{bottom:162.735000px;}
.y62{bottom:172.035000px;}
.yf7{bottom:173.835000px;}
.y34{bottom:174.585000px;}
.yc2{bottom:178.935000px;}
.y61{bottom:179.985000px;}
.y7f{bottom:186.135000px;}
.yf6{bottom:188.685000px;}
.y33{bottom:190.485000px;}
.yc1{bottom:194.835000px;}
.y7e{bottom:201.285000px;}
.yf5{bottom:204.885000px;}
.y32{bottom:206.685000px;}
.yc0{bottom:211.035000px;}
.y60{bottom:215.685000px;}
.y7d{bottom:218.235000px;}
.yf4{bottom:220.635000px;}
.y31{bottom:222.435000px;}
.y5f{bottom:223.635000px;}
.y7c{bottom:234.735000px;}
.ybf{bottom:236.835000px;}
.y58{bottom:237.285000px;}
.y30{bottom:238.335000px;}
.yb8{bottom:240.135000px;}
.y7b{bottom:250.635000px;}
.ybe{bottom:251.985000px;}
.yf3{bottom:253.035000px;}
.y2f{bottom:254.535000px;}
.yb7{bottom:256.035000px;}
.y7a{bottom:266.085000px;}
.y5e{bottom:266.835000px;}
.ybd{bottom:268.635000px;}
.yf2{bottom:268.935000px;}
.y2e{bottom:271.035000px;}
.yb6{bottom:272.235000px;}
.y79{bottom:282.585000px;}
.ybc{bottom:283.035000px;}
.y106{bottom:283.635000px;}
.yf1{bottom:285.135000px;}
.yae{bottom:286.635000px;}
.y2d{bottom:286.935000px;}
.yb5{bottom:287.685000px;}
.y103{bottom:287.985000px;}
.y78{bottom:298.785000px;}
.ybb{bottom:299.835000px;}
.yf0{bottom:301.335000px;}
.yad{bottom:301.635000px;}
.y104{bottom:302.085000px;}
.y5d{bottom:302.385000px;}
.y2c{bottom:302.835000px;}
.yb4{bottom:304.185000px;}
.y5c{bottom:310.635000px;}
.y77{bottom:315.435000px;}
.yef{bottom:317.235000px;}
.yac{bottom:318.585000px;}
.y2b{bottom:319.035000px;}
.yb3{bottom:320.385000px;}
.y76{bottom:331.185000px;}
.yee{bottom:333.435000px;}
.yab{bottom:334.785000px;}
.y2a{bottom:335.235000px;}
.yb2{bottom:335.835000px;}
.y75{bottom:347.835000px;}
.yba{bottom:348.135000px;}
.yed{bottom:349.635000px;}
.yaa{bottom:350.685000px;}
.y29{bottom:350.985000px;}
.yb1{bottom:352.785000px;}
.yb9{bottom:363.285000px;}
.y57{bottom:363.585000px;}
.yec{bottom:365.385000px;}
.ya9{bottom:366.885000px;}
.y28{bottom:367.185000px;}
.yb0{bottom:368.235000px;}
.yeb{bottom:379.485000px;}
.y105{bottom:379.785000px;}
.y74{bottom:380.235000px;}
.ya8{bottom:383.085000px;}
.y27{bottom:383.385000px;}
.yaf{bottom:384.435000px;}
.y102{bottom:384.885000px;}
.y5b{bottom:389.835000px;}
.y73{bottom:395.685000px;}
.yea{bottom:397.485000px;}
.y26{bottom:399.285000px;}
.ya7{bottom:409.335000px;}
.y101{bottom:409.635000px;}
.y72{bottom:410.385000px;}
.ye9{bottom:413.985000px;}
.y25{bottom:415.485000px;}
.ya6{bottom:422.985000px;}
.y71{bottom:428.085000px;}
.ye8{bottom:429.885000px;}
.y24{bottom:431.235000px;}
.y100{bottom:439.935000px;}
.ya5{bottom:440.235000px;}
.y70{bottom:444.285000px;}
.ye7{bottom:446.085000px;}
.y23{bottom:447.435000px;}
.y6f{bottom:460.785000px;}
.ye6{bottom:462.285000px;}
.y22{bottom:463.635000px;}
.ya4{bottom:466.635000px;}
.y3a{bottom:469.785000px;}
.y5a{bottom:476.685000px;}
.ye5{bottom:478.485000px;}
.y21{bottom:479.535000px;}
.y59{bottom:483.435000px;}
.ya3{bottom:485.685000px;}
.y39{bottom:488.535000px;}
.y6e{bottom:492.885000px;}
.ye4{bottom:494.235000px;}
.y20{bottom:495.735000px;}
.ya2{bottom:501.435000px;}
.y6d{bottom:509.085000px;}
.ye3{bottom:510.885000px;}
.y1f{bottom:511.935000px;}
.ya1{bottom:519.135000px;}
.y6c{bottom:524.835000px;}
.ye2{bottom:526.335000px;}
.y1e{bottom:528.135000px;}
.ya0{bottom:540.435000px;}
.y6b{bottom:541.035000px;}
.ye1{bottom:542.535000px;}
.y1d{bottom:543.585000px;}
.y9f{bottom:554.085000px;}
.y6a{bottom:556.935000px;}
.ye0{bottom:558.435000px;}
.y1c{bottom:559.785000px;}
.y9e{bottom:569.835000px;}
.y69{bottom:573.435000px;}
.ydf{bottom:574.935000px;}
.y1b{bottom:575.985000px;}
.y9d{bottom:586.035000px;}
.y68{bottom:589.335000px;}
.yde{bottom:590.835000px;}
.y1a{bottom:592.185000px;}
.y9c{bottom:602.235000px;}
.ydd{bottom:610.935000px;}
.y19{bottom:611.235000px;}
.y9b{bottom:618.435000px;}
.y67{bottom:625.035000px;}
.ydc{bottom:626.385000px;}
.y18{bottom:627.135000px;}
.y9a{bottom:634.635000px;}
.y66{bottom:641.535000px;}
.ydb{bottom:642.585000px;}
.y17{bottom:643.335000px;}
.y99{bottom:650.535000px;}
.y65{bottom:657.435000px;}
.yda{bottom:658.485000px;}
.y16{bottom:659.535000px;}
.y98{bottom:665.985000px;}
.y97{bottom:673.185000px;}
.y56{bottom:674.685000px;}
.yd9{bottom:676.485000px;}
.yff{bottom:677.535000px;}
.yfe{bottom:684.735000px;}
.y96{bottom:685.035000px;}
.y15{bottom:689.835000px;}
.y95{bottom:700.935000px;}
.y14{bottom:706.035000px;}
.yd8{bottom:706.335000px;}
.y94{bottom:717.135000px;}
.y13{bottom:722.235000px;}
.y93{bottom:733.335000px;}
.y12{bottom:737.985000px;}
.y55{bottom:738.435000px;}
.y92{bottom:749.535000px;}
.y11{bottom:754.185000px;}
.y54{bottom:754.635000px;}
.y91{bottom:765.735000px;}
.y53{bottom:770.385000px;}
.y10{bottom:770.535000px;}
.y90{bottom:781.635000px;}
.yf{bottom:786.285000px;}
.y52{bottom:786.585000px;}
.y8f{bottom:797.835000px;}
.yfd{bottom:798.135000px;}
.ye{bottom:802.035000px;}
.yd7{bottom:802.485000px;}
.y51{bottom:802.785000px;}
.y8e{bottom:814.035000px;}
.yd{bottom:818.235000px;}
.yd6{bottom:818.685000px;}
.y50{bottom:818.985000px;}
.y8d{bottom:830.235000px;}
.yc{bottom:834.435000px;}
.y4f{bottom:834.885000px;}
.yb{bottom:850.635000px;}
.y4e{bottom:851.085000px;}
.y8c{bottom:866.235000px;}
.ya{bottom:866.835000px;}
.y4d{bottom:867.285000px;}
.y8b{bottom:881.985000px;}
.y9{bottom:882.435000px;}
.yd5{bottom:883.035000px;}
.y4c{bottom:883.485000px;}
.y8{bottom:898.635000px;}
.yd4{bottom:899.235000px;}
.y4b{bottom:899.685000px;}
.y45{bottom:912.285000px;}
.y7{bottom:914.835000px;}
.yd3{bottom:915.135000px;}
.y4a{bottom:915.885000px;}
.y6{bottom:930.585000px;}
.yfc{bottom:931.035000px;}
.yd2{bottom:931.335000px;}
.y49{bottom:932.085000px;}
.y5{bottom:946.785000px;}
.yd1{bottom:947.535000px;}
.y48{bottom:947.835000px;}
.y4{bottom:962.685000px;}
.y8a{bottom:962.985000px;}
.yd0{bottom:963.735000px;}
.y47{bottom:964.035000px;}
.y3{bottom:978.885000px;}
.y89{bottom:979.185000px;}
.ycf{bottom:979.635000px;}
.y46{bottom:980.235000px;}
.yce{bottom:1006.935000px;}
.y88{bottom:1028.835000px;}
.ycd{bottom:1050.885000px;}
.y3e{bottom:1079.985000px;}
.y44{bottom:1081.785000px;}
.y43{bottom:1097.685000px;}
.ycc{bottom:1097.985000px;}
.ycb{bottom:1114.185000px;}
.y2{bottom:1115.235000px;}
.y42{bottom:1131.435000px;}
.y41{bottom:1154.535000px;}
.y40{bottom:1172.835000px;}
.y3f{bottom:1187.235000px;}
.y3d{bottom:1195.635000px;}
.y3b{bottom:1204.935000px;}
.yca{bottom:1236.585000px;}
.y1{bottom:1301.385000px;}
.yc9{bottom:1302.885000px;}
.y3c{bottom:1314.435000px;}
.hd{height:17.995605px;}
.h13{height:20.581490px;}
.hc{height:23.994141px;}
.ha{height:31.587891px;}
.h15{height:33.398438px;}
.h8{height:36.281250px;}
.h9{height:36.852539px;}
.h14{height:38.308594px;}
.h16{height:41.162980px;}
.h4{height:43.781250px;}
.h7{height:44.749512px;}
.h10{height:45.380859px;}
.hb{height:46.195312px;}
.h17{height:46.517578px;}
.h5{height:47.381836px;}
.he{height:51.453725px;}
.hf{height:54.726562px;}
.h2{height:74.425781px;}
.h18{height:83.954590px;}
.h6{height:101.244141px;}
.h11{height:148.500000px;}
.h12{height:227.115234px;}
.h3{height:240.796875px;}
.h0{height:1358.625000px;}
.h1{height:1359.000000px;}
.w0{width:912.600000px;}
.w1{width:912.750000px;}
.x0{left:0.000000px;}
.xb{left:112.650000px;}
.x4{left:114.150000px;}
.x5{left:115.650000px;}
.x6{left:116.700000px;}
.x7{left:117.750000px;}
.x9{left:118.800000px;}
.x3{left:130.350000px;}
.x3f{left:131.850000px;}
.xa{left:132.900000px;}
.x8{left:134.700000px;}
.x2{left:137.550000px;}
.x40{left:145.050000px;}
.x1{left:148.650000px;}
.x3d{left:228.600000px;}
.x1e{left:266.400000px;}
.xc{left:295.950000px;}
.x3e{left:317.850000px;}
.x1d{left:323.700000px;}
.x16{left:346.350000px;}
.x1f{left:351.450000px;}
.x20{left:353.250000px;}
.x21{left:354.300000px;}
.xd{left:355.350000px;}
.x22{left:356.400000px;}
.x26{left:357.900000px;}
.x27{left:358.950000px;}
.x23{left:375.900000px;}
.x17{left:378.000000px;}
.x24{left:379.500000px;}
.x25{left:380.550000px;}
.x10{left:383.400000px;}
.x18{left:384.450000px;}
.x1a{left:385.950000px;}
.x19{left:387.450000px;}
.x1b{left:388.500000px;}
.xf{left:389.550000px;}
.x1c{left:391.350000px;}
.x44{left:442.500000px;}
.x29{left:478.050000px;}
.x2a{left:479.550000px;}
.x2c{left:481.050000px;}
.x33{left:482.400000px;}
.x2e{left:483.450000px;}
.x2b{left:496.500000px;}
.x34{left:497.550000px;}
.x2f{left:500.100000px;}
.x30{left:502.500000px;}
.x41{left:523.500000px;}
.x31{left:547.950000px;}
.x32{left:553.650000px;}
.x2d{left:558.450000px;}
.x3b{left:592.200000px;}
.x35{left:594.300000px;}
.x43{left:595.500000px;}
.x3a{left:609.450000px;}
.x3c{left:673.200000px;}
.x42{left:685.950000px;}
.xe{left:695.250000px;}
.x28{left:707.100000px;}
.x14{left:712.500000px;}
.x39{left:713.550000px;}
.x36{left:714.900000px;}
.x37{left:715.950000px;}
.x38{left:730.050000px;}
.x15{left:745.500000px;}
.x13{left:861.750000px;}
.x12{left:864.000000px;}
.x11{left:875.850000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.333333pt;}
.ls6{letter-spacing:-8.000000pt;}
.ls12{letter-spacing:-5.346384pt;}
.ls11{letter-spacing:-5.333333pt;}
.ls5{letter-spacing:-2.666667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.533333pt;}
.lsb{letter-spacing:0.534638pt;}
.ls3{letter-spacing:1.237333pt;}
.ls13{letter-spacing:2.666667pt;}
.lsa{letter-spacing:3.207830pt;}
.ls0{letter-spacing:5.333333pt;}
.lsc{letter-spacing:8.554214pt;}
.ls10{letter-spacing:9.984000pt;}
.ls14{letter-spacing:13.333333pt;}
.ls2{letter-spacing:17.333333pt;}
.ls8{letter-spacing:18.666667pt;}
.lsf{letter-spacing:20.266667pt;}
.ls9{letter-spacing:23.733333pt;}
.ls1{letter-spacing:25.341333pt;}
.lsd{letter-spacing:127.669333pt;}
.lse{letter-spacing:134.602667pt;}
.ws0{word-spacing:-61.888000pt;}
.ws6{word-spacing:-58.666667pt;}
.ws4{word-spacing:-48.008000pt;}
.wse{word-spacing:-28.000000pt;}
.ws18{word-spacing:-23.616000pt;}
.ws17{word-spacing:-16.039152pt;}
.ws2{word-spacing:-15.616000pt;}
.ws16{word-spacing:-13.592000pt;}
.wsc{word-spacing:-13.333333pt;}
.wsf{word-spacing:-12.853333pt;}
.ws3{word-spacing:-12.000000pt;}
.wsd{word-spacing:-11.333333pt;}
.ws13{word-spacing:-10.692768pt;}
.ws11{word-spacing:-10.282667pt;}
.ws9{word-spacing:-9.333333pt;}
.ws15{word-spacing:-8.997333pt;}
.wsa{word-spacing:-5.546667pt;}
.ws14{word-spacing:-3.678312pt;}
.wsb{word-spacing:-3.098667pt;}
.ws1{word-spacing:-2.837333pt;}
.ws7{word-spacing:-0.388267pt;}
.ws10{word-spacing:0.000000pt;}
.ws8{word-spacing:0.418133pt;}
.ws12{word-spacing:14.101333pt;}
.ws5{word-spacing:18.624000pt;}
._22{margin-left:-32.557333pt;}
._20{margin-left:-24.405333pt;}
._23{margin-left:-23.253333pt;}
._2b{margin-left:-21.261333pt;}
._26{margin-left:-19.669333pt;}
._d{margin-left:-18.645333pt;}
._2f{margin-left:-17.408000pt;}
._12{margin-left:-16.042667pt;}
._13{margin-left:-13.610667pt;}
._25{margin-left:-12.288000pt;}
._21{margin-left:-11.136000pt;}
._28{margin-left:-9.728000pt;}
._24{margin-left:-8.704000pt;}
._1d{margin-left:-6.954667pt;}
._0{margin-left:-5.877333pt;}
._a{margin-left:-4.522667pt;}
._10{margin-left:-3.498667pt;}
._4{margin-left:-2.602667pt;}
._7{margin-left:-1.450667pt;}
._3{width:0.896000pt;}
._5{width:2.304000pt;}
._e{width:3.626667pt;}
._11{width:4.565333pt;}
._b{width:5.504000pt;}
._9{width:6.912000pt;}
._1{width:8.448000pt;}
._6{width:9.856000pt;}
._8{width:10.794667pt;}
._f{width:12.117333pt;}
._c{width:13.056000pt;}
._2{width:14.080000pt;}
._34{width:15.552000pt;}
._14{width:16.938667pt;}
._18{width:18.602667pt;}
._33{width:19.712000pt;}
._19{width:20.693333pt;}
._17{width:22.016000pt;}
._15{width:23.210667pt;}
._2d{width:24.490667pt;}
._1e{width:25.685333pt;}
._1a{width:27.477333pt;}
._16{width:28.757333pt;}
._27{width:29.738667pt;}
._1f{width:30.634667pt;}
._30{width:31.658667pt;}
._1b{width:32.810667pt;}
._2c{width:34.218667pt;}
._2e{width:35.370667pt;}
._29{width:37.461333pt;}
._1c{width:38.741333pt;}
._38{width:40.277333pt;}
._36{width:45.738667pt;}
._2a{width:48.965333pt;}
._39{width:61.120000pt;}
._3c{width:69.888000pt;}
._32{width:90.752000pt;}
._35{width:116.645333pt;}
._3b{width:133.322667pt;}
._31{width:139.946667pt;}
._37{width:176.245333pt;}
._3a{width:357.248000pt;}
.fs12{font-size:17.108429pt;}
.fs4{font-size:21.333333pt;}
.fs11{font-size:21.385536pt;}
.fsc{font-size:24.000000pt;}
.fs8{font-size:29.866667pt;}
.fsa{font-size:32.000000pt;}
.fsb{font-size:34.133333pt;}
.fs9{font-size:37.333333pt;}
.fs2{font-size:42.666667pt;}
.fs13{font-size:42.771072pt;}
.fs6{font-size:45.333333pt;}
.fs3{font-size:48.000000pt;}
.fse{font-size:53.333333pt;}
.fsd{font-size:53.463840pt;}
.fs0{font-size:77.333333pt;}
.fs5{font-size:98.666667pt;}
.fs7{font-size:106.666667pt;}
.fsf{font-size:176.000000pt;}
.fs10{font-size:221.333333pt;}
.fs1{font-size:234.666667pt;}
.y10b{bottom:-0.013333pt;}
.y0{bottom:0.000000pt;}
.y10a{bottom:10.253333pt;}
.y87{bottom:35.853333pt;}
.y86{bottom:42.253333pt;}
.yc8{bottom:51.586667pt;}
.y109{bottom:51.853333pt;}
.y85{bottom:74.920000pt;}
.y84{bottom:81.986667pt;}
.yc7{bottom:87.986667pt;}
.y108{bottom:88.386667pt;}
.y83{bottom:91.186667pt;}
.yfb{bottom:93.453333pt;}
.y38{bottom:95.053333pt;}
.yc6{bottom:101.453333pt;}
.y82{bottom:105.320000pt;}
.yfa{bottom:107.586667pt;}
.y37{bottom:109.186667pt;}
.y64{bottom:113.986667pt;}
.yc5{bottom:116.120000pt;}
.y81{bottom:119.720000pt;}
.y63{bottom:120.653333pt;}
.yf9{bottom:121.986667pt;}
.y36{bottom:123.586667pt;}
.yc4{bottom:130.253333pt;}
.y107{bottom:130.520000pt;}
.y80{bottom:134.120000pt;}
.yf8{bottom:135.320000pt;}
.y35{bottom:137.586667pt;}
.yc3{bottom:144.653333pt;}
.y62{bottom:152.920000pt;}
.yf7{bottom:154.520000pt;}
.y34{bottom:155.186667pt;}
.yc2{bottom:159.053333pt;}
.y61{bottom:159.986667pt;}
.y7f{bottom:165.453333pt;}
.yf6{bottom:167.720000pt;}
.y33{bottom:169.320000pt;}
.yc1{bottom:173.186667pt;}
.y7e{bottom:178.920000pt;}
.yf5{bottom:182.120000pt;}
.y32{bottom:183.720000pt;}
.yc0{bottom:187.586667pt;}
.y60{bottom:191.720000pt;}
.y7d{bottom:193.986667pt;}
.yf4{bottom:196.120000pt;}
.y31{bottom:197.720000pt;}
.y5f{bottom:198.786667pt;}
.y7c{bottom:208.653333pt;}
.ybf{bottom:210.520000pt;}
.y58{bottom:210.920000pt;}
.y30{bottom:211.853333pt;}
.yb8{bottom:213.453333pt;}
.y7b{bottom:222.786667pt;}
.ybe{bottom:223.986667pt;}
.yf3{bottom:224.920000pt;}
.y2f{bottom:226.253333pt;}
.yb7{bottom:227.586667pt;}
.y7a{bottom:236.520000pt;}
.y5e{bottom:237.186667pt;}
.ybd{bottom:238.786667pt;}
.yf2{bottom:239.053333pt;}
.y2e{bottom:240.920000pt;}
.yb6{bottom:241.986667pt;}
.y79{bottom:251.186667pt;}
.ybc{bottom:251.586667pt;}
.y106{bottom:252.120000pt;}
.yf1{bottom:253.453333pt;}
.yae{bottom:254.786667pt;}
.y2d{bottom:255.053333pt;}
.yb5{bottom:255.720000pt;}
.y103{bottom:255.986667pt;}
.y78{bottom:265.586667pt;}
.ybb{bottom:266.520000pt;}
.yf0{bottom:267.853333pt;}
.yad{bottom:268.120000pt;}
.y104{bottom:268.520000pt;}
.y5d{bottom:268.786667pt;}
.y2c{bottom:269.186667pt;}
.yb4{bottom:270.386667pt;}
.y5c{bottom:276.120000pt;}
.y77{bottom:280.386667pt;}
.yef{bottom:281.986667pt;}
.yac{bottom:283.186667pt;}
.y2b{bottom:283.586667pt;}
.yb3{bottom:284.786667pt;}
.y76{bottom:294.386667pt;}
.yee{bottom:296.386667pt;}
.yab{bottom:297.586667pt;}
.y2a{bottom:297.986667pt;}
.yb2{bottom:298.520000pt;}
.y75{bottom:309.186667pt;}
.yba{bottom:309.453333pt;}
.yed{bottom:310.786667pt;}
.yaa{bottom:311.720000pt;}
.y29{bottom:311.986667pt;}
.yb1{bottom:313.586667pt;}
.yb9{bottom:322.920000pt;}
.y57{bottom:323.186667pt;}
.yec{bottom:324.786667pt;}
.ya9{bottom:326.120000pt;}
.y28{bottom:326.386667pt;}
.yb0{bottom:327.320000pt;}
.yeb{bottom:337.320000pt;}
.y105{bottom:337.586667pt;}
.y74{bottom:337.986667pt;}
.ya8{bottom:340.520000pt;}
.y27{bottom:340.786667pt;}
.yaf{bottom:341.720000pt;}
.y102{bottom:342.120000pt;}
.y5b{bottom:346.520000pt;}
.y73{bottom:351.720000pt;}
.yea{bottom:353.320000pt;}
.y26{bottom:354.920000pt;}
.ya7{bottom:363.853333pt;}
.y101{bottom:364.120000pt;}
.y72{bottom:364.786667pt;}
.ye9{bottom:367.986667pt;}
.y25{bottom:369.320000pt;}
.ya6{bottom:375.986667pt;}
.y71{bottom:380.520000pt;}
.ye8{bottom:382.120000pt;}
.y24{bottom:383.320000pt;}
.y100{bottom:391.053333pt;}
.ya5{bottom:391.320000pt;}
.y70{bottom:394.920000pt;}
.ye7{bottom:396.520000pt;}
.y23{bottom:397.720000pt;}
.y6f{bottom:409.586667pt;}
.ye6{bottom:410.920000pt;}
.y22{bottom:412.120000pt;}
.ya4{bottom:414.786667pt;}
.y3a{bottom:417.586667pt;}
.y5a{bottom:423.720000pt;}
.ye5{bottom:425.320000pt;}
.y21{bottom:426.253333pt;}
.y59{bottom:429.720000pt;}
.ya3{bottom:431.720000pt;}
.y39{bottom:434.253333pt;}
.y6e{bottom:438.120000pt;}
.ye4{bottom:439.320000pt;}
.y20{bottom:440.653333pt;}
.ya2{bottom:445.720000pt;}
.y6d{bottom:452.520000pt;}
.ye3{bottom:454.120000pt;}
.y1f{bottom:455.053333pt;}
.ya1{bottom:461.453333pt;}
.y6c{bottom:466.520000pt;}
.ye2{bottom:467.853333pt;}
.y1e{bottom:469.453333pt;}
.ya0{bottom:480.386667pt;}
.y6b{bottom:480.920000pt;}
.ye1{bottom:482.253333pt;}
.y1d{bottom:483.186667pt;}
.y9f{bottom:492.520000pt;}
.y6a{bottom:495.053333pt;}
.ye0{bottom:496.386667pt;}
.y1c{bottom:497.586667pt;}
.y9e{bottom:506.520000pt;}
.y69{bottom:509.720000pt;}
.ydf{bottom:511.053333pt;}
.y1b{bottom:511.986667pt;}
.y9d{bottom:520.920000pt;}
.y68{bottom:523.853333pt;}
.yde{bottom:525.186667pt;}
.y1a{bottom:526.386667pt;}
.y9c{bottom:535.320000pt;}
.ydd{bottom:543.053333pt;}
.y19{bottom:543.320000pt;}
.y9b{bottom:549.720000pt;}
.y67{bottom:555.586667pt;}
.ydc{bottom:556.786667pt;}
.y18{bottom:557.453333pt;}
.y9a{bottom:564.120000pt;}
.y66{bottom:570.253333pt;}
.ydb{bottom:571.186667pt;}
.y17{bottom:571.853333pt;}
.y99{bottom:578.253333pt;}
.y65{bottom:584.386667pt;}
.yda{bottom:585.320000pt;}
.y16{bottom:586.253333pt;}
.y98{bottom:591.986667pt;}
.y97{bottom:598.386667pt;}
.y56{bottom:599.720000pt;}
.yd9{bottom:601.320000pt;}
.yff{bottom:602.253333pt;}
.yfe{bottom:608.653333pt;}
.y96{bottom:608.920000pt;}
.y15{bottom:613.186667pt;}
.y95{bottom:623.053333pt;}
.y14{bottom:627.586667pt;}
.yd8{bottom:627.853333pt;}
.y94{bottom:637.453333pt;}
.y13{bottom:641.986667pt;}
.y93{bottom:651.853333pt;}
.y12{bottom:655.986667pt;}
.y55{bottom:656.386667pt;}
.y92{bottom:666.253333pt;}
.y11{bottom:670.386667pt;}
.y54{bottom:670.786667pt;}
.y91{bottom:680.653333pt;}
.y53{bottom:684.786667pt;}
.y10{bottom:684.920000pt;}
.y90{bottom:694.786667pt;}
.yf{bottom:698.920000pt;}
.y52{bottom:699.186667pt;}
.y8f{bottom:709.186667pt;}
.yfd{bottom:709.453333pt;}
.ye{bottom:712.920000pt;}
.yd7{bottom:713.320000pt;}
.y51{bottom:713.586667pt;}
.y8e{bottom:723.586667pt;}
.yd{bottom:727.320000pt;}
.yd6{bottom:727.720000pt;}
.y50{bottom:727.986667pt;}
.y8d{bottom:737.986667pt;}
.yc{bottom:741.720000pt;}
.y4f{bottom:742.120000pt;}
.yb{bottom:756.120000pt;}
.y4e{bottom:756.520000pt;}
.y8c{bottom:769.986667pt;}
.ya{bottom:770.520000pt;}
.y4d{bottom:770.920000pt;}
.y8b{bottom:783.986667pt;}
.y9{bottom:784.386667pt;}
.yd5{bottom:784.920000pt;}
.y4c{bottom:785.320000pt;}
.y8{bottom:798.786667pt;}
.yd4{bottom:799.320000pt;}
.y4b{bottom:799.720000pt;}
.y45{bottom:810.920000pt;}
.y7{bottom:813.186667pt;}
.yd3{bottom:813.453333pt;}
.y4a{bottom:814.120000pt;}
.y6{bottom:827.186667pt;}
.yfc{bottom:827.586667pt;}
.yd2{bottom:827.853333pt;}
.y49{bottom:828.520000pt;}
.y5{bottom:841.586667pt;}
.yd1{bottom:842.253333pt;}
.y48{bottom:842.520000pt;}
.y4{bottom:855.720000pt;}
.y8a{bottom:855.986667pt;}
.yd0{bottom:856.653333pt;}
.y47{bottom:856.920000pt;}
.y3{bottom:870.120000pt;}
.y89{bottom:870.386667pt;}
.ycf{bottom:870.786667pt;}
.y46{bottom:871.320000pt;}
.yce{bottom:895.053333pt;}
.y88{bottom:914.520000pt;}
.ycd{bottom:934.120000pt;}
.y3e{bottom:959.986667pt;}
.y44{bottom:961.586667pt;}
.y43{bottom:975.720000pt;}
.ycc{bottom:975.986667pt;}
.ycb{bottom:990.386667pt;}
.y2{bottom:991.320000pt;}
.y42{bottom:1005.720000pt;}
.y41{bottom:1026.253333pt;}
.y40{bottom:1042.520000pt;}
.y3f{bottom:1055.320000pt;}
.y3d{bottom:1062.786667pt;}
.y3b{bottom:1071.053333pt;}
.yca{bottom:1099.186667pt;}
.y1{bottom:1156.786667pt;}
.yc9{bottom:1158.120000pt;}
.y3c{bottom:1168.386667pt;}
.hd{height:15.996094pt;}
.h13{height:18.294658pt;}
.hc{height:21.328125pt;}
.ha{height:28.078125pt;}
.h15{height:29.687500pt;}
.h8{height:32.250000pt;}
.h9{height:32.757812pt;}
.h14{height:34.052083pt;}
.h16{height:36.589316pt;}
.h4{height:38.916667pt;}
.h7{height:39.777344pt;}
.h10{height:40.338542pt;}
.hb{height:41.062500pt;}
.h17{height:41.348958pt;}
.h5{height:42.117188pt;}
.he{height:45.736645pt;}
.hf{height:48.645833pt;}
.h2{height:66.156250pt;}
.h18{height:74.626302pt;}
.h6{height:89.994792pt;}
.h11{height:132.000000pt;}
.h12{height:201.880208pt;}
.h3{height:214.041667pt;}
.h0{height:1207.666667pt;}
.h1{height:1208.000000pt;}
.w0{width:811.200000pt;}
.w1{width:811.333333pt;}
.x0{left:0.000000pt;}
.xb{left:100.133333pt;}
.x4{left:101.466667pt;}
.x5{left:102.800000pt;}
.x6{left:103.733333pt;}
.x7{left:104.666667pt;}
.x9{left:105.600000pt;}
.x3{left:115.866667pt;}
.x3f{left:117.200000pt;}
.xa{left:118.133333pt;}
.x8{left:119.733333pt;}
.x2{left:122.266667pt;}
.x40{left:128.933333pt;}
.x1{left:132.133333pt;}
.x3d{left:203.200000pt;}
.x1e{left:236.800000pt;}
.xc{left:263.066667pt;}
.x3e{left:282.533333pt;}
.x1d{left:287.733333pt;}
.x16{left:307.866667pt;}
.x1f{left:312.400000pt;}
.x20{left:314.000000pt;}
.x21{left:314.933333pt;}
.xd{left:315.866667pt;}
.x22{left:316.800000pt;}
.x26{left:318.133333pt;}
.x27{left:319.066667pt;}
.x23{left:334.133333pt;}
.x17{left:336.000000pt;}
.x24{left:337.333333pt;}
.x25{left:338.266667pt;}
.x10{left:340.800000pt;}
.x18{left:341.733333pt;}
.x1a{left:343.066667pt;}
.x19{left:344.400000pt;}
.x1b{left:345.333333pt;}
.xf{left:346.266667pt;}
.x1c{left:347.866667pt;}
.x44{left:393.333333pt;}
.x29{left:424.933333pt;}
.x2a{left:426.266667pt;}
.x2c{left:427.600000pt;}
.x33{left:428.800000pt;}
.x2e{left:429.733333pt;}
.x2b{left:441.333333pt;}
.x34{left:442.266667pt;}
.x2f{left:444.533333pt;}
.x30{left:446.666667pt;}
.x41{left:465.333333pt;}
.x31{left:487.066667pt;}
.x32{left:492.133333pt;}
.x2d{left:496.400000pt;}
.x3b{left:526.400000pt;}
.x35{left:528.266667pt;}
.x43{left:529.333333pt;}
.x3a{left:541.733333pt;}
.x3c{left:598.400000pt;}
.x42{left:609.733333pt;}
.xe{left:618.000000pt;}
.x28{left:628.533333pt;}
.x14{left:633.333333pt;}
.x39{left:634.266667pt;}
.x36{left:635.466667pt;}
.x37{left:636.400000pt;}
.x38{left:648.933333pt;}
.x15{left:662.666667pt;}
.x13{left:766.000000pt;}
.x12{left:768.000000pt;}
.x11{left:778.533333pt;}
}




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