
    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_749fd9bd07538052050c4927.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.145508;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_e2de1f67bd4356bf4f2e799a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.122070;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_fc4c643aa9b2025b29bbfd7c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.708008;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_11fb77d0ef54aac44841e653.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.768555;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_f2765f210384a88a01cbe2c1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_bd76b07fa528b850daeb342c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.968750;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_7d9db08c6fce5507bcd602d4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.145508;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_ea92294c73c5ef9f6166a9ba.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.303223;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_7ee9c6c0a7694b126bc199b3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_4fadfbdf8b899f5bd407b933.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.106934;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;}
.m2{transform:matrix(0.249558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249558,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250073,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250468,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);}
.v1{vertical-align:-4.093294px;}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.351600px;}
.ls5{letter-spacing:-0.349200px;}
.ls4{letter-spacing:-0.331800px;}
.ls3{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.101313px;}
.ls0{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.277200px;}
.ls2{letter-spacing:0.298800px;}
.ls6{letter-spacing:0.366000px;}
.ls9{letter-spacing:0.529398px;}
.lsb{letter-spacing:0.550800px;}
.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;}
}
.ws19{word-spacing:-18.538560px;}
.ws2{word-spacing:-18.353760px;}
.ws1{word-spacing:-17.987760px;}
.ws18{word-spacing:-17.934480px;}
.ws3{word-spacing:-12.967850px;}
.ws7{word-spacing:-9.122452px;}
.wsc{word-spacing:-8.553484px;}
.ws13{word-spacing:-8.033010px;}
.ws0{word-spacing:0.000000px;}
.ws14{word-spacing:113.799551px;}
.wsf{word-spacing:121.927428px;}
.ws6{word-spacing:156.793016px;}
.ws4{word-spacing:179.306133px;}
.ws16{word-spacing:180.209051px;}
.ws10{word-spacing:183.408706px;}
.ws15{word-spacing:192.738378px;}
.ws9{word-spacing:207.968470px;}
.wsa{word-spacing:210.015117px;}
.wsd{word-spacing:212.061764px;}
.ws5{word-spacing:214.099133px;}
.ws11{word-spacing:218.256283px;}
.ws8{word-spacing:222.285721px;}
.ws12{word-spacing:224.396224px;}
.wse{word-spacing:226.442871px;}
.wsb{word-spacing:240.769400px;}
.ws17{word-spacing:242.308094px;}
._6{margin-left:-3.209435px;}
._8{margin-left:-2.184625px;}
._0{margin-left:-1.176000px;}
._1{width:1.416000px;}
._2{width:2.573280px;}
._3{width:3.593760px;}
._4{width:6.370560px;}
._1d{width:20.617096px;}
._1c{width:21.808064px;}
._1e{width:24.628429px;}
._20{width:29.025122px;}
._1f{width:31.670685px;}
._21{width:63.846317px;}
._2a{width:89.116295px;}
._28{width:100.271648px;}
._29{width:131.263591px;}
._27{width:168.020956px;}
._26{width:180.061615px;}
._10{width:190.304967px;}
._5{width:194.388240px;}
._2e{width:209.696276px;}
._24{width:212.115903px;}
._9{width:215.879746px;}
._2f{width:248.623836px;}
._2c{width:249.949031px;}
._31{width:255.588384px;}
._1b{width:264.174785px;}
._2d{width:265.594602px;}
._25{width:285.113514px;}
._30{width:312.184151px;}
._2b{width:317.563684px;}
._32{width:327.957256px;}
._22{width:372.350273px;}
._1a{width:389.492791px;}
._23{width:398.794760px;}
._14{width:450.275648px;}
._b{width:483.029137px;}
._11{width:487.711688px;}
._e{width:495.406722px;}
._15{width:525.059234px;}
._17{width:593.927092px;}
._16{width:651.172819px;}
._c{width:671.747043px;}
._19{width:711.904740px;}
._a{width:730.894912px;}
._12{width:737.602676px;}
._7{width:748.980309px;}
._13{width:755.426509px;}
._d{width:769.605812px;}
._f{width:815.348763px;}
._18{width:841.691246px;}
.fc6{color:rgb(55,96,145);}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(117,146,60);}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(54,95,145);}
.fc7{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:22.474449px;}
.fsd{font-size:28.895720px;}
.fs8{font-size:30.767927px;}
.fs9{font-size:32.814574px;}
.fs10{font-size:34.282453px;}
.fs4{font-size:36.000000px;}
.fsa{font-size:38.954515px;}
.fsf{font-size:39.633513px;}
.fs7{font-size:43.370737px;}
.fs6{font-size:48.240000px;}
.fsb{font-size:49.187751px;}
.fse{font-size:51.405843px;}
.fs3{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:95.760000px;}
.fs1{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y130{bottom:2.046647px;}
.y135{bottom:2.571953px;}
.y12e{bottom:2.575385px;}
.y17{bottom:2.691000px;}
.y15f{bottom:2.943083px;}
.y15{bottom:3.051000px;}
.y12{bottom:3.231000px;}
.y132{bottom:3.581632px;}
.y114{bottom:4.006681px;}
.y55{bottom:4.125000px;}
.y6e{bottom:4.131000px;}
.y25{bottom:4.140000px;}
.y209{bottom:4.155000px;}
.y57{bottom:4.320000px;}
.y151{bottom:5.083506px;}
.y15a{bottom:5.885452px;}
.y14b{bottom:5.886165px;}
.y15d{bottom:5.886315px;}
.y13f{bottom:5.893300px;}
.y141{bottom:5.896867px;}
.y161{bottom:6.967079px;}
.y14{bottom:7.731000px;}
.y13{bottom:9.045000px;}
.y12d{bottom:14.360866px;}
.y16{bottom:18.585000px;}
.y113{bottom:19.976227px;}
.y11{bottom:20.925000px;}
.y12c{bottom:26.657803px;}
.y54{bottom:27.525000px;}
.y6d{bottom:27.531000px;}
.y1fd{bottom:27.765000px;}
.y112{bottom:35.945925px;}
.y20{bottom:36.576000px;}
.y12b{bottom:38.971796px;}
.y1fc{bottom:45.045000px;}
.ycf{bottom:50.925000px;}
.y53{bottom:51.105000px;}
.y6c{bottom:51.111000px;}
.y12a{bottom:51.268734px;}
.y111{bottom:51.915623px;}
.y1f{bottom:59.976000px;}
.y129{bottom:63.582727px;}
.y21{bottom:65.385000px;}
.y116{bottom:67.317308px;}
.y52{bottom:68.385000px;}
.y1fb{bottom:68.445000px;}
.y208{bottom:68.625000px;}
.yce{bottom:74.325000px;}
.y6b{bottom:74.505000px;}
.y128{bottom:75.879665px;}
.y1c2{bottom:84.276000px;}
.y58{bottom:84.645000px;}
.y51{bottom:85.845000px;}
.y1fa{bottom:85.905000px;}
.y207{bottom:86.085000px;}
.y102{bottom:86.256000px;}
.y127{bottom:88.193658px;}
.ya1{bottom:91.785000px;}
.y19d{bottom:94.536000px;}
.y70{bottom:97.605000px;}
.ycd{bottom:97.725000px;}
.y6a{bottom:97.905000px;}
.y126{bottom:100.487184px;}
.y50{bottom:103.305000px;}
.y1f9{bottom:103.365000px;}
.y1ec{bottom:104.616000px;}
.yd2{bottom:105.336000px;}
.y1c1{bottom:107.676000px;}
.y101{bottom:109.656000px;}
.y125{bottom:114.336163px;}
.ya0{bottom:115.365000px;}
.y4f{bottom:120.765000px;}
.y1f8{bottom:120.825000px;}
.ycc{bottom:121.170000px;}
.y69{bottom:121.305000px;}
.y19c{bottom:124.056000px;}
.y206{bottom:126.765000px;}
.y124{bottom:128.696803px;}
.yd1{bottom:128.916000px;}
.y176{bottom:130.536000px;}
.y1c0{bottom:131.076000px;}
.y9f{bottom:132.825000px;}
.y100{bottom:133.056000px;}
.y1eb{bottom:133.956000px;}
.y4e{bottom:138.045000px;}
.y1f7{bottom:138.105000px;}
.y123{bottom:140.997152px;}
.y205{bottom:144.225000px;}
.ycb{bottom:144.570000px;}
.y68{bottom:144.705000px;}
.y9e{bottom:150.105000px;}
.yd0{bottom:152.310000px;}
.y122{bottom:153.311145px;}
.y19b{bottom:153.390000px;}
.y1bf{bottom:154.470000px;}
.y4d{bottom:155.505000px;}
.y1f6{bottom:155.565000px;}
.yff{bottom:156.450000px;}
.y1ea{bottom:157.350000px;}
.y175{bottom:160.050000px;}
.y121{bottom:165.604671px;}
.y204{bottom:167.625000px;}
.y67{bottom:168.105000px;}
.yca{bottom:168.150000px;}
.ya2{bottom:172.305000px;}
.y4c{bottom:172.965000px;}
.y9d{bottom:173.505000px;}
.y1be{bottom:177.870000px;}
.y120{bottom:177.918664px;}
.y1f5{bottom:178.965000px;}
.yfe{bottom:179.850000px;}
.y1e9{bottom:180.750000px;}
.y19a{bottom:182.730000px;}
.y1e{bottom:183.630000px;}
.y203{bottom:184.905000px;}
.y174{bottom:189.390000px;}
.y11f{bottom:190.219013px;}
.y4b{bottom:190.245000px;}
.yc9{bottom:191.550000px;}
.y66{bottom:191.730000px;}
.y10f{bottom:193.969598px;}
.y1f4{bottom:196.425000px;}
.y9c{bottom:197.130000px;}
.y1bd{bottom:201.270000px;}
.y11e{bottom:202.533006px;}
.yfd{bottom:203.250000px;}
.y1e8{bottom:204.330000px;}
.y1d{bottom:207.030000px;}
.y201{bottom:208.470000px;}
.y65{bottom:209.190000px;}
.y10e{bottom:209.943093px;}
.y13b{bottom:211.350000px;}
.y199{bottom:212.250000px;}
.y4a{bottom:213.825000px;}
.y1f3{bottom:213.885000px;}
.y9b{bottom:214.410000px;}
.y11d{bottom:214.826533px;}
.yc8{bottom:214.950000px;}
.y173{bottom:218.910000px;}
.y1bc{bottom:224.670000px;}
.y200{bottom:225.750000px;}
.y10d{bottom:225.908993px;}
.y11c{bottom:226.117202px;}
.y64{bottom:226.470000px;}
.yfc{bottom:226.830000px;}
.y1e7{bottom:227.730000px;}
.y13a{bottom:228.630000px;}
.y1c{bottom:230.430000px;}
.y49{bottom:231.285000px;}
.y1f2{bottom:231.345000px;}
.y9a{bottom:231.870000px;}
.yc7{bottom:238.350000px;}
.y198{bottom:241.590000px;}
.y10c{bottom:241.882489px;}
.y63{bottom:243.930000px;}
.y139{bottom:245.910000px;}
.y172{bottom:248.250000px;}
.y48{bottom:248.565000px;}
.y1f1{bottom:248.625000px;}
.y99{bottom:249.330000px;}
.yfb{bottom:250.230000px;}
.y1e6{bottom:251.130000px;}
.y1b{bottom:253.830000px;}
.y10b{bottom:257.871175px;}
.y62{bottom:261.210000px;}
.yc6{bottom:261.750000px;}
.y47{bottom:266.025000px;}
.y1f0{bottom:266.085000px;}
.y98{bottom:266.790000px;}
.y138{bottom:269.490000px;}
.y197{bottom:271.110000px;}
.y1bb{bottom:271.650000px;}
.yfa{bottom:273.675000px;}
.y10a{bottom:273.837075px;}
.y1e5{bottom:274.575000px;}
.y1a{bottom:277.275000px;}
.y171{bottom:277.635000px;}
.y46{bottom:283.350000px;}
.y1ef{bottom:283.365000px;}
.y97{bottom:284.070000px;}
.y61{bottom:284.790000px;}
.yc5{bottom:285.150000px;}
.y109{bottom:289.810571px;}
.y137{bottom:292.935000px;}
.y1ba{bottom:295.095000px;}
.y19{bottom:296.535000px;}
.yf9{bottom:297.075000px;}
.y1e4{bottom:297.975000px;}
.y196{bottom:300.495000px;}
.y96{bottom:301.350000px;}
.y60{bottom:302.250000px;}
.y108{bottom:305.776471px;}
.y45{bottom:306.930000px;}
.y170{bottom:307.155000px;}
.yc4{bottom:308.550000px;}
.y136{bottom:312.195000px;}
.y11b{bottom:312.243185px;}
.y133{bottom:312.754848px;}
.y1b9{bottom:318.495000px;}
.y5f{bottom:319.530000px;}
.yf8{bottom:320.475000px;}
.y1e3{bottom:321.375000px;}
.y44{bottom:324.390000px;}
.y95{bottom:324.930000px;}
.y195{bottom:330.015000px;}
.yc3{bottom:331.950000px;}
.y16f{bottom:336.495000px;}
.y43{bottom:341.850000px;}
.y1b8{bottom:341.895000px;}
.y5e{bottom:342.930000px;}
.yf7{bottom:343.875000px;}
.y1e2{bottom:344.775000px;}
.y94{bottom:348.330000px;}
.yc2{bottom:355.350000px;}
.y42{bottom:359.130000px;}
.y194{bottom:359.355000px;}
.y1b7{bottom:365.295000px;}
.y16e{bottom:366.015000px;}
.y5d{bottom:366.510000px;}
.yf6{bottom:367.275000px;}
.y1e1{bottom:368.175000px;}
.y93{bottom:371.730000px;}
.y41{bottom:376.590000px;}
.yc1{bottom:378.750000px;}
.y5c{bottom:383.790000px;}
.y193{bottom:388.695000px;}
.yf5{bottom:390.675000px;}
.y1e0{bottom:391.575000px;}
.y40{bottom:394.050000px;}
.y92{bottom:395.310000px;}
.y16d{bottom:395.355000px;}
.y5b{bottom:401.250000px;}
.yc0{bottom:402.360000px;}
.y3f{bottom:411.510000px;}
.y1b6{bottom:412.095000px;}
.y91{bottom:412.590000px;}
.yf4{bottom:414.075000px;}
.y1df{bottom:414.975000px;}
.y192{bottom:418.215000px;}
.y5a{bottom:418.530000px;}
.y131{bottom:421.974392px;}
.y16c{bottom:424.875000px;}
.ybf{bottom:425.760000px;}
.y3e{bottom:428.790000px;}
.y90{bottom:430.050000px;}
.y1b5{bottom:435.495000px;}
.yf3{bottom:437.475000px;}
.y134{bottom:437.856373px;}
.y1de{bottom:438.375000px;}
.y13d{bottom:439.828535px;}
.y59{bottom:441.930000px;}
.y3d{bottom:446.250000px;}
.y8f{bottom:447.330000px;}
.y191{bottom:447.555000px;}
.ybe{bottom:449.160000px;}
.y16b{bottom:454.215000px;}
.y1b4{bottom:458.895000px;}
.yf2{bottom:460.875000px;}
.y1dd{bottom:461.955000px;}
.y3c{bottom:463.530000px;}
.y8e{bottom:470.940000px;}
.ybd{bottom:472.560000px;}
.y190{bottom:477.075000px;}
.y1b3{bottom:482.475000px;}
.y16a{bottom:483.555000px;}
.yf1{bottom:484.455000px;}
.y1dc{bottom:485.355000px;}
.y3b{bottom:487.110000px;}
.y8d{bottom:488.400000px;}
.ybc{bottom:495.960000px;}
.y3a{bottom:504.570000px;}
.y8c{bottom:505.680000px;}
.y18f{bottom:506.415000px;}
.yf0{bottom:507.855000px;}
.y1db{bottom:508.755000px;}
.y1b2{bottom:511.815000px;}
.y169{bottom:513.075000px;}
.ybb{bottom:519.540000px;}
.y39{bottom:521.850000px;}
.y8b{bottom:523.140000px;}
.y18e{bottom:523.875000px;}
.y20a{bottom:524.775000px;}
.yef{bottom:531.255000px;}
.y1da{bottom:532.155000px;}
.yba{bottom:536.820000px;}
.y38{bottom:539.310000px;}
.y1b1{bottom:541.335000px;}
.y168{bottom:542.415000px;}
.y8a{bottom:546.540000px;}
.y56{bottom:546.555000px;}
.y12f{bottom:547.079104px;}
.y202{bottom:550.680000px;}
.y1ff{bottom:550.695000px;}
.y18d{bottom:553.215000px;}
.yee{bottom:554.655000px;}
.y1d9{bottom:555.555000px;}
.yb9{bottom:560.220000px;}
.y89{bottom:564.000000px;}
.y11a{bottom:567.465000px;}
.y1b0{bottom:570.705000px;}
.y37{bottom:570.900000px;}
.y167{bottom:571.965000px;}
.yed{bottom:578.085000px;}
.y1d8{bottom:578.985000px;}
.y88{bottom:581.460000px;}
.y18c{bottom:582.765000px;}
.yb8{bottom:583.800000px;}
.y166{bottom:589.425000px;}
.y119{bottom:590.865000px;}
.y87{bottom:598.740000px;}
.y18b{bottom:600.225000px;}
.yb7{bottom:601.080000px;}
.yec{bottom:601.485000px;}
.y1d7{bottom:602.385000px;}
.y165{bottom:606.705000px;}
.y118{bottom:614.445000px;}
.y18a{bottom:617.685000px;}
.y86{bottom:622.320000px;}
.yb6{bottom:624.480000px;}
.yeb{bottom:624.885000px;}
.y1d6{bottom:625.785000px;}
.y1af{bottom:629.565000px;}
.y107{bottom:633.846212px;}
.y117{bottom:633.885000px;}
.y110{bottom:634.415881px;}
.y189{bottom:634.965000px;}
.y164{bottom:636.225000px;}
.y85{bottom:639.600000px;}
.yb5{bottom:648.060000px;}
.yea{bottom:648.285000px;}
.y1d5{bottom:649.185000px;}
.y188{bottom:652.425000px;}
.y84{bottom:657.060000px;}
.y1ae{bottom:659.085000px;}
.yb4{bottom:665.340000px;}
.y163{bottom:665.565000px;}
.ye9{bottom:671.685000px;}
.y1d4{bottom:672.585000px;}
.y83{bottom:674.520000px;}
.y1ad{bottom:676.365000px;}
.y18{bottom:679.065000px;}
.y187{bottom:681.765000px;}
.yb3{bottom:682.665000px;}
.y162{bottom:684.825000px;}
.y13c{bottom:684.840000px;}
.y15c{bottom:685.104549px;}
.y82{bottom:691.980000px;}
.ye8{bottom:695.085000px;}
.y1d3{bottom:696.165000px;}
.y115{bottom:698.313524px;}
.y15b{bottom:701.166795px;}
.y10{bottom:702.645000px;}
.y1ac{bottom:705.885000px;}
.yb2{bottom:706.245000px;}
.y81{bottom:709.260000px;}
.y186{bottom:711.285000px;}
.y159{bottom:717.228892px;}
.ye7{bottom:718.665000px;}
.y1d2{bottom:719.565000px;}
.yb1{bottom:723.705000px;}
.yf{bottom:726.045000px;}
.y80{bottom:726.720000px;}
.y35{bottom:727.125000px;}
.y158{bottom:733.292058px;}
.y1ab{bottom:735.225000px;}
.ye6{bottom:735.945000px;}
.y185{bottom:740.625000px;}
.yb0{bottom:741.165000px;}
.y1d1{bottom:742.965000px;}
.y7f{bottom:744.045000px;}
.y157{bottom:749.352371px;}
.y34{bottom:750.525000px;}
.ye{bottom:755.385000px;}
.yaf{bottom:758.445000px;}
.ye5{bottom:759.345000px;}
.y1aa{bottom:764.745000px;}
.y156{bottom:765.416251px;}
.y1d0{bottom:766.365000px;}
.y7e{bottom:767.625000px;}
.y184{bottom:770.145000px;}
.y33{bottom:773.925000px;}
.yae{bottom:775.905000px;}
.y155{bottom:781.476564px;}
.y1a9{bottom:782.025000px;}
.ye4{bottom:782.925000px;}
.yd{bottom:784.905000px;}
.y7d{bottom:785.085000px;}
.y1cf{bottom:789.765000px;}
.y1fe{bottom:796.425000px;}
.y32{bottom:797.505000px;}
.y154{bottom:797.540444px;}
.yad{bottom:799.305000px;}
.y183{bottom:799.485000px;}
.ye3{bottom:800.385000px;}
.y7c{bottom:802.545000px;}
.y1a8{bottom:811.545000px;}
.y1ce{bottom:813.165000px;}
.y153{bottom:813.600756px;}
.yc{bottom:814.245000px;}
.yac{bottom:816.765000px;}
.ye2{bottom:817.665000px;}
.y7b{bottom:819.825000px;}
.y1ee{bottom:820.725000px;}
.y31{bottom:820.905000px;}
.y182{bottom:828.825000px;}
.y152{bottom:829.664636px;}
.yab{bottom:834.225000px;}
.y1cd{bottom:836.565000px;}
.y30{bottom:840.930000px;}
.ye1{bottom:841.110000px;}
.y7a{bottom:843.225000px;}
.yb{bottom:843.810000px;}
.y150{bottom:845.724949px;}
.yaa{bottom:851.685000px;}
.y181{bottom:858.390000px;}
.y1cc{bottom:860.010000px;}
.y79{bottom:860.685000px;}
.y14f{bottom:861.788829px;}
.ye0{bottom:864.690000px;}
.y2f{bottom:865.050000px;}
.ya9{bottom:868.965000px;}
.y1a7{bottom:870.270000px;}
.ya{bottom:873.870000px;}
.y14e{bottom:877.849141px;}
.y78{bottom:877.965000px;}
.ydf{bottom:881.970000px;}
.y1cb{bottom:883.410000px;}
.ya8{bottom:886.425000px;}
.y180{bottom:887.730000px;}
.y2e{bottom:889.170000px;}
.y14d{bottom:893.913021px;}
.y1a6{bottom:899.790000px;}
.y77{bottom:901.365000px;}
.ya7{bottom:903.885000px;}
.yde{bottom:905.370000px;}
.y9{bottom:906.810000px;}
.y14c{bottom:909.973334px;}
.y2d{bottom:913.470000px;}
.y17f{bottom:917.250000px;}
.ya6{bottom:921.165000px;}
.y76{bottom:924.945000px;}
.y15e{bottom:926.037214px;}
.ydd{bottom:928.770000px;}
.y1a5{bottom:929.130000px;}
.y1ca{bottom:930.210000px;}
.y2c{bottom:937.590000px;}
.y8{bottom:939.750000px;}
.y14a{bottom:942.097527px;}
.ya5{bottom:944.745000px;}
.y17e{bottom:946.590000px;}
.y75{bottom:948.345000px;}
.ydc{bottom:952.170000px;}
.y1c9{bottom:953.790000px;}
.y149{bottom:958.150705px;}
.y1a4{bottom:958.650000px;}
.ya4{bottom:962.055000px;}
.y74{bottom:965.625000px;}
.y2b{bottom:965.850000px;}
.y7{bottom:972.690000px;}
.y148{bottom:974.214585px;}
.ydb{bottom:975.570000px;}
.y17d{bottom:976.110000px;}
.y1c8{bottom:977.190000px;}
.ya3{bottom:985.455000px;}
.y2a{bottom:985.830000px;}
.y1a3{bottom:987.990000px;}
.y73{bottom:989.025000px;}
.y147{bottom:990.274897px;}
.yda{bottom:998.970000px;}
.y1c7{bottom:1000.590000px;}
.y17c{bottom:1005.450000px;}
.y6{bottom:1005.630000px;}
.y146{bottom:1006.338777px;}
.y29{bottom:1010.130000px;}
.y72{bottom:1012.605000px;}
.y1a2{bottom:1017.510000px;}
.y145{bottom:1022.399090px;}
.yd9{bottom:1022.550000px;}
.y1c6{bottom:1023.990000px;}
.y28{bottom:1034.250000px;}
.y17b{bottom:1034.790000px;}
.y71{bottom:1036.035000px;}
.y144{bottom:1038.462970px;}
.y106{bottom:1041.450000px;}
.y5{bottom:1041.630000px;}
.yd8{bottom:1045.950000px;}
.y1a1{bottom:1046.850000px;}
.y1c5{bottom:1047.390000px;}
.y143{bottom:1054.523283px;}
.y27{bottom:1062.510000px;}
.y17a{bottom:1064.310000px;}
.y105{bottom:1064.850000px;}
.yd7{bottom:1069.350000px;}
.y142{bottom:1070.587163px;}
.y1c4{bottom:1070.790000px;}
.y1a0{bottom:1076.190000px;}
.y4{bottom:1080.870000px;}
.y26{bottom:1082.490000px;}
.y140{bottom:1086.647475px;}
.y104{bottom:1088.250000px;}
.yd6{bottom:1089.330000px;}
.y179{bottom:1093.650000px;}
.y1c3{bottom:1094.190000px;}
.y13e{bottom:1102.711355px;}
.y19f{bottom:1105.710000px;}
.y24{bottom:1106.790000px;}
.y103{bottom:1111.650000px;}
.y3{bottom:1114.710000px;}
.yd5{bottom:1117.590000px;}
.y178{bottom:1123.200000px;}
.y1ed{bottom:1124.100000px;}
.y36{bottom:1130.220000px;}
.y23{bottom:1135.080000px;}
.yd4{bottom:1141.020000px;}
.y2{bottom:1148.580000px;}
.y160{bottom:1150.895860px;}
.y177{bottom:1152.540000px;}
.y6f{bottom:1153.620000px;}
.y22{bottom:1158.480000px;}
.yd3{bottom:1164.420000px;}
.y19e{bottom:1164.600000px;}
.y1{bottom:1182.420000px;}
.h1f{height:9.738629px;}
.h22{height:10.250291px;}
.hb{height:11.151000px;}
.h7{height:11.331000px;}
.h23{height:11.802331px;}
.hc{height:13.680000px;}
.h20{height:15.366908px;}
.h29{height:15.785625px;}
.h27{height:15.794543px;}
.h2d{height:21.154521px;}
.h9{height:23.211000px;}
.hf{height:23.385000px;}
.h10{height:23.400000px;}
.he{height:23.430000px;}
.h26{height:23.440148px;}
.h30{height:23.580000px;}
.h12{height:23.610000px;}
.h8{height:24.996094px;}
.h2a{height:25.904562px;}
.h28{height:26.926698px;}
.h2b{height:30.137333px;}
.h1e{height:32.089987px;}
.h1c{height:34.224575px;}
.h1d{height:36.535048px;}
.h24{height:40.628342px;}
.h2e{height:41.336515px;}
.h18{height:43.878988px;}
.ha{height:50.294531px;}
.hd{height:50.312812px;}
.h21{height:51.301287px;}
.h2c{height:53.614688px;}
.h5{height:54.799453px;}
.h6{height:55.966641px;}
.h19{height:63.328112px;}
.h4{height:66.023438px;}
.h2{height:89.681484px;}
.h3{height:112.607578px;}
.h1a{height:124.932028px;}
.h1b{height:244.574322px;}
.h31{height:245.010000px;}
.h32{height:245.025000px;}
.h2f{height:302.655000px;}
.h17{height:397.058715px;}
.h13{height:461.175000px;}
.h14{height:461.190000px;}
.h25{height:492.562003px;}
.h11{height:558.615000px;}
.h16{height:1004.715000px;}
.h15{height:1055.295000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:6.480000px;}
.wd{width:106.185000px;}
.wa{width:116.625000px;}
.w7{width:116.631000px;}
.w3{width:151.230000px;}
.w9{width:190.635000px;}
.wf{width:202.102202px;}
.w13{width:235.080352px;}
.wb{width:243.735000px;}
.w2{width:251.301000px;}
.w4{width:251.475000px;}
.wc{width:254.415000px;}
.w8{width:296.880000px;}
.we{width:510.089124px;}
.w11{width:556.636399px;}
.w10{width:636.160767px;}
.w14{width:636.962914px;}
.w12{width:637.230545px;}
.w6{width:723.330000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x8{left:-34.425000px;}
.x66{left:-4.817367px;}
.x0{left:0.000000px;}
.x5c{left:1.705984px;}
.xd{left:3.255000px;}
.x65{left:4.282104px;}
.xa{left:8.100000px;}
.x2e{left:10.071000px;}
.x42{left:11.151000px;}
.x1b{left:12.225000px;}
.x25{left:14.745000px;}
.x40{left:15.831000px;}
.x30{left:16.911000px;}
.x1c{left:18.360000px;}
.x60{left:19.496627px;}
.x19{left:20.511000px;}
.x24{left:21.591000px;}
.x21{left:23.400000px;}
.x38{left:24.651000px;}
.x26{left:26.451000px;}
.x18{left:28.620000px;}
.x32{left:31.131000px;}
.x2f{left:32.211000px;}
.x2d{left:34.371000px;}
.x22{left:35.985000px;}
.x27{left:38.685000px;}
.x3f{left:43.905000px;}
.x76{left:45.345000px;}
.x13{left:47.505000px;}
.x2b{left:51.285000px;}
.x28{left:55.650000px;}
.x1e{left:57.225000px;}
.x23{left:68.430000px;}
.x36{left:69.825000px;}
.x1a{left:71.985000px;}
.x16{left:73.965000px;}
.x15{left:83.910000px;}
.x48{left:92.145000px;}
.xf{left:106.245000px;}
.x67{left:110.578189px;}
.x2c{left:112.485000px;}
.x3e{left:115.725000px;}
.x7{left:119.565000px;}
.x31{left:123.105000px;}
.x1{left:127.656000px;}
.x5f{left:128.777619px;}
.x6b{left:129.816000px;}
.x52{left:131.256000px;}
.x46{left:132.645000px;}
.x6c{left:134.856000px;}
.x3c{left:136.065000px;}
.x5{left:137.736000px;}
.x57{left:139.716000px;}
.x56{left:143.496000px;}
.x68{left:145.476000px;}
.x1d{left:147.585000px;}
.x11{left:149.385000px;}
.x4e{left:151.005000px;}
.x6d{left:157.530000px;}
.x69{left:159.690000px;}
.x6f{left:170.130000px;}
.x50{left:172.290000px;}
.x4a{left:174.405000px;}
.x49{left:188.445000px;}
.x5b{left:191.833661px;}
.x4c{left:197.490000px;}
.x47{left:203.070000px;}
.x37{left:204.690000px;}
.x51{left:208.470000px;}
.x77{left:210.810000px;}
.x14{left:223.785000px;}
.x3b{left:225.030000px;}
.x3{left:230.610000px;}
.x44{left:232.230000px;}
.x39{left:238.170000px;}
.x62{left:240.609911px;}
.x61{left:244.710867px;}
.x5e{left:247.170000px;}
.x78{left:248.250000px;}
.x75{left:250.230000px;}
.x10{left:254.730000px;}
.x12{left:257.250000px;}
.x3d{left:277.590000px;}
.x72{left:279.570000px;}
.x45{left:283.710000px;}
.x3a{left:288.030000px;}
.x33{left:294.330000px;}
.x70{left:295.950000px;}
.x74{left:303.690000px;}
.x43{left:305.670000px;}
.x4b{left:308.190000px;}
.x2a{left:310.710000px;}
.x4f{left:318.990000px;}
.x41{left:320.430000px;}
.x35{left:325.290000px;}
.x73{left:326.550000px;}
.x4d{left:328.710000px;}
.x29{left:336.315000px;}
.x64{left:340.095000px;}
.x5a{left:341.535000px;}
.x71{left:354.675000px;}
.x6a{left:358.455000px;}
.x34{left:361.650000px;}
.x6{left:367.995000px;}
.x9{left:370.875000px;}
.x4{left:383.295000px;}
.x55{left:385.815000px;}
.x59{left:394.995000px;}
.x53{left:403.275000px;}
.x58{left:414.975000px;}
.x6e{left:417.315000px;}
.x54{left:421.995000px;}
.x2{left:446.475000px;}
.x1f{left:468.255000px;}
.xb{left:522.120000px;}
.xe{left:700.350000px;}
.x5d{left:701.970000px;}
.x17{left:712.950000px;}
.x20{left:723.390000px;}
.xc{left:759.015000px;}
.x63{left:764.970000px;}
@media print{
.v1{vertical-align:-3.638484pt;}
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.312533pt;}
.ls5{letter-spacing:-0.310400pt;}
.ls4{letter-spacing:-0.294933pt;}
.ls3{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.090056pt;}
.ls0{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.246400pt;}
.ls2{letter-spacing:0.265600pt;}
.ls6{letter-spacing:0.325333pt;}
.ls9{letter-spacing:0.470576pt;}
.lsb{letter-spacing:0.489600pt;}
.ws19{word-spacing:-16.478720pt;}
.ws2{word-spacing:-16.314453pt;}
.ws1{word-spacing:-15.989120pt;}
.ws18{word-spacing:-15.941760pt;}
.ws3{word-spacing:-11.526978pt;}
.ws7{word-spacing:-8.108846pt;}
.wsc{word-spacing:-7.603097pt;}
.ws13{word-spacing:-7.140454pt;}
.ws0{word-spacing:0.000000pt;}
.ws14{word-spacing:101.155157pt;}
.wsf{word-spacing:108.379936pt;}
.ws6{word-spacing:139.371570pt;}
.ws4{word-spacing:159.383230pt;}
.ws16{word-spacing:160.185823pt;}
.ws10{word-spacing:163.029961pt;}
.ws15{word-spacing:171.323003pt;}
.ws9{word-spacing:184.860862pt;}
.wsa{word-spacing:186.680104pt;}
.wsd{word-spacing:188.499346pt;}
.ws5{word-spacing:190.310341pt;}
.ws11{word-spacing:194.005585pt;}
.ws8{word-spacing:197.587308pt;}
.ws12{word-spacing:199.463310pt;}
.wse{word-spacing:201.282552pt;}
.wsb{word-spacing:214.017245pt;}
.ws17{word-spacing:215.384972pt;}
._6{margin-left:-2.852831pt;}
._8{margin-left:-1.941889pt;}
._0{margin-left:-1.045333pt;}
._1{width:1.258667pt;}
._2{width:2.287360pt;}
._3{width:3.194453pt;}
._4{width:5.662720pt;}
._1d{width:18.326308pt;}
._1c{width:19.384946pt;}
._1e{width:21.891937pt;}
._20{width:25.800108pt;}
._1f{width:28.151720pt;}
._21{width:56.752282pt;}
._2a{width:79.214484pt;}
._28{width:89.130354pt;}
._29{width:116.678747pt;}
._27{width:149.351961pt;}
._26{width:160.054769pt;}
._10{width:169.159971pt;}
._5{width:172.789547pt;}
._2e{width:186.396690pt;}
._24{width:188.547469pt;}
._9{width:191.893107pt;}
._2f{width:220.998966pt;}
._2c{width:222.176917pt;}
._31{width:227.189675pt;}
._1b{width:234.822031pt;}
._2d{width:236.084091pt;}
._25{width:253.434235pt;}
._30{width:277.497023pt;}
._2b{width:282.278830pt;}
._32{width:291.517561pt;}
._22{width:330.978020pt;}
._1a{width:346.215814pt;}
._23{width:354.484231pt;}
._14{width:400.245020pt;}
._b{width:429.359233pt;}
._11{width:433.521500pt;}
._e{width:440.361531pt;}
._15{width:466.719319pt;}
._17{width:527.935193pt;}
._16{width:578.820284pt;}
._c{width:597.108483pt;}
._19{width:632.804213pt;}
._a{width:649.684366pt;}
._12{width:655.646823pt;}
._7{width:665.760275pt;}
._13{width:671.490230pt;}
._d{width:684.094055pt;}
._f{width:724.754456pt;}
._18{width:748.169997pt;}
.fsc{font-size:19.977288pt;}
.fsd{font-size:25.685085pt;}
.fs8{font-size:27.349269pt;}
.fs9{font-size:29.168510pt;}
.fs10{font-size:30.473292pt;}
.fs4{font-size:32.000000pt;}
.fsa{font-size:34.626236pt;}
.fsf{font-size:35.229789pt;}
.fs7{font-size:38.551766pt;}
.fs6{font-size:42.880000pt;}
.fsb{font-size:43.722445pt;}
.fse{font-size:45.694083pt;}
.fs3{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:85.120000pt;}
.fs1{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y130{bottom:1.819242pt;}
.y135{bottom:2.286181pt;}
.y12e{bottom:2.289231pt;}
.y17{bottom:2.392000pt;}
.y15f{bottom:2.616073pt;}
.y15{bottom:2.712000pt;}
.y12{bottom:2.872000pt;}
.y132{bottom:3.183673pt;}
.y114{bottom:3.561495pt;}
.y55{bottom:3.666667pt;}
.y6e{bottom:3.672000pt;}
.y25{bottom:3.680000pt;}
.y209{bottom:3.693333pt;}
.y57{bottom:3.840000pt;}
.y151{bottom:4.518672pt;}
.y15a{bottom:5.231513pt;}
.y14b{bottom:5.232147pt;}
.y15d{bottom:5.232280pt;}
.y13f{bottom:5.238489pt;}
.y141{bottom:5.241660pt;}
.y161{bottom:6.192959pt;}
.y14{bottom:6.872000pt;}
.y13{bottom:8.040000pt;}
.y12d{bottom:12.765214pt;}
.y16{bottom:16.520000pt;}
.y113{bottom:17.756646pt;}
.y11{bottom:18.600000pt;}
.y12c{bottom:23.695825pt;}
.y54{bottom:24.466667pt;}
.y6d{bottom:24.472000pt;}
.y1fd{bottom:24.680000pt;}
.y112{bottom:31.951933pt;}
.y20{bottom:32.512000pt;}
.y12b{bottom:34.641597pt;}
.y1fc{bottom:40.040000pt;}
.ycf{bottom:45.266667pt;}
.y53{bottom:45.426667pt;}
.y6c{bottom:45.432000pt;}
.y12a{bottom:45.572208pt;}
.y111{bottom:46.147220pt;}
.y1f{bottom:53.312000pt;}
.y129{bottom:56.517980pt;}
.y21{bottom:58.120000pt;}
.y116{bottom:59.837607pt;}
.y52{bottom:60.786667pt;}
.y1fb{bottom:60.840000pt;}
.y208{bottom:61.000000pt;}
.yce{bottom:66.066667pt;}
.y6b{bottom:66.226667pt;}
.y128{bottom:67.448591pt;}
.y1c2{bottom:74.912000pt;}
.y58{bottom:75.240000pt;}
.y51{bottom:76.306667pt;}
.y1fa{bottom:76.360000pt;}
.y207{bottom:76.520000pt;}
.y102{bottom:76.672000pt;}
.y127{bottom:78.394363pt;}
.ya1{bottom:81.586667pt;}
.y19d{bottom:84.032000pt;}
.y70{bottom:86.760000pt;}
.ycd{bottom:86.866667pt;}
.y6a{bottom:87.026667pt;}
.y126{bottom:89.321942pt;}
.y50{bottom:91.826667pt;}
.y1f9{bottom:91.880000pt;}
.y1ec{bottom:92.992000pt;}
.yd2{bottom:93.632000pt;}
.y1c1{bottom:95.712000pt;}
.y101{bottom:97.472000pt;}
.y125{bottom:101.632145pt;}
.ya0{bottom:102.546667pt;}
.y4f{bottom:107.346667pt;}
.y1f8{bottom:107.400000pt;}
.ycc{bottom:107.706667pt;}
.y69{bottom:107.826667pt;}
.y19c{bottom:110.272000pt;}
.y206{bottom:112.680000pt;}
.y124{bottom:114.397158pt;}
.yd1{bottom:114.592000pt;}
.y176{bottom:116.032000pt;}
.y1c0{bottom:116.512000pt;}
.y9f{bottom:118.066667pt;}
.y100{bottom:118.272000pt;}
.y1eb{bottom:119.072000pt;}
.y4e{bottom:122.706667pt;}
.y1f7{bottom:122.760000pt;}
.y123{bottom:125.330801pt;}
.y205{bottom:128.200000pt;}
.ycb{bottom:128.506667pt;}
.y68{bottom:128.626667pt;}
.y9e{bottom:133.426667pt;}
.yd0{bottom:135.386667pt;}
.y122{bottom:136.276573pt;}
.y19b{bottom:136.346667pt;}
.y1bf{bottom:137.306667pt;}
.y4d{bottom:138.226667pt;}
.y1f6{bottom:138.280000pt;}
.yff{bottom:139.066667pt;}
.y1ea{bottom:139.866667pt;}
.y175{bottom:142.266667pt;}
.y121{bottom:147.204152pt;}
.y204{bottom:149.000000pt;}
.y67{bottom:149.426667pt;}
.yca{bottom:149.466667pt;}
.ya2{bottom:153.160000pt;}
.y4c{bottom:153.746667pt;}
.y9d{bottom:154.226667pt;}
.y1be{bottom:158.106667pt;}
.y120{bottom:158.149924pt;}
.y1f5{bottom:159.080000pt;}
.yfe{bottom:159.866667pt;}
.y1e9{bottom:160.666667pt;}
.y19a{bottom:162.426667pt;}
.y1e{bottom:163.226667pt;}
.y203{bottom:164.360000pt;}
.y174{bottom:168.346667pt;}
.y11f{bottom:169.083567pt;}
.y4b{bottom:169.106667pt;}
.yc9{bottom:170.266667pt;}
.y66{bottom:170.426667pt;}
.y10f{bottom:172.417420pt;}
.y1f4{bottom:174.600000pt;}
.y9c{bottom:175.226667pt;}
.y1bd{bottom:178.906667pt;}
.y11e{bottom:180.029339pt;}
.yfd{bottom:180.666667pt;}
.y1e8{bottom:181.626667pt;}
.y1d{bottom:184.026667pt;}
.y201{bottom:185.306667pt;}
.y65{bottom:185.946667pt;}
.y10e{bottom:186.616083pt;}
.y13b{bottom:187.866667pt;}
.y199{bottom:188.666667pt;}
.y4a{bottom:190.066667pt;}
.y1f3{bottom:190.120000pt;}
.y9b{bottom:190.586667pt;}
.y11d{bottom:190.956918pt;}
.yc8{bottom:191.066667pt;}
.y173{bottom:194.586667pt;}
.y1bc{bottom:199.706667pt;}
.y200{bottom:200.666667pt;}
.y10d{bottom:200.807994pt;}
.y11c{bottom:200.993069pt;}
.y64{bottom:201.306667pt;}
.yfc{bottom:201.626667pt;}
.y1e7{bottom:202.426667pt;}
.y13a{bottom:203.226667pt;}
.y1c{bottom:204.826667pt;}
.y49{bottom:205.586667pt;}
.y1f2{bottom:205.640000pt;}
.y9a{bottom:206.106667pt;}
.yc7{bottom:211.866667pt;}
.y198{bottom:214.746667pt;}
.y10c{bottom:215.006656pt;}
.y63{bottom:216.826667pt;}
.y139{bottom:218.586667pt;}
.y172{bottom:220.666667pt;}
.y48{bottom:220.946667pt;}
.y1f1{bottom:221.000000pt;}
.y99{bottom:221.626667pt;}
.yfb{bottom:222.426667pt;}
.y1e6{bottom:223.226667pt;}
.y1b{bottom:225.626667pt;}
.y10b{bottom:229.218822pt;}
.y62{bottom:232.186667pt;}
.yc6{bottom:232.666667pt;}
.y47{bottom:236.466667pt;}
.y1f0{bottom:236.520000pt;}
.y98{bottom:237.146667pt;}
.y138{bottom:239.546667pt;}
.y197{bottom:240.986667pt;}
.y1bb{bottom:241.466667pt;}
.yfa{bottom:243.266667pt;}
.y10a{bottom:243.410733pt;}
.y1e5{bottom:244.066667pt;}
.y1a{bottom:246.466667pt;}
.y171{bottom:246.786667pt;}
.y46{bottom:251.866667pt;}
.y1ef{bottom:251.880000pt;}
.y97{bottom:252.506667pt;}
.y61{bottom:253.146667pt;}
.yc5{bottom:253.466667pt;}
.y109{bottom:257.609396pt;}
.y137{bottom:260.386667pt;}
.y1ba{bottom:262.306667pt;}
.y19{bottom:263.586667pt;}
.yf9{bottom:264.066667pt;}
.y1e4{bottom:264.866667pt;}
.y196{bottom:267.106667pt;}
.y96{bottom:267.866667pt;}
.y60{bottom:268.666667pt;}
.y108{bottom:271.801307pt;}
.y45{bottom:272.826667pt;}
.y170{bottom:273.026667pt;}
.yc4{bottom:274.266667pt;}
.y136{bottom:277.506667pt;}
.y11b{bottom:277.549498pt;}
.y133{bottom:278.004309pt;}
.y1b9{bottom:283.106667pt;}
.y5f{bottom:284.026667pt;}
.yf8{bottom:284.866667pt;}
.y1e3{bottom:285.666667pt;}
.y44{bottom:288.346667pt;}
.y95{bottom:288.826667pt;}
.y195{bottom:293.346667pt;}
.yc3{bottom:295.066667pt;}
.y16f{bottom:299.106667pt;}
.y43{bottom:303.866667pt;}
.y1b8{bottom:303.906667pt;}
.y5e{bottom:304.826667pt;}
.yf7{bottom:305.666667pt;}
.y1e2{bottom:306.466667pt;}
.y94{bottom:309.626667pt;}
.yc2{bottom:315.866667pt;}
.y42{bottom:319.226667pt;}
.y194{bottom:319.426667pt;}
.y1b7{bottom:324.706667pt;}
.y16e{bottom:325.346667pt;}
.y5d{bottom:325.786667pt;}
.yf6{bottom:326.466667pt;}
.y1e1{bottom:327.266667pt;}
.y93{bottom:330.426667pt;}
.y41{bottom:334.746667pt;}
.yc1{bottom:336.666667pt;}
.y5c{bottom:341.146667pt;}
.y193{bottom:345.506667pt;}
.yf5{bottom:347.266667pt;}
.y1e0{bottom:348.066667pt;}
.y40{bottom:350.266667pt;}
.y92{bottom:351.386667pt;}
.y16d{bottom:351.426667pt;}
.y5b{bottom:356.666667pt;}
.yc0{bottom:357.653333pt;}
.y3f{bottom:365.786667pt;}
.y1b6{bottom:366.306667pt;}
.y91{bottom:366.746667pt;}
.yf4{bottom:368.066667pt;}
.y1df{bottom:368.866667pt;}
.y192{bottom:371.746667pt;}
.y5a{bottom:372.026667pt;}
.y131{bottom:375.088349pt;}
.y16c{bottom:377.666667pt;}
.ybf{bottom:378.453333pt;}
.y3e{bottom:381.146667pt;}
.y90{bottom:382.266667pt;}
.y1b5{bottom:387.106667pt;}
.yf3{bottom:388.866667pt;}
.y134{bottom:389.205665pt;}
.y1de{bottom:389.666667pt;}
.y13d{bottom:390.958698pt;}
.y59{bottom:392.826667pt;}
.y3d{bottom:396.666667pt;}
.y8f{bottom:397.626667pt;}
.y191{bottom:397.826667pt;}
.ybe{bottom:399.253333pt;}
.y16b{bottom:403.746667pt;}
.y1b4{bottom:407.906667pt;}
.yf2{bottom:409.666667pt;}
.y1dd{bottom:410.626667pt;}
.y3c{bottom:412.026667pt;}
.y8e{bottom:418.613333pt;}
.ybd{bottom:420.053333pt;}
.y190{bottom:424.066667pt;}
.y1b3{bottom:428.866667pt;}
.y16a{bottom:429.826667pt;}
.yf1{bottom:430.626667pt;}
.y1dc{bottom:431.426667pt;}
.y3b{bottom:432.986667pt;}
.y8d{bottom:434.133333pt;}
.ybc{bottom:440.853333pt;}
.y3a{bottom:448.506667pt;}
.y8c{bottom:449.493333pt;}
.y18f{bottom:450.146667pt;}
.yf0{bottom:451.426667pt;}
.y1db{bottom:452.226667pt;}
.y1b2{bottom:454.946667pt;}
.y169{bottom:456.066667pt;}
.ybb{bottom:461.813333pt;}
.y39{bottom:463.866667pt;}
.y8b{bottom:465.013333pt;}
.y18e{bottom:465.666667pt;}
.y20a{bottom:466.466667pt;}
.yef{bottom:472.226667pt;}
.y1da{bottom:473.026667pt;}
.yba{bottom:477.173333pt;}
.y38{bottom:479.386667pt;}
.y1b1{bottom:481.186667pt;}
.y168{bottom:482.146667pt;}
.y8a{bottom:485.813333pt;}
.y56{bottom:485.826667pt;}
.y12f{bottom:486.292537pt;}
.y202{bottom:489.493333pt;}
.y1ff{bottom:489.506667pt;}
.y18d{bottom:491.746667pt;}
.yee{bottom:493.026667pt;}
.y1d9{bottom:493.826667pt;}
.yb9{bottom:497.973333pt;}
.y89{bottom:501.333333pt;}
.y11a{bottom:504.413333pt;}
.y1b0{bottom:507.293333pt;}
.y37{bottom:507.466667pt;}
.y167{bottom:508.413333pt;}
.yed{bottom:513.853333pt;}
.y1d8{bottom:514.653333pt;}
.y88{bottom:516.853333pt;}
.y18c{bottom:518.013333pt;}
.yb8{bottom:518.933333pt;}
.y166{bottom:523.933333pt;}
.y119{bottom:525.213333pt;}
.y87{bottom:532.213333pt;}
.y18b{bottom:533.533333pt;}
.yb7{bottom:534.293333pt;}
.yec{bottom:534.653333pt;}
.y1d7{bottom:535.453333pt;}
.y165{bottom:539.293333pt;}
.y118{bottom:546.173333pt;}
.y18a{bottom:549.053333pt;}
.y86{bottom:553.173333pt;}
.yb6{bottom:555.093333pt;}
.yeb{bottom:555.453333pt;}
.y1d6{bottom:556.253333pt;}
.y1af{bottom:559.613333pt;}
.y107{bottom:563.418855pt;}
.y117{bottom:563.453333pt;}
.y110{bottom:563.925228pt;}
.y189{bottom:564.413333pt;}
.y164{bottom:565.533333pt;}
.y85{bottom:568.533333pt;}
.yb5{bottom:576.053333pt;}
.yea{bottom:576.253333pt;}
.y1d5{bottom:577.053333pt;}
.y188{bottom:579.933333pt;}
.y84{bottom:584.053333pt;}
.y1ae{bottom:585.853333pt;}
.yb4{bottom:591.413333pt;}
.y163{bottom:591.613333pt;}
.ye9{bottom:597.053333pt;}
.y1d4{bottom:597.853333pt;}
.y83{bottom:599.573333pt;}
.y1ad{bottom:601.213333pt;}
.y18{bottom:603.613333pt;}
.y187{bottom:606.013333pt;}
.yb3{bottom:606.813333pt;}
.y162{bottom:608.733333pt;}
.y13c{bottom:608.746667pt;}
.y15c{bottom:608.981822pt;}
.y82{bottom:615.093333pt;}
.ye8{bottom:617.853333pt;}
.y1d3{bottom:618.813333pt;}
.y115{bottom:620.723133pt;}
.y15b{bottom:623.259374pt;}
.y10{bottom:624.573333pt;}
.y1ac{bottom:627.453333pt;}
.yb2{bottom:627.773333pt;}
.y81{bottom:630.453333pt;}
.y186{bottom:632.253333pt;}
.y159{bottom:637.536793pt;}
.ye7{bottom:638.813333pt;}
.y1d2{bottom:639.613333pt;}
.yb1{bottom:643.293333pt;}
.yf{bottom:645.373333pt;}
.y80{bottom:645.973333pt;}
.y35{bottom:646.333333pt;}
.y158{bottom:651.815163pt;}
.y1ab{bottom:653.533333pt;}
.ye6{bottom:654.173333pt;}
.y185{bottom:658.333333pt;}
.yb0{bottom:658.813333pt;}
.y1d1{bottom:660.413333pt;}
.y7f{bottom:661.373333pt;}
.y157{bottom:666.090996pt;}
.y34{bottom:667.133333pt;}
.ye{bottom:671.453333pt;}
.yaf{bottom:674.173333pt;}
.ye5{bottom:674.973333pt;}
.y1aa{bottom:679.773333pt;}
.y156{bottom:680.370001pt;}
.y1d0{bottom:681.213333pt;}
.y7e{bottom:682.333333pt;}
.y184{bottom:684.573333pt;}
.y33{bottom:687.933333pt;}
.yae{bottom:689.693333pt;}
.y155{bottom:694.645834pt;}
.y1a9{bottom:695.133333pt;}
.ye4{bottom:695.933333pt;}
.yd{bottom:697.693333pt;}
.y7d{bottom:697.853333pt;}
.y1cf{bottom:702.013333pt;}
.y1fe{bottom:707.933333pt;}
.y32{bottom:708.893333pt;}
.y154{bottom:708.924839pt;}
.yad{bottom:710.493333pt;}
.y183{bottom:710.653333pt;}
.ye3{bottom:711.453333pt;}
.y7c{bottom:713.373333pt;}
.y1a8{bottom:721.373333pt;}
.y1ce{bottom:722.813333pt;}
.y153{bottom:723.200672pt;}
.yc{bottom:723.773333pt;}
.yac{bottom:726.013333pt;}
.ye2{bottom:726.813333pt;}
.y7b{bottom:728.733333pt;}
.y1ee{bottom:729.533333pt;}
.y31{bottom:729.693333pt;}
.y182{bottom:736.733333pt;}
.y152{bottom:737.479677pt;}
.yab{bottom:741.533333pt;}
.y1cd{bottom:743.613333pt;}
.y30{bottom:747.493333pt;}
.ye1{bottom:747.653333pt;}
.y7a{bottom:749.533333pt;}
.yb{bottom:750.053333pt;}
.y150{bottom:751.755510pt;}
.yaa{bottom:757.053333pt;}
.y181{bottom:763.013333pt;}
.y1cc{bottom:764.453333pt;}
.y79{bottom:765.053333pt;}
.y14f{bottom:766.034514pt;}
.ye0{bottom:768.613333pt;}
.y2f{bottom:768.933333pt;}
.ya9{bottom:772.413333pt;}
.y1a7{bottom:773.573333pt;}
.ya{bottom:776.773333pt;}
.y14e{bottom:780.310348pt;}
.y78{bottom:780.413333pt;}
.ydf{bottom:783.973333pt;}
.y1cb{bottom:785.253333pt;}
.ya8{bottom:787.933333pt;}
.y180{bottom:789.093333pt;}
.y2e{bottom:790.373333pt;}
.y14d{bottom:794.589352pt;}
.y1a6{bottom:799.813333pt;}
.y77{bottom:801.213333pt;}
.ya7{bottom:803.453333pt;}
.yde{bottom:804.773333pt;}
.y9{bottom:806.053333pt;}
.y14c{bottom:808.865186pt;}
.y2d{bottom:811.973333pt;}
.y17f{bottom:815.333333pt;}
.ya6{bottom:818.813333pt;}
.y76{bottom:822.173333pt;}
.y15e{bottom:823.144190pt;}
.ydd{bottom:825.573333pt;}
.y1a5{bottom:825.893333pt;}
.y1ca{bottom:826.853333pt;}
.y2c{bottom:833.413333pt;}
.y8{bottom:835.333333pt;}
.y14a{bottom:837.420024pt;}
.ya5{bottom:839.773333pt;}
.y17e{bottom:841.413333pt;}
.y75{bottom:842.973333pt;}
.ydc{bottom:846.373333pt;}
.y1c9{bottom:847.813333pt;}
.y149{bottom:851.689515pt;}
.y1a4{bottom:852.133333pt;}
.ya4{bottom:855.160000pt;}
.y74{bottom:858.333333pt;}
.y2b{bottom:858.533333pt;}
.y7{bottom:864.613333pt;}
.y148{bottom:865.968520pt;}
.ydb{bottom:867.173333pt;}
.y17d{bottom:867.653333pt;}
.y1c8{bottom:868.613333pt;}
.ya3{bottom:875.960000pt;}
.y2a{bottom:876.293333pt;}
.y1a3{bottom:878.213333pt;}
.y73{bottom:879.133333pt;}
.y147{bottom:880.244353pt;}
.yda{bottom:887.973333pt;}
.y1c7{bottom:889.413333pt;}
.y17c{bottom:893.733333pt;}
.y6{bottom:893.893333pt;}
.y146{bottom:894.523358pt;}
.y29{bottom:897.893333pt;}
.y72{bottom:900.093333pt;}
.y1a2{bottom:904.453333pt;}
.y145{bottom:908.799191pt;}
.yd9{bottom:908.933333pt;}
.y1c6{bottom:910.213333pt;}
.y28{bottom:919.333333pt;}
.y17b{bottom:919.813333pt;}
.y71{bottom:920.920000pt;}
.y144{bottom:923.078195pt;}
.y106{bottom:925.733333pt;}
.y5{bottom:925.893333pt;}
.yd8{bottom:929.733333pt;}
.y1a1{bottom:930.533333pt;}
.y1c5{bottom:931.013333pt;}
.y143{bottom:937.354029pt;}
.y27{bottom:944.453333pt;}
.y17a{bottom:946.053333pt;}
.y105{bottom:946.533333pt;}
.yd7{bottom:950.533333pt;}
.y142{bottom:951.633033pt;}
.y1c4{bottom:951.813333pt;}
.y1a0{bottom:956.613333pt;}
.y4{bottom:960.773333pt;}
.y26{bottom:962.213333pt;}
.y140{bottom:965.908867pt;}
.y104{bottom:967.333333pt;}
.yd6{bottom:968.293333pt;}
.y179{bottom:972.133333pt;}
.y1c3{bottom:972.613333pt;}
.y13e{bottom:980.187871pt;}
.y19f{bottom:982.853333pt;}
.y24{bottom:983.813333pt;}
.y103{bottom:988.133333pt;}
.y3{bottom:990.853333pt;}
.yd5{bottom:993.413333pt;}
.y178{bottom:998.400000pt;}
.y1ed{bottom:999.200000pt;}
.y36{bottom:1004.640000pt;}
.y23{bottom:1008.960000pt;}
.yd4{bottom:1014.240000pt;}
.y2{bottom:1020.960000pt;}
.y160{bottom:1023.018543pt;}
.y177{bottom:1024.480000pt;}
.y6f{bottom:1025.440000pt;}
.y22{bottom:1029.760000pt;}
.yd3{bottom:1035.040000pt;}
.y19e{bottom:1035.200000pt;}
.y1{bottom:1051.040000pt;}
.h1f{height:8.656559pt;}
.h22{height:9.111369pt;}
.hb{height:9.912000pt;}
.h7{height:10.072000pt;}
.h23{height:10.490961pt;}
.hc{height:12.160000pt;}
.h20{height:13.659474pt;}
.h29{height:14.031667pt;}
.h27{height:14.039594pt;}
.h2d{height:18.804019pt;}
.h9{height:20.632000pt;}
.hf{height:20.786667pt;}
.h10{height:20.800000pt;}
.he{height:20.826667pt;}
.h26{height:20.835687pt;}
.h30{height:20.960000pt;}
.h12{height:20.986667pt;}
.h8{height:22.218750pt;}
.h2a{height:23.026277pt;}
.h28{height:23.934842pt;}
.h2b{height:26.788741pt;}
.h1e{height:28.524433pt;}
.h1c{height:30.421845pt;}
.h1d{height:32.475598pt;}
.h24{height:36.114082pt;}
.h2e{height:36.743569pt;}
.h18{height:39.003544pt;}
.ha{height:44.706250pt;}
.hd{height:44.722500pt;}
.h21{height:45.601144pt;}
.h2c{height:47.657500pt;}
.h5{height:48.710625pt;}
.h6{height:49.748125pt;}
.h19{height:56.291655pt;}
.h4{height:58.687500pt;}
.h2{height:79.716875pt;}
.h3{height:100.095625pt;}
.h1a{height:111.050691pt;}
.h1b{height:217.399397pt;}
.h31{height:217.786667pt;}
.h32{height:217.800000pt;}
.h2f{height:269.026667pt;}
.h17{height:352.941080pt;}
.h13{height:409.933333pt;}
.h14{height:409.946667pt;}
.h25{height:437.832892pt;}
.h11{height:496.546667pt;}
.h16{height:893.080000pt;}
.h15{height:938.040000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:5.760000pt;}
.wd{width:94.386667pt;}
.wa{width:103.666667pt;}
.w7{width:103.672000pt;}
.w3{width:134.426667pt;}
.w9{width:169.453333pt;}
.wf{width:179.646401pt;}
.w13{width:208.960313pt;}
.wb{width:216.653333pt;}
.w2{width:223.378667pt;}
.w4{width:223.533333pt;}
.wc{width:226.146667pt;}
.w8{width:263.893333pt;}
.we{width:453.412555pt;}
.w11{width:494.787910pt;}
.w10{width:565.476237pt;}
.w14{width:566.189257pt;}
.w12{width:566.427151pt;}
.w6{width:642.960000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x8{left:-30.600000pt;}
.x66{left:-4.282104pt;}
.x0{left:0.000000pt;}
.x5c{left:1.516430pt;}
.xd{left:2.893333pt;}
.x65{left:3.806314pt;}
.xa{left:7.200000pt;}
.x2e{left:8.952000pt;}
.x42{left:9.912000pt;}
.x1b{left:10.866667pt;}
.x25{left:13.106667pt;}
.x40{left:14.072000pt;}
.x30{left:15.032000pt;}
.x1c{left:16.320000pt;}
.x60{left:17.330335pt;}
.x19{left:18.232000pt;}
.x24{left:19.192000pt;}
.x21{left:20.800000pt;}
.x38{left:21.912000pt;}
.x26{left:23.512000pt;}
.x18{left:25.440000pt;}
.x32{left:27.672000pt;}
.x2f{left:28.632000pt;}
.x2d{left:30.552000pt;}
.x22{left:31.986667pt;}
.x27{left:34.386667pt;}
.x3f{left:39.026667pt;}
.x76{left:40.306667pt;}
.x13{left:42.226667pt;}
.x2b{left:45.586667pt;}
.x28{left:49.466667pt;}
.x1e{left:50.866667pt;}
.x23{left:60.826667pt;}
.x36{left:62.066667pt;}
.x1a{left:63.986667pt;}
.x16{left:65.746667pt;}
.x15{left:74.586667pt;}
.x48{left:81.906667pt;}
.xf{left:94.440000pt;}
.x67{left:98.291724pt;}
.x2c{left:99.986667pt;}
.x3e{left:102.866667pt;}
.x7{left:106.280000pt;}
.x31{left:109.426667pt;}
.x1{left:113.472000pt;}
.x5f{left:114.468995pt;}
.x6b{left:115.392000pt;}
.x52{left:116.672000pt;}
.x46{left:117.906667pt;}
.x6c{left:119.872000pt;}
.x3c{left:120.946667pt;}
.x5{left:122.432000pt;}
.x57{left:124.192000pt;}
.x56{left:127.552000pt;}
.x68{left:129.312000pt;}
.x1d{left:131.186667pt;}
.x11{left:132.786667pt;}
.x4e{left:134.226667pt;}
.x6d{left:140.026667pt;}
.x69{left:141.946667pt;}
.x6f{left:151.226667pt;}
.x50{left:153.146667pt;}
.x4a{left:155.026667pt;}
.x49{left:167.506667pt;}
.x5b{left:170.518810pt;}
.x4c{left:175.546667pt;}
.x47{left:180.506667pt;}
.x37{left:181.946667pt;}
.x51{left:185.306667pt;}
.x77{left:187.386667pt;}
.x14{left:198.920000pt;}
.x3b{left:200.026667pt;}
.x3{left:204.986667pt;}
.x44{left:206.426667pt;}
.x39{left:211.706667pt;}
.x62{left:213.875477pt;}
.x61{left:217.520771pt;}
.x5e{left:219.706667pt;}
.x78{left:220.666667pt;}
.x75{left:222.426667pt;}
.x10{left:226.426667pt;}
.x12{left:228.666667pt;}
.x3d{left:246.746667pt;}
.x72{left:248.506667pt;}
.x45{left:252.186667pt;}
.x3a{left:256.026667pt;}
.x33{left:261.626667pt;}
.x70{left:263.066667pt;}
.x74{left:269.946667pt;}
.x43{left:271.706667pt;}
.x4b{left:273.946667pt;}
.x2a{left:276.186667pt;}
.x4f{left:283.546667pt;}
.x41{left:284.826667pt;}
.x35{left:289.146667pt;}
.x73{left:290.266667pt;}
.x4d{left:292.186667pt;}
.x29{left:298.946667pt;}
.x64{left:302.306667pt;}
.x5a{left:303.586667pt;}
.x71{left:315.266667pt;}
.x6a{left:318.626667pt;}
.x34{left:321.466667pt;}
.x6{left:327.106667pt;}
.x9{left:329.666667pt;}
.x4{left:340.706667pt;}
.x55{left:342.946667pt;}
.x59{left:351.106667pt;}
.x53{left:358.466667pt;}
.x58{left:368.866667pt;}
.x6e{left:370.946667pt;}
.x54{left:375.106667pt;}
.x2{left:396.866667pt;}
.x1f{left:416.226667pt;}
.xb{left:464.106667pt;}
.xe{left:622.533333pt;}
.x5d{left:623.973333pt;}
.x17{left:633.733333pt;}
.x20{left:643.013333pt;}
.xc{left:674.680000pt;}
.x63{left:679.973333pt;}
}




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