
    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_0253204bf4efbea20a368abf.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.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:ff2;src:url('chunks/assets/font_44252918ca3542fee207da69.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.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:ff3;src:url('chunks/assets/font_0bb43f296fca076df90372ee.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.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_b5e289a7dbffc20e97f6b9ef.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.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:ff5;src:url('chunks/assets/font_72d3b18e0201787d8592f6d2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.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:ff6;src:url('chunks/assets/font_7243a7ce47ecaa701deecb8f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.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:ff7;src:url('chunks/assets/font_08f35b1ad3ac1d0790aa39f1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.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_2ade38ed45dedcaa6dd088b3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.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_42afe92e60e9c015b1bca065.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.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_e938752a8d534b01bfa3d4d1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.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:ffb;src:url('chunks/assets/font_d4ae6e19d1520146083f751a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.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:ffc;src:url('chunks/assets/font_3e0c1e3a6efc5797cc65b276.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.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:ffd;src:url('chunks/assets/font_fb3c6b45fa36e5b5d0a91255.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.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:ffe;src:url('chunks/assets/font_303e576d16f3a865781fa2b2.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.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:fff;src:url('chunks/assets/font_66ddc622308ecb4bc1cd057e.woff2')format("woff");}.fff{font-family:fff;line-height:1.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:ff10;src:url('chunks/assets/font_b2552071e69e1a770bb27a8b.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.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:ff11;src:url('chunks/assets/font_218c907126ff0a2488534789.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.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:ff12;src:url('chunks/assets/font_268fa714ed782dac27f8206c.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.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:ff13;src:url('chunks/assets/font_3208ab1abe13c07aac007b1b.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.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;}
.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);}
.m2{transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:8.326717px;}
.ls5{letter-spacing:10.705762px;}
.ls4{letter-spacing:11.895344px;}
.ls3{letter-spacing:16.856719px;}
.ls1{letter-spacing:36.373928px;}
.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;}
}
.wsa{word-spacing:-34.789398px;}
.wsb{word-spacing:-29.828024px;}
.wsc{word-spacing:-26.845102px;}
.ws4{word-spacing:-20.879557px;}
.ws0{word-spacing:-17.932680px;}
.ws12{word-spacing:-15.117182px;}
.wsf{word-spacing:-14.848204px;}
.ws7{word-spacing:-8.547911px;}
.ws11{word-spacing:-7.639288px;}
.wse{word-spacing:-7.370299px;}
.ws1{word-spacing:-6.037335px;}
.ws2{word-spacing:-5.439579px;}
.ws8{word-spacing:-5.433578px;}
.ws5{word-spacing:-4.226123px;}
.ws10{word-spacing:-4.196228px;}
.ws9{word-spacing:-2.929004px;}
.ws3{word-spacing:-1.291151px;}
.ws6{word-spacing:0.000000px;}
.wsd{word-spacing:0.699371px;}
._2c{margin-left:-22.758493px;}
._31{margin-left:-18.649987px;}
._32{margin-left:-16.139390px;}
._2e{margin-left:-14.415160px;}
._34{margin-left:-13.031080px;}
._23{margin-left:-11.757827px;}
._22{margin-left:-10.610269px;}
._38{margin-left:-9.365765px;}
._21{margin-left:-8.326717px;}
._0{margin-left:-7.232847px;}
._1d{margin-left:-6.023701px;}
._14{margin-left:-4.949453px;}
._6{margin-left:-3.227904px;}
._16{margin-left:-2.151918px;}
._1c{margin-left:-1.122897px;}
._18{width:1.242419px;}
._8{width:2.367130px;}
._19{width:3.454846px;}
._1{width:5.021150px;}
._d{width:6.886195px;}
._2{width:8.607686px;}
._10{width:10.436890px;}
._13{width:11.835590px;}
._9{width:13.664794px;}
._11{width:15.171207px;}
._12{width:16.569907px;}
._e{width:17.753472px;}
._15{width:19.295204px;}
._27{width:20.347562px;}
._b{width:21.411763px;}
._17{width:22.989473px;}
._a{width:24.747264px;}
._1b{width:25.752043px;}
._3{width:27.006797px;}
._1a{width:28.859866px;}
._f{width:30.342298px;}
._1f{width:32.196000px;}
._20{width:33.692246px;}
._26{width:35.163844px;}
._2a{width:36.519724px;}
._7{width:38.196864px;}
._36{width:39.660900px;}
._2d{width:40.899624px;}
._35{width:42.481929px;}
._1e{width:44.546781px;}
._2b{width:46.144828px;}
._24{width:47.928457px;}
._25{width:49.843764px;}
._4{width:51.646464px;}
._37{width:52.673896px;}
._5{width:53.905997px;}
._39{width:56.961038px;}
._c{width:70.583501px;}
._33{width:92.048129px;}
._2f{width:268.990144px;}
._28{width:298.758437px;}
._30{width:2159.991351px;}
._29{width:2189.938777px;}
.fc0{color:transparent;}
.fs7{font-size:39.845999px;}
.fs4{font-size:41.842800px;}
.fs5{font-size:45.429600px;}
.fs3{font-size:47.821200px;}
.fs6{font-size:53.797800px;}
.fs0{font-size:59.775599px;}
.fs2{font-size:71.730600px;}
.fs1{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y1f{bottom:106.380936px;}
.y7f{bottom:109.510941px;}
.ye8{bottom:109.510963px;}
.y114{bottom:109.572292px;}
.y18f{bottom:109.632248px;}
.yac{bottom:109.657906px;}
.y9b{bottom:109.670872px;}
.y54{bottom:109.683849px;}
.y140{bottom:109.684525px;}
.ycd{bottom:109.687740px;}
.y16a{bottom:109.700031px;}
.y20b{bottom:109.719017px;}
.y1a8{bottom:109.719120px;}
.y1da{bottom:116.672390px;}
.y1e{bottom:121.348972px;}
.y233{bottom:126.127350px;}
.y1a7{bottom:126.127453px;}
.y20a{bottom:126.302181px;}
.y7e{bottom:127.458561px;}
.y171{bottom:127.458572px;}
.ye7{bottom:127.458584px;}
.y113{bottom:127.519924px;}
.y18e{bottom:127.579868px;}
.yab{bottom:127.605537px;}
.y9a{bottom:127.618492px;}
.y53{bottom:127.631470px;}
.ycc{bottom:127.635361px;}
.y169{bottom:127.647652px;}
.y13f{bottom:127.960911px;}
.y1d9{bottom:133.591793px;}
.y1d{bottom:136.317009px;}
.y1a6{bottom:142.629925px;}
.y209{bottom:142.710514px;}
.y232{bottom:142.710526px;}
.y7d{bottom:145.406181px;}
.y170{bottom:145.406193px;}
.ye6{bottom:145.406204px;}
.y112{bottom:145.467545px;}
.y18d{bottom:145.527489px;}
.yaa{bottom:145.553158px;}
.y99{bottom:145.566113px;}
.y52{bottom:145.579090px;}
.ycb{bottom:145.582981px;}
.y168{bottom:145.670002px;}
.y13e{bottom:146.237297px;}
.y1d8{bottom:150.000126px;}
.y1c{bottom:151.285046px;}
.y1a5{bottom:159.038258px;}
.y231{bottom:159.118847px;}
.y208{bottom:159.293690px;}
.y8c{bottom:163.353802px;}
.y7c{bottom:163.353813px;}
.ye5{bottom:163.353836px;}
.y111{bottom:163.415165px;}
.y18c{bottom:163.475109px;}
.ya9{bottom:163.500778px;}
.y98{bottom:163.513744px;}
.y51{bottom:163.526711px;}
.yca{bottom:163.530601px;}
.y167{bottom:163.617622px;}
.y13d{bottom:164.438976px;}
.y1d7{bottom:166.919540px;}
.y1a4{bottom:175.446579px;}
.y230{bottom:175.702023px;}
.y207{bottom:175.702034px;}
.y7b{bottom:181.301434px;}
.ye4{bottom:181.301456px;}
.y18b{bottom:181.333065px;}
.ya8{bottom:181.358746px;}
.y110{bottom:181.362785px;}
.y97{bottom:181.371700px;}
.y50{bottom:181.384678px;}
.y166{bottom:181.565243px;}
.y13c{bottom:182.715363px;}
.y1d6{bottom:183.838932px;}
.y1a3{bottom:191.949051px;}
.y22f{bottom:192.110344px;}
.yc9{bottom:192.200912px;}
.y206{bottom:192.204506px;}
.y10f{bottom:199.220741px;}
.y7a{bottom:199.249054px;}
.ye3{bottom:199.249077px;}
.y18a{bottom:199.280685px;}
.ya7{bottom:199.306366px;}
.y96{bottom:199.319321px;}
.y4f{bottom:199.332298px;}
.y165{bottom:199.587593px;}
.y1d5{bottom:200.341415px;}
.y13b{bottom:200.662994px;}
.y1b{bottom:204.191345px;}
.y1a2{bottom:208.357384px;}
.y22e{bottom:208.693520px;}
.y205{bottom:208.706978px;}
.yc8{bottom:209.375862px;}
.y10e{bottom:217.168373px;}
.y79{bottom:217.196686px;}
.ye2{bottom:217.196709px;}
.y189{bottom:217.228317px;}
.ya6{bottom:217.253998px;}
.y1d4{bottom:217.260841px;}
.y95{bottom:217.266952px;}
.y164{bottom:217.535202px;}
.y13a{bottom:218.610603px;}
.y1a{bottom:222.557396px;}
.y4e{bottom:224.759102px;}
.y1a1{bottom:224.765717px;}
.y22d{bottom:225.101852px;}
.y204{bottom:225.209450px;}
.yc7{bottom:226.550812px;}
.y1d3{bottom:234.180222px;}
.y10d{bottom:235.116005px;}
.y78{bottom:235.144295px;}
.ye1{bottom:235.144318px;}
.y188{bottom:235.175926px;}
.ya5{bottom:235.201607px;}
.y94{bottom:235.214561px;}
.y163{bottom:235.557564px;}
.y139{bottom:236.558235px;}
.y19{bottom:240.833794px;}
.y1a0{bottom:241.174049px;}
.y22c{bottom:241.685005px;}
.y203{bottom:241.711922px;}
.yc6{bottom:243.725761px;}
.y1d2{bottom:250.588577px;}
.y10c{bottom:253.063614px;}
.y77{bottom:253.091927px;}
.ye0{bottom:253.091949px;}
.y187{bottom:253.123558px;}
.ya4{bottom:253.149239px;}
.y93{bottom:253.162193px;}
.y162{bottom:253.505173px;}
.y138{bottom:254.505844px;}
.y19f{bottom:257.676521px;}
.y22b{bottom:258.093338px;}
.y202{bottom:258.214394px;}
.y18{bottom:259.199844px;}
.yc5{bottom:260.900711px;}
.y1d1{bottom:267.602119px;}
.y10b{bottom:271.011246px;}
.y76{bottom:271.039536px;}
.ydf{bottom:271.039558px;}
.y186{bottom:271.071167px;}
.ya3{bottom:271.096848px;}
.y4d{bottom:271.398216px;}
.y161{bottom:271.527512px;}
.y137{bottom:272.363823px;}
.y19e{bottom:274.084854px;}
.y22a{bottom:274.676514px;}
.y201{bottom:274.716866px;}
.y92{bottom:278.588860px;}
.y1d0{bottom:284.010452px;}
.y17{bottom:284.626648px;}
.y10a{bottom:288.958855px;}
.y75{bottom:288.987167px;}
.yde{bottom:288.987190px;}
.y185{bottom:289.018799px;}
.ya2{bottom:289.044479px;}
.y4c{bottom:289.256149px;}
.y160{bottom:289.475143px;}
.yc4{bottom:289.499153px;}
.y136{bottom:290.311432px;}
.y19d{bottom:290.493187px;}
.y229{bottom:291.084869px;}
.y200{bottom:291.219337px;}
.y1cf{bottom:300.929855px;}
.y109{bottom:306.906487px;}
.y74{bottom:306.934799px;}
.ydd{bottom:306.934822px;}
.y184{bottom:306.966431px;}
.ya1{bottom:306.992111px;}
.y19c{bottom:306.995659px;}
.y4b{bottom:307.203781px;}
.yc3{bottom:307.446785px;}
.y15f{bottom:307.497482px;}
.y228{bottom:307.587341px;}
.y1ff{bottom:307.627670px;}
.y135{bottom:308.259064px;}
.y1ce{bottom:317.338188px;}
.y19b{bottom:323.403992px;}
.y227{bottom:324.089813px;}
.y1fe{bottom:324.210846px;}
.y183{bottom:324.824387px;}
.y108{bottom:324.854118px;}
.y73{bottom:324.882408px;}
.ydc{bottom:324.882431px;}
.y4a{bottom:325.151413px;}
.yc2{bottom:325.394394px;}
.y15e{bottom:325.445114px;}
.y134{bottom:326.206673px;}
.ya0{bottom:332.326057px;}
.y1cd{bottom:334.257591px;}
.y19a{bottom:339.812325px;}
.y226{bottom:340.592285px;}
.y1fd{bottom:340.619179px;}
.y107{bottom:342.712050px;}
.y182{bottom:342.772018px;}
.y72{bottom:342.830040px;}
.ydb{bottom:342.830063px;}
.y49{bottom:343.099022px;}
.yc1{bottom:343.342026px;}
.y15d{bottom:343.467453px;}
.y133{bottom:344.154305px;}
.y16{bottom:348.778885px;}
.y1cc{bottom:350.760063px;}
.y9f{bottom:353.253456px;}
.y199{bottom:356.314796px;}
.y225{bottom:357.094757px;}
.y1fc{bottom:357.202354px;}
.y106{bottom:360.659683px;}
.y181{bottom:360.719650px;}
.y8b{bottom:360.777649px;}
.y71{bottom:360.777672px;}
.yda{bottom:360.777695px;}
.y48{bottom:361.046654px;}
.yc0{bottom:361.289658px;}
.y15c{bottom:361.415085px;}
.y15{bottom:366.726517px;}
.y1cb{bottom:367.679489px;}
.y224{bottom:373.597229px;}
.y1fb{bottom:373.610687px;}
.y132{bottom:377.073486px;}
.y198{bottom:377.234550px;}
.y105{bottom:378.607315px;}
.y180{bottom:378.667259px;}
.y70{bottom:378.725281px;}
.yd9{bottom:378.725304px;}
.y47{bottom:378.994263px;}
.ybf{bottom:379.237267px;}
.y15b{bottom:379.437401px;}
.y1ca{bottom:384.087799px;}
.y14{bottom:384.674149px;}
.y223{bottom:390.099701px;}
.y1fa{bottom:390.193863px;}
.y131{bottom:394.248459px;}
.y104{bottom:396.554947px;}
.y17f{bottom:396.614868px;}
.y6f{bottom:396.672913px;}
.y46{bottom:396.941895px;}
.ybe{bottom:397.184875px;}
.y15a{bottom:397.385010px;}
.y1c9{bottom:400.590271px;}
.y222{bottom:406.602173px;}
.y1f9{bottom:406.602219px;}
.y197{bottom:410.144714px;}
.y130{bottom:411.423386px;}
.y103{bottom:414.502533px;}
.y17e{bottom:414.562500px;}
.y6e{bottom:414.620544px;}
.y45{bottom:414.889526px;}
.ybd{bottom:415.132507px;}
.y159{bottom:415.332642px;}
.y1c8{bottom:417.509674px;}
.y1f8{bottom:423.010529px;}
.y221{bottom:423.185394px;}
.y12f{bottom:428.598312px;}
.y13{bottom:429.490906px;}
.y102{bottom:432.450165px;}
.y17d{bottom:432.510132px;}
.y8a{bottom:432.568130px;}
.y6d{bottom:432.568176px;}
.y196{bottom:432.594269px;}
.y44{bottom:432.747482px;}
.ybc{bottom:432.990463px;}
.y158{bottom:433.280273px;}
.y1c7{bottom:433.918030px;}
.y220{bottom:439.593658px;}
.y1f7{bottom:439.593704px;}
.y12{bottom:447.438538px;}
.y101{bottom:450.397797px;}
.y6c{bottom:450.515762px;}
.yd8{bottom:450.515808px;}
.y43{bottom:450.695114px;}
.y1c6{bottom:450.837433px;}
.ybb{bottom:450.938095px;}
.y157{bottom:451.302612px;}
.y1f6{bottom:456.002014px;}
.y21f{bottom:456.176880px;}
.y17c{bottom:457.851883px;}
.y12e{bottom:461.514496px;}
.y11{bottom:465.386169px;}
.y195{bottom:465.519470px;}
.y1c5{bottom:467.245743px;}
.y100{bottom:468.345428px;}
.y6b{bottom:468.463394px;}
.yd7{bottom:468.463440px;}
.y42{bottom:468.642746px;}
.yba{bottom:468.885727px;}
.y156{bottom:469.250244px;}
.y1f5{bottom:472.585190px;}
.y12d{bottom:479.790848px;}
.y10{bottom:483.333755px;}
.y1c4{bottom:483.748215px;}
.yff{bottom:486.203384px;}
.y6a{bottom:486.411026px;}
.y41{bottom:486.590378px;}
.yb9{bottom:486.833359px;}
.y155{bottom:487.272583px;}
.y194{bottom:487.890472px;}
.y1f4{bottom:488.993500px;}
.y21e{bottom:489.168365px;}
.y12c{bottom:497.738480px;}
.y1c3{bottom:500.667664px;}
.yf{bottom:501.281387px;}
.yfe{bottom:504.151016px;}
.y89{bottom:504.268982px;}
.y69{bottom:504.358658px;}
.y40{bottom:504.537964px;}
.y17b{bottom:504.593582px;}
.yb8{bottom:504.780945px;}
.y154{bottom:505.220215px;}
.y1f3{bottom:505.576721px;}
.y12b{bottom:516.014877px;}
.y1c2{bottom:517.587067px;}
.ye{bottom:519.229019px;}
.y193{bottom:520.886627px;}
.y1f2{bottom:521.985031px;}
.yfd{bottom:522.098648px;}
.y88{bottom:522.216614px;}
.y68{bottom:522.306290px;}
.y3f{bottom:522.485596px;}
.y17a{bottom:522.541214px;}
.yb7{bottom:522.728577px;}
.y153{bottom:523.167847px;}
.y1c1{bottom:533.995377px;}
.y12a{bottom:534.291275px;}
.yd{bottom:537.176651px;}
.y1f1{bottom:538.568207px;}
.y192{bottom:538.834259px;}
.yfc{bottom:540.046234px;}
.y87{bottom:540.164246px;}
.y67{bottom:540.253876px;}
.yd6{bottom:540.253922px;}
.y3e{bottom:540.433228px;}
.y179{bottom:540.488846px;}
.yb6{bottom:540.676208px;}
.y152{bottom:541.190186px;}
.y1c0{bottom:550.497849px;}
.y129{bottom:552.492920px;}
.y1f0{bottom:554.976517px;}
.yc{bottom:555.034607px;}
.yfb{bottom:557.993866px;}
.y86{bottom:558.111832px;}
.y66{bottom:558.201508px;}
.yd5{bottom:558.201553px;}
.y3d{bottom:558.380859px;}
.y178{bottom:558.436478px;}
.yb5{bottom:558.623840px;}
.y151{bottom:559.137817px;}
.y191{bottom:561.279968px;}
.y1bf{bottom:567.417252px;}
.y128{bottom:570.769318px;}
.y1ef{bottom:571.559692px;}
.yb{bottom:572.982193px;}
.yfa{bottom:575.941498px;}
.y85{bottom:576.059463px;}
.y65{bottom:576.149139px;}
.y3c{bottom:576.238815px;}
.y177{bottom:576.294434px;}
.yb4{bottom:576.481796px;}
.y150{bottom:577.160156px;}
.y1be{bottom:584.336700px;}
.y1ee{bottom:587.968002px;}
.y21d{bottom:588.062164px;}
.y127{bottom:589.045715px;}
.ya{bottom:590.929825px;}
.yf9{bottom:593.889130px;}
.y84{bottom:594.007095px;}
.y64{bottom:594.096771px;}
.y3b{bottom:594.186401px;}
.y91{bottom:594.186447px;}
.y176{bottom:594.242065px;}
.y14f{bottom:595.107788px;}
.y1bd{bottom:600.745010px;}
.y1ed{bottom:604.551224px;}
.y21c{bottom:604.564636px;}
.yb3{bottom:605.240067px;}
.y126{bottom:607.322113px;}
.y9{bottom:608.877457px;}
.yf8{bottom:611.836761px;}
.y63{bottom:611.954727px;}
.yd4{bottom:612.044403px;}
.y3a{bottom:612.134033px;}
.y90{bottom:612.134079px;}
.y175{bottom:612.189651px;}
.y14e{bottom:613.130127px;}
.y1bc{bottom:617.664413px;}
.y1ec{bottom:620.959534px;}
.y21b{bottom:621.067154px;}
.yb2{bottom:622.414993px;}
.y125{bottom:625.523804px;}
.y8{bottom:626.825088px;}
.yf7{bottom:629.694717px;}
.y62{bottom:629.902313px;}
.y83{bottom:629.902359px;}
.yd3{bottom:629.992035px;}
.y39{bottom:630.081665px;}
.y8f{bottom:630.081711px;}
.y174{bottom:630.137283px;}
.y14d{bottom:631.077759px;}
.y1bb{bottom:634.166885px;}
.y1eb{bottom:637.462006px;}
.y21a{bottom:637.475464px;}
.yb1{bottom:639.589966px;}
.y124{bottom:643.471390px;}
.yf6{bottom:647.642349px;}
.y61{bottom:647.849945px;}
.y16f{bottom:647.939621px;}
.yd2{bottom:647.939667px;}
.y38{bottom:648.029297px;}
.y173{bottom:648.084915px;}
.y14c{bottom:649.025345px;}
.y1ba{bottom:651.086334px;}
.y1ea{bottom:654.045181px;}
.y219{bottom:654.058640px;}
.y172{bottom:654.717911px;}
.yb0{bottom:656.764893px;}
.y123{bottom:661.747787px;}
.yf5{bottom:665.589981px;}
.y60{bottom:665.797577px;}
.y16e{bottom:665.887253px;}
.yd1{bottom:665.887299px;}
.y37{bottom:665.976929px;}
.y14b{bottom:667.047684px;}
.y1b9{bottom:667.494644px;}
.y1e9{bottom:670.453537px;}
.y218{bottom:670.466949px;}
.yaf{bottom:673.939865px;}
.y122{bottom:680.024185px;}
.yf4{bottom:683.537567px;}
.y5f{bottom:683.745209px;}
.yd0{bottom:683.834885px;}
.y36{bottom:683.924561px;}
.y1b8{bottom:684.414047px;}
.y14a{bottom:684.995316px;}
.y1e8{bottom:687.036713px;}
.y217{bottom:687.050125px;}
.yae{bottom:691.114792px;}
.y121{bottom:698.300583px;}
.y7{bottom:698.513260px;}
.y1b7{bottom:700.916519px;}
.yf3{bottom:701.485199px;}
.y5e{bottom:701.692841px;}
.ycf{bottom:701.782516px;}
.y35{bottom:701.872192px;}
.y149{bottom:703.017654px;}
.y1e7{bottom:703.445023px;}
.y216{bottom:703.458435px;}
.y6{bottom:713.480118px;}
.y120{bottom:716.502274px;}
.y1b6{bottom:717.324829px;}
.yf2{bottom:719.432831px;}
.y5d{bottom:719.640472px;}
.y9e{bottom:719.730103px;}
.y34{bottom:719.730148px;}
.y1e6{bottom:720.028198px;}
.y215{bottom:720.041656px;}
.y148{bottom:720.965286px;}
.y23c{bottom:734.237732px;}
.y1b5{bottom:734.244278px;}
.y11f{bottom:734.778625px;}
.y1e5{bottom:736.436508px;}
.y214{bottom:736.449966px;}
.y5c{bottom:737.588058px;}
.y82{bottom:737.588104px;}
.y9d{bottom:737.677734px;}
.y33{bottom:737.677780px;}
.y147{bottom:738.987625px;}
.y23b{bottom:750.646042px;}
.y1b4{bottom:750.652588px;}
.yf1{bottom:751.167526px;}
.y1e4{bottom:753.019684px;}
.y213{bottom:753.033142px;}
.y11e{bottom:753.055023px;}
.y5b{bottom:755.535690px;}
.y16d{bottom:755.535736px;}
.y8e{bottom:755.625366px;}
.y32{bottom:755.625412px;}
.y146{bottom:756.935257px;}
.y23a{bottom:767.148514px;}
.y1b3{bottom:767.666153px;}
.yf0{bottom:768.342499px;}
.y1e3{bottom:769.428040px;}
.y212{bottom:769.535614px;}
.y11d{bottom:771.331421px;}
.y5a{bottom:773.483276px;}
.y81{bottom:773.483368px;}
.y31{bottom:773.572998px;}
.y145{bottom:782.361877px;}
.y28{bottom:783.392578px;}
.y239{bottom:783.556824px;}
.y1b2{bottom:784.074463px;}
.yef{bottom:785.517517px;}
.y1e2{bottom:786.011169px;}
.y211{bottom:786.118744px;}
.y5{bottom:788.206146px;}
.y11c{bottom:789.607819px;}
.y59{bottom:791.430908px;}
.y16c{bottom:791.431000px;}
.y30{bottom:791.520630px;}
.y27{bottom:796.060455px;}
.y238{bottom:799.965179px;}
.y1b1{bottom:800.993866px;}
.y1e1{bottom:802.419525px;}
.y210{bottom:802.527100px;}
.yee{bottom:802.692444px;}
.y11b{bottom:807.809509px;}
.y26{bottom:808.812103px;}
.y58{bottom:809.378540px;}
.y2f{bottom:809.468262px;}
.y1b0{bottom:817.913269px;}
.y4{bottom:818.064240px;}
.y1e0{bottom:819.002655px;}
.y20f{bottom:819.110229px;}
.yed{bottom:819.867371px;}
.y25{bottom:821.479980px;}
.y237{bottom:825.391937px;}
.y11a{bottom:826.085815px;}
.y57{bottom:827.326172px;}
.y2e{bottom:827.415894px;}
.y1af{bottom:834.415741px;}
.y1df{bottom:835.505127px;}
.y20e{bottom:835.518677px;}
.yec{bottom:837.042297px;}
.y119{bottom:844.362213px;}
.y144{bottom:845.124390px;}
.y56{bottom:845.273804px;}
.y2d{bottom:845.363434px;}
.y8d{bottom:845.363525px;}
.y3{bottom:848.003082px;}
.y1ae{bottom:851.335144px;}
.y1de{bottom:852.007599px;}
.y20d{bottom:852.101807px;}
.y24{bottom:853.454865px;}
.y118{bottom:862.638611px;}
.y143{bottom:863.146729px;}
.y2c{bottom:863.221436px;}
.y23{bottom:866.221069px;}
.y1ad{bottom:867.743500px;}
.y1dd{bottom:868.510071px;}
.yeb{bottom:868.762024px;}
.y236{bottom:868.765686px;}
.y2{bottom:877.861176px;}
.y22{bottom:878.888947px;}
.y117{bottom:880.840302px;}
.y142{bottom:881.094360px;}
.y2b{bottom:881.169067px;}
.y1ac{bottom:884.662903px;}
.y1dc{bottom:884.918427px;}
.y20c{bottom:885.093292px;}
.y235{bottom:885.173950px;}
.y21{bottom:891.640594px;}
.yea{bottom:894.181091px;}
.y116{bottom:898.787933px;}
.y2a{bottom:899.116699px;}
.y1ab{bottom:901.071259px;}
.y1db{bottom:901.501648px;}
.y234{bottom:901.582306px;}
.y20{bottom:904.308472px;}
.ye9{bottom:915.108490px;}
.y29{bottom:917.064331px;}
.y1aa{bottom:918.084778px;}
.y1{bottom:938.409119px;}
.y80{bottom:964.496338px;}
.y115{bottom:964.557678px;}
.y190{bottom:964.617554px;}
.yad{bottom:964.643280px;}
.y9c{bottom:964.656189px;}
.y55{bottom:964.669189px;}
.y141{bottom:964.669830px;}
.yce{bottom:964.673126px;}
.y16b{bottom:964.685394px;}
.y1a9{bottom:964.686493px;}
.hc{height:39.845999px;}
.h6{height:41.842800px;}
.h7{height:45.429600px;}
.h5{height:47.821200px;}
.ha{height:53.797800px;}
.he{height:53.797892px;}
.hb{height:53.797983px;}
.h2{height:59.775599px;}
.h9{height:59.775782px;}
.h8{height:59.775965px;}
.hd{height:60.059229px;}
.h4{height:71.730600px;}
.h3{height:107.596800px;}
.h0{height:1028.976000px;}
.h1{height:1029.000000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x3{left:63.779549px;}
.x1{left:72.283499px;}
.x4{left:81.712252px;}
.x5{left:90.216150px;}
.x6{left:168.803100px;}
.x7{left:174.415649px;}
.x2{left:504.283356px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:7.401526pt;}
.ls5{letter-spacing:9.516233pt;}
.ls4{letter-spacing:10.573639pt;}
.ls3{letter-spacing:14.983750pt;}
.ls1{letter-spacing:32.332380pt;}
.wsa{word-spacing:-30.923910pt;}
.wsb{word-spacing:-26.513799pt;}
.wsc{word-spacing:-23.862313pt;}
.ws4{word-spacing:-18.559606pt;}
.ws0{word-spacing:-15.940160pt;}
.ws12{word-spacing:-13.437495pt;}
.wsf{word-spacing:-13.198404pt;}
.ws7{word-spacing:-7.598143pt;}
.ws11{word-spacing:-6.790478pt;}
.wse{word-spacing:-6.551377pt;}
.ws1{word-spacing:-5.366520pt;}
.ws2{word-spacing:-4.835182pt;}
.ws8{word-spacing:-4.829847pt;}
.ws5{word-spacing:-3.756554pt;}
.ws10{word-spacing:-3.729981pt;}
.ws9{word-spacing:-2.603559pt;}
.ws3{word-spacing:-1.147690pt;}
.ws6{word-spacing:0.000000pt;}
.wsd{word-spacing:0.621663pt;}
._2c{margin-left:-20.229771pt;}
._31{margin-left:-16.577766pt;}
._32{margin-left:-14.346124pt;}
._2e{margin-left:-12.813476pt;}
._34{margin-left:-11.583183pt;}
._23{margin-left:-10.451402pt;}
._22{margin-left:-9.431350pt;}
._38{margin-left:-8.325124pt;}
._21{margin-left:-7.401526pt;}
._0{margin-left:-6.429198pt;}
._1d{margin-left:-5.354401pt;}
._14{margin-left:-4.399514pt;}
._6{margin-left:-2.869248pt;}
._16{margin-left:-1.912816pt;}
._1c{margin-left:-0.998130pt;}
._18{width:1.104373pt;}
._8{width:2.104115pt;}
._19{width:3.070974pt;}
._1{width:4.463245pt;}
._d{width:6.121062pt;}
._2{width:7.651277pt;}
._10{width:9.277235pt;}
._13{width:10.520525pt;}
._9{width:12.146483pt;}
._11{width:13.485517pt;}
._12{width:14.728806pt;}
._e{width:15.780864pt;}
._15{width:17.151292pt;}
._27{width:18.086722pt;}
._b{width:19.032678pt;}
._17{width:20.435087pt;}
._a{width:21.997568pt;}
._1b{width:22.890705pt;}
._3{width:24.006042pt;}
._1a{width:25.653214pt;}
._f{width:26.970931pt;}
._1f{width:28.618666pt;}
._20{width:29.948663pt;}
._26{width:31.256750pt;}
._2a{width:32.461977pt;}
._7{width:33.952768pt;}
._36{width:35.254134pt;}
._2d{width:36.355221pt;}
._35{width:37.761714pt;}
._1e{width:39.597139pt;}
._2b{width:41.017625pt;}
._24{width:42.603073pt;}
._25{width:44.305568pt;}
._4{width:45.907968pt;}
._37{width:46.821241pt;}
._5{width:47.916442pt;}
._39{width:50.632034pt;}
._c{width:62.740890pt;}
._33{width:81.820559pt;}
._2f{width:239.102350pt;}
._28{width:265.563055pt;}
._30{width:1919.992312pt;}
._29{width:1946.612246pt;}
.fs7{font-size:35.418666pt;}
.fs4{font-size:37.193600pt;}
.fs5{font-size:40.381867pt;}
.fs3{font-size:42.507733pt;}
.fs6{font-size:47.820267pt;}
.fs0{font-size:53.133865pt;}
.fs2{font-size:63.760533pt;}
.fs1{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:94.560832pt;}
.y7f{bottom:97.343058pt;}
.ye8{bottom:97.343079pt;}
.y114{bottom:97.397593pt;}
.y18f{bottom:97.450887pt;}
.yac{bottom:97.473694pt;}
.y9b{bottom:97.485219pt;}
.y54{bottom:97.496755pt;}
.y140{bottom:97.497355pt;}
.ycd{bottom:97.500214pt;}
.y16a{bottom:97.511139pt;}
.y20b{bottom:97.528015pt;}
.y1a8{bottom:97.528107pt;}
.y1da{bottom:103.708791pt;}
.y1e{bottom:107.865753pt;}
.y233{bottom:112.113200pt;}
.y1a7{bottom:112.113291pt;}
.y20a{bottom:112.268606pt;}
.y7e{bottom:113.296499pt;}
.y171{bottom:113.296509pt;}
.ye7{bottom:113.296519pt;}
.y113{bottom:113.351044pt;}
.y18e{bottom:113.404327pt;}
.yab{bottom:113.427144pt;}
.y9a{bottom:113.438660pt;}
.y53{bottom:113.450195pt;}
.ycc{bottom:113.453654pt;}
.y169{bottom:113.464579pt;}
.y13f{bottom:113.743032pt;}
.y1d9{bottom:118.748260pt;}
.y1d{bottom:121.170675pt;}
.y1a6{bottom:126.782155pt;}
.y209{bottom:126.853790pt;}
.y232{bottom:126.853800pt;}
.y7d{bottom:129.249939pt;}
.y170{bottom:129.249949pt;}
.ye6{bottom:129.249959pt;}
.y112{bottom:129.304484pt;}
.y18d{bottom:129.357768pt;}
.yaa{bottom:129.380585pt;}
.y99{bottom:129.392100pt;}
.y52{bottom:129.403636pt;}
.ycb{bottom:129.407094pt;}
.y168{bottom:129.484446pt;}
.y13e{bottom:129.988708pt;}
.y1d8{bottom:133.333445pt;}
.y1c{bottom:134.475596pt;}
.y1a5{bottom:141.367340pt;}
.y231{bottom:141.438975pt;}
.y208{bottom:141.594391pt;}
.y8c{bottom:145.203379pt;}
.y7c{bottom:145.203389pt;}
.ye5{bottom:145.203410pt;}
.y111{bottom:145.257924pt;}
.y18c{bottom:145.311208pt;}
.ya9{bottom:145.334025pt;}
.y98{bottom:145.345551pt;}
.y51{bottom:145.357076pt;}
.yca{bottom:145.360535pt;}
.y167{bottom:145.437887pt;}
.y13d{bottom:146.167979pt;}
.y1d7{bottom:148.372925pt;}
.y1a4{bottom:155.952515pt;}
.y230{bottom:156.179576pt;}
.y207{bottom:156.179586pt;}
.y7b{bottom:161.156830pt;}
.ye4{bottom:161.156850pt;}
.y18b{bottom:161.184947pt;}
.ya8{bottom:161.207774pt;}
.y110{bottom:161.211365pt;}
.y97{bottom:161.219289pt;}
.y50{bottom:161.230825pt;}
.y166{bottom:161.391327pt;}
.y13c{bottom:162.413656pt;}
.y1d6{bottom:163.412384pt;}
.y1a3{bottom:170.621379pt;}
.y22f{bottom:170.764750pt;}
.yc9{bottom:170.845256pt;}
.y206{bottom:170.848450pt;}
.y10f{bottom:177.085103pt;}
.y7a{bottom:177.110270pt;}
.ye3{bottom:177.110291pt;}
.y18a{bottom:177.138387pt;}
.ya7{bottom:177.161214pt;}
.y96{bottom:177.172729pt;}
.y4f{bottom:177.184265pt;}
.y165{bottom:177.411194pt;}
.y1d5{bottom:178.081258pt;}
.y13b{bottom:178.367106pt;}
.y1b{bottom:181.503418pt;}
.y1a2{bottom:185.206563pt;}
.y22e{bottom:185.505351pt;}
.y205{bottom:185.517314pt;}
.yc8{bottom:186.111877pt;}
.y10e{bottom:193.038554pt;}
.y79{bottom:193.063721pt;}
.ye2{bottom:193.063741pt;}
.y189{bottom:193.091838pt;}
.ya6{bottom:193.114665pt;}
.y1d4{bottom:193.120748pt;}
.y95{bottom:193.126180pt;}
.y164{bottom:193.364624pt;}
.y13a{bottom:194.320536pt;}
.y1a{bottom:197.828796pt;}
.y4e{bottom:199.785868pt;}
.y1a1{bottom:199.791748pt;}
.y22d{bottom:200.090535pt;}
.y204{bottom:200.186178pt;}
.yc7{bottom:201.378499pt;}
.y1d3{bottom:208.160197pt;}
.y10d{bottom:208.992004pt;}
.y78{bottom:209.017151pt;}
.ye1{bottom:209.017171pt;}
.y188{bottom:209.045268pt;}
.ya5{bottom:209.068095pt;}
.y94{bottom:209.079610pt;}
.y163{bottom:209.384501pt;}
.y139{bottom:210.273987pt;}
.y19{bottom:214.074483pt;}
.y1a0{bottom:214.376933pt;}
.y22c{bottom:214.831116pt;}
.y203{bottom:214.855042pt;}
.yc6{bottom:216.645121pt;}
.y1d2{bottom:222.745402pt;}
.y10c{bottom:224.945435pt;}
.y77{bottom:224.970601pt;}
.ye0{bottom:224.970622pt;}
.y187{bottom:224.998718pt;}
.ya4{bottom:225.021545pt;}
.y93{bottom:225.033061pt;}
.y162{bottom:225.337931pt;}
.y138{bottom:226.227417pt;}
.y19f{bottom:229.045797pt;}
.y22b{bottom:229.416300pt;}
.y202{bottom:229.523905pt;}
.y18{bottom:230.399862pt;}
.yc5{bottom:231.911743pt;}
.y1d1{bottom:237.868551pt;}
.y10b{bottom:240.898885pt;}
.y76{bottom:240.924032pt;}
.ydf{bottom:240.924052pt;}
.y186{bottom:240.952148pt;}
.ya3{bottom:240.974976pt;}
.y4d{bottom:241.242859pt;}
.y161{bottom:241.357788pt;}
.y137{bottom:242.101176pt;}
.y19e{bottom:243.630981pt;}
.y22a{bottom:244.156901pt;}
.y201{bottom:244.192769pt;}
.y92{bottom:247.634542pt;}
.y1d0{bottom:252.453735pt;}
.y17{bottom:253.001465pt;}
.y10a{bottom:256.852315pt;}
.y75{bottom:256.877482pt;}
.yde{bottom:256.877502pt;}
.y185{bottom:256.905599pt;}
.ya2{bottom:256.928426pt;}
.y4c{bottom:257.116577pt;}
.y160{bottom:257.311239pt;}
.yc4{bottom:257.332581pt;}
.y136{bottom:258.054606pt;}
.y19d{bottom:258.216166pt;}
.y229{bottom:258.742106pt;}
.y200{bottom:258.861633pt;}
.y1cf{bottom:267.493205pt;}
.y109{bottom:272.805766pt;}
.y74{bottom:272.830933pt;}
.ydd{bottom:272.830953pt;}
.y184{bottom:272.859049pt;}
.ya1{bottom:272.881877pt;}
.y19c{bottom:272.885030pt;}
.y4b{bottom:273.070028pt;}
.yc3{bottom:273.286031pt;}
.y15f{bottom:273.331095pt;}
.y228{bottom:273.410970pt;}
.y1ff{bottom:273.446818pt;}
.y135{bottom:274.008057pt;}
.y1ce{bottom:282.078389pt;}
.y19b{bottom:287.470215pt;}
.y227{bottom:288.079834pt;}
.y1fe{bottom:288.187419pt;}
.y183{bottom:288.732788pt;}
.y108{bottom:288.759216pt;}
.y73{bottom:288.784363pt;}
.ydc{bottom:288.784383pt;}
.y4a{bottom:289.023478pt;}
.yc2{bottom:289.239461pt;}
.y15e{bottom:289.284546pt;}
.y134{bottom:289.961487pt;}
.ya0{bottom:295.400940pt;}
.y1cd{bottom:297.117859pt;}
.y19a{bottom:302.055400pt;}
.y226{bottom:302.748698pt;}
.y1fd{bottom:302.772603pt;}
.y107{bottom:304.632933pt;}
.y182{bottom:304.686239pt;}
.y72{bottom:304.737813pt;}
.ydb{bottom:304.737834pt;}
.y49{bottom:304.976908pt;}
.yc1{bottom:305.192912pt;}
.y15d{bottom:305.304403pt;}
.y133{bottom:305.914937pt;}
.y16{bottom:310.025675pt;}
.y1cc{bottom:311.786723pt;}
.y9f{bottom:314.003072pt;}
.y199{bottom:316.724264pt;}
.y225{bottom:317.417562pt;}
.y1fc{bottom:317.513204pt;}
.y106{bottom:320.586385pt;}
.y181{bottom:320.639689pt;}
.y8b{bottom:320.691243pt;}
.y71{bottom:320.691264pt;}
.yda{bottom:320.691284pt;}
.y48{bottom:320.930359pt;}
.yc0{bottom:321.146362pt;}
.y15c{bottom:321.257853pt;}
.y15{bottom:325.979126pt;}
.y1cb{bottom:326.826213pt;}
.y224{bottom:332.086426pt;}
.y1fb{bottom:332.098389pt;}
.y132{bottom:335.176432pt;}
.y198{bottom:335.319600pt;}
.y105{bottom:336.539836pt;}
.y180{bottom:336.593119pt;}
.y70{bottom:336.644694pt;}
.yd9{bottom:336.644714pt;}
.y47{bottom:336.883789pt;}
.ybf{bottom:337.099792pt;}
.y15b{bottom:337.277690pt;}
.y1ca{bottom:341.411377pt;}
.y14{bottom:341.932576pt;}
.y223{bottom:346.755290pt;}
.y1fa{bottom:346.838989pt;}
.y131{bottom:350.443075pt;}
.y104{bottom:352.493286pt;}
.y17f{bottom:352.546549pt;}
.y6f{bottom:352.598145pt;}
.y46{bottom:352.837240pt;}
.ybe{bottom:353.053223pt;}
.y15a{bottom:353.231120pt;}
.y1c9{bottom:356.080241pt;}
.y222{bottom:361.424154pt;}
.y1f9{bottom:361.424194pt;}
.y197{bottom:364.573079pt;}
.y130{bottom:365.709676pt;}
.y103{bottom:368.446696pt;}
.y17e{bottom:368.500000pt;}
.y6e{bottom:368.551595pt;}
.y45{bottom:368.790690pt;}
.ybd{bottom:369.006673pt;}
.y159{bottom:369.184570pt;}
.y1c8{bottom:371.119710pt;}
.y1f8{bottom:376.009359pt;}
.y221{bottom:376.164795pt;}
.y12f{bottom:380.976278pt;}
.y13{bottom:381.769694pt;}
.y102{bottom:384.400146pt;}
.y17d{bottom:384.453451pt;}
.y8a{bottom:384.505005pt;}
.y6d{bottom:384.505046pt;}
.y196{bottom:384.528239pt;}
.y44{bottom:384.664429pt;}
.ybc{bottom:384.880412pt;}
.y158{bottom:385.138021pt;}
.y1c7{bottom:385.704915pt;}
.y220{bottom:390.749919pt;}
.y1f7{bottom:390.749959pt;}
.y12{bottom:397.723145pt;}
.y101{bottom:400.353597pt;}
.y6c{bottom:400.458455pt;}
.yd8{bottom:400.458496pt;}
.y43{bottom:400.617879pt;}
.y1c6{bottom:400.744385pt;}
.ybb{bottom:400.833862pt;}
.y157{bottom:401.157878pt;}
.y1f6{bottom:405.335124pt;}
.y21f{bottom:405.490560pt;}
.y17c{bottom:406.979451pt;}
.y12e{bottom:410.235107pt;}
.y11{bottom:413.676595pt;}
.y195{bottom:413.795085pt;}
.y1c5{bottom:415.329549pt;}
.y100{bottom:416.307048pt;}
.y6b{bottom:416.411906pt;}
.yd7{bottom:416.411947pt;}
.y42{bottom:416.571330pt;}
.yba{bottom:416.787313pt;}
.y156{bottom:417.111328pt;}
.y1f5{bottom:420.075724pt;}
.y12d{bottom:426.480754pt;}
.y10{bottom:429.630005pt;}
.y1c4{bottom:429.998413pt;}
.yff{bottom:432.180786pt;}
.y6a{bottom:432.365356pt;}
.y41{bottom:432.524780pt;}
.yb9{bottom:432.740763pt;}
.y155{bottom:433.131185pt;}
.y194{bottom:433.680420pt;}
.y1f4{bottom:434.660889pt;}
.y21e{bottom:434.816325pt;}
.y12c{bottom:442.434204pt;}
.y1c3{bottom:445.037923pt;}
.yf{bottom:445.583455pt;}
.yfe{bottom:448.134237pt;}
.y89{bottom:448.239095pt;}
.y69{bottom:448.318807pt;}
.y40{bottom:448.478190pt;}
.y17b{bottom:448.527629pt;}
.yb8{bottom:448.694173pt;}
.y154{bottom:449.084635pt;}
.y1f3{bottom:449.401530pt;}
.y12b{bottom:458.679891pt;}
.y1c2{bottom:460.077393pt;}
.ye{bottom:461.536906pt;}
.y193{bottom:463.010335pt;}
.y1f2{bottom:463.986694pt;}
.yfd{bottom:464.087687pt;}
.y88{bottom:464.192546pt;}
.y68{bottom:464.272257pt;}
.y3f{bottom:464.431641pt;}
.y17a{bottom:464.481079pt;}
.yb7{bottom:464.647624pt;}
.y153{bottom:465.038086pt;}
.y1c1{bottom:474.662557pt;}
.y12a{bottom:474.925578pt;}
.yd{bottom:477.490356pt;}
.y1f1{bottom:478.727295pt;}
.y192{bottom:478.963786pt;}
.yfc{bottom:480.041097pt;}
.y87{bottom:480.145996pt;}
.y67{bottom:480.225667pt;}
.yd6{bottom:480.225708pt;}
.y3e{bottom:480.385091pt;}
.y179{bottom:480.434530pt;}
.yb6{bottom:480.601074pt;}
.y152{bottom:481.057943pt;}
.y1c0{bottom:489.331421pt;}
.y129{bottom:491.104818pt;}
.y1f0{bottom:493.312459pt;}
.yc{bottom:493.364095pt;}
.yfb{bottom:495.994548pt;}
.y86{bottom:496.099406pt;}
.y66{bottom:496.179118pt;}
.yd5{bottom:496.179159pt;}
.y3d{bottom:496.338542pt;}
.y178{bottom:496.387980pt;}
.yb5{bottom:496.554525pt;}
.y151{bottom:497.011393pt;}
.y191{bottom:498.915527pt;}
.y1bf{bottom:504.370890pt;}
.y128{bottom:507.350505pt;}
.y1ef{bottom:508.053060pt;}
.yb{bottom:509.317505pt;}
.yfa{bottom:511.947998pt;}
.y85{bottom:512.052856pt;}
.y65{bottom:512.132568pt;}
.y3c{bottom:512.212280pt;}
.y177{bottom:512.261719pt;}
.yb4{bottom:512.428263pt;}
.y150{bottom:513.031250pt;}
.y1be{bottom:519.410400pt;}
.y1ee{bottom:522.638224pt;}
.y21d{bottom:522.721924pt;}
.y127{bottom:523.596191pt;}
.ya{bottom:525.270955pt;}
.yf9{bottom:527.901449pt;}
.y84{bottom:528.006307pt;}
.y64{bottom:528.086019pt;}
.y3b{bottom:528.165690pt;}
.y91{bottom:528.165731pt;}
.y176{bottom:528.215169pt;}
.y14f{bottom:528.984701pt;}
.y1bd{bottom:533.995565pt;}
.y1ed{bottom:537.378866pt;}
.y21c{bottom:537.390788pt;}
.yb3{bottom:537.991170pt;}
.y126{bottom:539.841878pt;}
.y9{bottom:541.224406pt;}
.yf8{bottom:543.854899pt;}
.y63{bottom:543.959757pt;}
.yd4{bottom:544.039469pt;}
.y3a{bottom:544.119141pt;}
.y90{bottom:544.119181pt;}
.y175{bottom:544.168579pt;}
.y14e{bottom:545.004557pt;}
.y1bc{bottom:549.035034pt;}
.y1ec{bottom:551.964030pt;}
.y21b{bottom:552.059692pt;}
.yb2{bottom:553.257772pt;}
.y125{bottom:556.021159pt;}
.y8{bottom:557.177856pt;}
.yf7{bottom:559.728638pt;}
.y62{bottom:559.913167pt;}
.y83{bottom:559.913208pt;}
.yd3{bottom:559.992920pt;}
.y39{bottom:560.072591pt;}
.y8f{bottom:560.072632pt;}
.y174{bottom:560.122030pt;}
.y14d{bottom:560.958008pt;}
.y1bb{bottom:563.703898pt;}
.y1eb{bottom:566.632894pt;}
.y21a{bottom:566.644857pt;}
.yb1{bottom:568.524414pt;}
.y124{bottom:571.974569pt;}
.yf6{bottom:575.682088pt;}
.y61{bottom:575.866618pt;}
.y16f{bottom:575.946330pt;}
.yd2{bottom:575.946370pt;}
.y38{bottom:576.026042pt;}
.y173{bottom:576.075480pt;}
.y14c{bottom:576.911418pt;}
.y1ba{bottom:578.743408pt;}
.y1ea{bottom:581.373494pt;}
.y219{bottom:581.385457pt;}
.y172{bottom:581.971476pt;}
.yb0{bottom:583.791016pt;}
.y123{bottom:588.220256pt;}
.yf5{bottom:591.635539pt;}
.y60{bottom:591.820068pt;}
.y16e{bottom:591.899780pt;}
.yd1{bottom:591.899821pt;}
.y37{bottom:591.979492pt;}
.y14b{bottom:592.931274pt;}
.y1b9{bottom:593.328573pt;}
.y1e9{bottom:595.958700pt;}
.y218{bottom:595.970622pt;}
.yaf{bottom:599.057658pt;}
.y122{bottom:604.465942pt;}
.yf4{bottom:607.588949pt;}
.y5f{bottom:607.773519pt;}
.yd0{bottom:607.853231pt;}
.y36{bottom:607.932943pt;}
.y1b8{bottom:608.368042pt;}
.y14a{bottom:608.884725pt;}
.y1e8{bottom:610.699300pt;}
.y217{bottom:610.711222pt;}
.yae{bottom:614.324259pt;}
.y121{bottom:620.711629pt;}
.y7{bottom:620.900675pt;}
.y1b7{bottom:623.036906pt;}
.yf3{bottom:623.542399pt;}
.y5e{bottom:623.726969pt;}
.ycf{bottom:623.806681pt;}
.y35{bottom:623.886393pt;}
.y149{bottom:624.904582pt;}
.y1e7{bottom:625.284465pt;}
.y216{bottom:625.296387pt;}
.y6{bottom:634.204549pt;}
.y120{bottom:636.890910pt;}
.y1b6{bottom:637.622070pt;}
.yf2{bottom:639.495850pt;}
.y5d{bottom:639.680420pt;}
.y9e{bottom:639.760091pt;}
.y34{bottom:639.760132pt;}
.y1e6{bottom:640.025065pt;}
.y215{bottom:640.037028pt;}
.y148{bottom:640.858032pt;}
.y23c{bottom:652.655762pt;}
.y1b5{bottom:652.661580pt;}
.y11f{bottom:653.136556pt;}
.y1e5{bottom:654.610229pt;}
.y214{bottom:654.622192pt;}
.y5c{bottom:655.633830pt;}
.y82{bottom:655.633870pt;}
.y9d{bottom:655.713542pt;}
.y33{bottom:655.713582pt;}
.y147{bottom:656.877889pt;}
.y23b{bottom:667.240926pt;}
.y1b4{bottom:667.246745pt;}
.yf1{bottom:667.704468pt;}
.y1e4{bottom:669.350830pt;}
.y213{bottom:669.362793pt;}
.y11e{bottom:669.382243pt;}
.y5b{bottom:671.587280pt;}
.y16d{bottom:671.587321pt;}
.y8e{bottom:671.666992pt;}
.y32{bottom:671.667033pt;}
.y146{bottom:672.831340pt;}
.y23a{bottom:681.909790pt;}
.y1b3{bottom:682.369914pt;}
.yf0{bottom:682.971110pt;}
.y1e3{bottom:683.936035pt;}
.y212{bottom:684.031657pt;}
.y11d{bottom:685.627930pt;}
.y5a{bottom:687.540690pt;}
.y81{bottom:687.540771pt;}
.y31{bottom:687.620443pt;}
.y145{bottom:695.432780pt;}
.y28{bottom:696.348958pt;}
.y239{bottom:696.494954pt;}
.y1b2{bottom:696.955078pt;}
.yef{bottom:698.237793pt;}
.y1e2{bottom:698.676595pt;}
.y211{bottom:698.772217pt;}
.y5{bottom:700.627686pt;}
.y11c{bottom:701.873617pt;}
.y59{bottom:703.494141pt;}
.y16c{bottom:703.494222pt;}
.y30{bottom:703.573893pt;}
.y27{bottom:707.609294pt;}
.y238{bottom:711.080160pt;}
.y1b1{bottom:711.994548pt;}
.y1e1{bottom:713.261800pt;}
.y210{bottom:713.357422pt;}
.yee{bottom:713.504395pt;}
.y11b{bottom:718.052897pt;}
.y26{bottom:718.944092pt;}
.y58{bottom:719.447591pt;}
.y2f{bottom:719.527344pt;}
.y1b0{bottom:727.034017pt;}
.y4{bottom:727.168213pt;}
.y1e0{bottom:728.002360pt;}
.y20f{bottom:728.097982pt;}
.yed{bottom:728.770996pt;}
.y25{bottom:730.204427pt;}
.y237{bottom:733.681722pt;}
.y11a{bottom:734.298503pt;}
.y57{bottom:735.401042pt;}
.y2e{bottom:735.480794pt;}
.y1af{bottom:741.702881pt;}
.y1df{bottom:742.671224pt;}
.y20e{bottom:742.683268pt;}
.yec{bottom:744.037598pt;}
.y119{bottom:750.544189pt;}
.y144{bottom:751.221680pt;}
.y56{bottom:751.354492pt;}
.y2d{bottom:751.434163pt;}
.y8d{bottom:751.434245pt;}
.y3{bottom:753.780518pt;}
.y1ae{bottom:756.742350pt;}
.y1de{bottom:757.340088pt;}
.y20d{bottom:757.423828pt;}
.y24{bottom:758.626546pt;}
.y118{bottom:766.789876pt;}
.y143{bottom:767.241536pt;}
.y2c{bottom:767.307943pt;}
.y23{bottom:769.974284pt;}
.y1ad{bottom:771.327555pt;}
.y1dd{bottom:772.008952pt;}
.yeb{bottom:772.232910pt;}
.y236{bottom:772.236165pt;}
.y2{bottom:780.321045pt;}
.y22{bottom:781.234619pt;}
.y117{bottom:782.969157pt;}
.y142{bottom:783.194987pt;}
.y2b{bottom:783.261393pt;}
.y1ac{bottom:786.367025pt;}
.y1dc{bottom:786.594157pt;}
.y20c{bottom:786.749593pt;}
.y235{bottom:786.821289pt;}
.y21{bottom:792.569417pt;}
.yea{bottom:794.827637pt;}
.y116{bottom:798.922607pt;}
.y2a{bottom:799.214844pt;}
.y1ab{bottom:800.952230pt;}
.y1db{bottom:801.334798pt;}
.y234{bottom:801.406494pt;}
.y20{bottom:803.829753pt;}
.ye9{bottom:813.429769pt;}
.y29{bottom:815.168294pt;}
.y1aa{bottom:816.075358pt;}
.y1{bottom:834.141439pt;}
.y80{bottom:857.330078pt;}
.y115{bottom:857.384603pt;}
.y190{bottom:857.437826pt;}
.yad{bottom:857.460693pt;}
.y9c{bottom:857.472168pt;}
.y55{bottom:857.483724pt;}
.y141{bottom:857.484294pt;}
.yce{bottom:857.487223pt;}
.y16b{bottom:857.498128pt;}
.y1a9{bottom:857.499105pt;}
.hc{height:35.418666pt;}
.h6{height:37.193600pt;}
.h7{height:40.381867pt;}
.h5{height:42.507733pt;}
.ha{height:47.820267pt;}
.he{height:47.820348pt;}
.hb{height:47.820429pt;}
.h2{height:53.133865pt;}
.h9{height:53.134028pt;}
.h8{height:53.134191pt;}
.hd{height:53.385981pt;}
.h4{height:63.760533pt;}
.h3{height:95.641600pt;}
.h0{height:914.645333pt;}
.h1{height:914.666667pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x3{left:56.692932pt;}
.x1{left:64.251999pt;}
.x4{left:72.633113pt;}
.x5{left:80.192133pt;}
.x6{left:150.047200pt;}
.x7{left:155.036133pt;}
.x2{left:448.251872pt;}
}




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