
    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_83b3c23f06a28d853e6912fd.woff')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_9926b6a9af41e5416eadb96b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.006000;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_a918c16e92f3f27b139de017.woff')format("woff");}.ff3{font-family:ff3;line-height:0.770000;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_71da42dc28a3132d395fa08d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.770000;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_5f7899e446eca4bc226e72b3.woff')format("woff");}.ff5{font-family:ff5;line-height:1.005000;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_5e73e47b04e615770c32e7b7.woff')format("woff");}.ff6{font-family:ff6;line-height:1.005000;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_e4d93214ece3d4a6ce84b5cb.woff')format("woff");}.ff7{font-family:ff7;line-height:1.104000;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_9fc1e265f625497569085e55.woff')format("woff");}.ff8{font-family:ff8;line-height:0.889000;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_0c403d2bf7de8903ca059476.woff')format("woff");}.ff9{font-family:ff9;line-height:1.005000;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_a3891cc05e7be2281fb9aa86.woff')format("woff");}.ffa{font-family:ffa;line-height:1.005000;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_6b8aa1fd91a7f16aa2a1c061.woff')format("woff");}.ffb{font-family:ffb;line-height:1.007000;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_0682717f00a10c6ecd0a534f.woff')format("woff");}.ffc{font-family:ffc;line-height:1.005000;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_f0e2bececb86d93a5ea68251.woff')format("woff");}.ffd{font-family:ffd;line-height:0.958000;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_779fc97936f769898d60e062.woff')format("woff");}.ffe{font-family:ffe;line-height:1.005000;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_ae659452f9aac962bc4b9845.woff')format("woff");}.fff{font-family:fff;line-height:1.184000;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_0494b0853c0287318617b02c.woff')format("woff");}.ff10{font-family:ff10;line-height:1.005000;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_e473b03753bdb2d1cad9b128.woff')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;}
.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);}
.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);}
.v3{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.584000px;}
.v2{vertical-align:14.820000px;}
.v1{vertical-align:18.000000px;}
.v4{vertical-align:19.566000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000300px;}
.ls0{letter-spacing:0.024000px;}
.ls2{letter-spacing:0.026100px;}
.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;}
}
.wsd{word-spacing:-15.600000px;}
.ws6{word-spacing:-14.820000px;}
.ws1{word-spacing:-14.040000px;}
.ws7{word-spacing:-13.500000px;}
.ws0{word-spacing:-12.480000px;}
.ws2{word-spacing:-11.700000px;}
.wsa{word-spacing:-11.250000px;}
.wsb{word-spacing:-9.360000px;}
.ws8{word-spacing:-7.870500px;}
.ws9{word-spacing:-6.558750px;}
.ws5{word-spacing:0.000000px;}
.wsc{word-spacing:5.868000px;}
.ws4{word-spacing:341.964000px;}
.ws3{word-spacing:387.564000px;}
._6{margin-left:-13.626600px;}
._14{margin-left:-12.492600px;}
._1f{margin-left:-10.638600px;}
._1c{margin-left:-2.280000px;}
._4{margin-left:-1.140000px;}
._e{width:1.512000px;}
._13{width:2.646000px;}
._20{width:3.924000px;}
._11{width:5.076000px;}
._7{width:6.801600px;}
._f{width:8.750400px;}
._12{width:9.771600px;}
._a{width:11.016000px;}
._10{width:12.312000px;}
._21{width:13.554000px;}
._b{width:14.580000px;}
._9{width:16.632000px;}
._d{width:17.712000px;}
._1a{width:18.954000px;}
._19{width:20.736000px;}
._0{width:22.524000px;}
._8{width:23.592000px;}
._28{width:24.619800px;}
._c{width:25.650000px;}
._17{width:26.784000px;}
._15{width:28.674000px;}
._1d{width:30.618000px;}
._1e{width:31.914000px;}
._16{width:33.156000px;}
._1b{width:34.182000px;}
._27{width:35.640000px;}
._26{width:36.936000px;}
._24{width:38.664000px;}
._18{width:39.798000px;}
._5{width:41.742000px;}
._23{width:43.038000px;}
._25{width:44.982000px;}
._29{width:46.494000px;}
._22{width:53.730000px;}
._2b{width:62.460000px;}
._2c{width:67.512000px;}
._1{width:72.000000px;}
._3{width:81.012000px;}
._2d{width:175.500000px;}
._2{width:229.536000px;}
._2a{width:768.615600px;}
.fc7{color:transparent;}
.fc6{color:rgb(0,68,148);}
.fc1{color:rgb(0,68,148);}
.fc8{color:rgb(136,136,136);}
.fc5{color:rgb(35,31,32);}
.fc4{color:rgb(35,31,32);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(51,51,51);}
.fsd{font-size:26.235000px;}
.fsc{font-size:31.482000px;}
.fs8{font-size:36.000000px;}
.fsa{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fs7{font-size:49.500000px;}
.fs0{font-size:54.000000px;}
.fsb{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fsf{font-size:63.000000px;}
.fs3{font-size:78.000000px;}
.fs9{font-size:81.000000px;}
.fs5{font-size:84.000000px;}
.fs1{font-size:96.000000px;}
.fse{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y48{bottom:16.725000px;}
.y38{bottom:45.135000px;}
.y49{bottom:46.140000px;}
.y3a{bottom:61.500000px;}
.y39{bottom:70.185000px;}
.yf4{bottom:90.355950px;}
.y168{bottom:91.339050px;}
.y164{bottom:91.855950px;}
.y192{bottom:100.273050px;}
.y1ab{bottom:100.522950px;}
.y167{bottom:104.839050px;}
.y83{bottom:106.167900px;}
.ybb{bottom:106.783950px;}
.yf3{bottom:106.855950px;}
.y163{bottom:108.355950px;}
.y191{bottom:111.073050px;}
.y1aa{bottom:114.322950px;}
.y166{bottom:118.339050px;}
.y1e6{bottom:119.835000px;}
.yba{bottom:120.283950px;}
.y190{bottom:121.873050px;}
.y82{bottom:122.667900px;}
.yf2{bottom:123.355950px;}
.y162{bottom:124.855950px;}
.y1a9{bottom:125.122950px;}
.y29{bottom:125.190000px;}
.y159{bottom:126.179850px;}
.y12d{bottom:126.355950px;}
.y235{bottom:129.135000px;}
.y18f{bottom:132.673050px;}
.yb9{bottom:133.783950px;}
.y1a8{bottom:135.922950px;}
.y165{bottom:136.334550px;}
.y213{bottom:137.910000px;}
.y81{bottom:139.167900px;}
.y1e5{bottom:139.335000px;}
.yf1{bottom:139.855950px;}
.y161{bottom:141.355950px;}
.y158{bottom:142.679850px;}
.y28{bottom:142.740000px;}
.y12c{bottom:142.855950px;}
.y16e{bottom:144.267000px;}
.y18e{bottom:146.473050px;}
.y1a7{bottom:146.722950px;}
.yb8{bottom:147.283950px;}
.y234{bottom:151.335000px;}
.y80{bottom:155.667900px;}
.yf0{bottom:156.355950px;}
.y18d{bottom:157.273050px;}
.y1a6{bottom:157.522950px;}
.y160{bottom:157.855950px;}
.y1e4{bottom:158.835000px;}
.y157{bottom:159.179850px;}
.y12b{bottom:159.355950px;}
.y27{bottom:160.290000px;}
.yb7{bottom:165.279450px;}
.y18c{bottom:168.073050px;}
.y1a5{bottom:171.322950px;}
.y7f{bottom:172.167900px;}
.yef{bottom:172.855950px;}
.y15f{bottom:174.355950px;}
.y212{bottom:175.110000px;}
.y156{bottom:175.679850px;}
.y12a{bottom:175.855950px;}
.y1e3{bottom:178.335000px;}
.y18b{bottom:181.873050px;}
.y1a4{bottom:182.122950px;}
.yb6{bottom:186.283950px;}
.y233{bottom:188.535000px;}
.y7e{bottom:188.667900px;}
.yee{bottom:189.355950px;}
.y15e{bottom:190.855950px;}
.y155{bottom:192.179850px;}
.y129{bottom:192.355950px;}
.y18a{bottom:192.673050px;}
.y1a3{bottom:192.922950px;}
.y211{bottom:197.310000px;}
.y1e2{bottom:197.835000px;}
.yb5{bottom:199.783950px;}
.y189{bottom:203.473050px;}
.y26{bottom:203.805000px;}
.y7d{bottom:205.167900px;}
.yed{bottom:205.855950px;}
.y1a2{bottom:206.722950px;}
.y15d{bottom:207.355950px;}
.y154{bottom:208.679850px;}
.y128{bottom:208.855950px;}
.y232{bottom:210.735000px;}
.yb4{bottom:213.283950px;}
.y188{bottom:217.273050px;}
.y1e1{bottom:217.335000px;}
.y1a1{bottom:217.522950px;}
.y210{bottom:219.510000px;}
.y7c{bottom:221.667900px;}
.yec{bottom:222.355950px;}
.y25{bottom:223.785000px;}
.y15c{bottom:223.855950px;}
.y127{bottom:225.355950px;}
.yb3{bottom:226.783950px;}
.y187{bottom:228.073050px;}
.y1a0{bottom:228.322950px;}
.y231{bottom:231.585000px;}
.y1e0{bottom:236.835000px;}
.y7b{bottom:238.167900px;}
.yeb{bottom:238.855950px;}
.y153{bottom:240.179850px;}
.yb2{bottom:240.283950px;}
.y15b{bottom:240.355950px;}
.y126{bottom:241.855950px;}
.y186{bottom:241.873050px;}
.y19f{bottom:242.122950px;}
.y24{bottom:243.765000px;}
.y230{bottom:251.085000px;}
.y185{bottom:252.673050px;}
.y19e{bottom:252.922950px;}
.yb1{bottom:253.783950px;}
.y7a{bottom:254.667900px;}
.yea{bottom:255.355950px;}
.y1df{bottom:256.335000px;}
.y152{bottom:256.679850px;}
.y20f{bottom:256.710000px;}
.y15a{bottom:256.855950px;}
.y125{bottom:258.355950px;}
.y184{bottom:263.473050px;}
.y23{bottom:263.745000px;}
.y19d{bottom:266.722950px;}
.y22f{bottom:270.585000px;}
.y79{bottom:271.167900px;}
.yb0{bottom:271.779450px;}
.ye9{bottom:271.855950px;}
.y151{bottom:273.179850px;}
.y102{bottom:273.355950px;}
.y124{bottom:274.855950px;}
.y1de{bottom:275.835000px;}
.y183{bottom:277.273050px;}
.y19c{bottom:277.522950px;}
.y20e{bottom:278.910000px;}
.y22{bottom:283.725000px;}
.y78{bottom:287.667900px;}
.y182{bottom:288.073050px;}
.y19b{bottom:288.322950px;}
.ye8{bottom:288.355950px;}
.y150{bottom:289.679850px;}
.y101{bottom:289.855950px;}
.y22e{bottom:290.085000px;}
.y123{bottom:291.355950px;}
.y1dd{bottom:295.335000px;}
.y181{bottom:298.873050px;}
.y20d{bottom:299.760000px;}
.y19a{bottom:302.122950px;}
.y21{bottom:303.705000px;}
.y77{bottom:304.167900px;}
.ye7{bottom:304.855950px;}
.y244{bottom:305.010000px;}
.y14f{bottom:306.179850px;}
.y100{bottom:306.355950px;}
.y122{bottom:307.855950px;}
.y22d{bottom:309.585000px;}
.y180{bottom:312.673050px;}
.y199{bottom:312.922950px;}
.y1dc{bottom:314.835000px;}
.yaf{bottom:318.179850px;}
.y20c{bottom:319.260000px;}
.y76{bottom:320.667900px;}
.ye6{bottom:321.355950px;}
.y14e{bottom:322.679850px;}
.yff{bottom:322.855950px;}
.y17f{bottom:323.473050px;}
.y20{bottom:323.685000px;}
.y198{bottom:323.722950px;}
.y121{bottom:324.355950px;}
.y22c{bottom:329.085000px;}
.y17e{bottom:334.273050px;}
.y1db{bottom:334.335000px;}
.yae{bottom:334.679850px;}
.y243{bottom:337.110000px;}
.y75{bottom:337.167900px;}
.y197{bottom:337.522950px;}
.ye5{bottom:337.855950px;}
.y20b{bottom:338.760000px;}
.y14d{bottom:339.179850px;}
.yfe{bottom:339.355950px;}
.y120{bottom:340.855950px;}
.y1f{bottom:343.665000px;}
.y17d{bottom:348.073050px;}
.y196{bottom:348.322950px;}
.y22b{bottom:348.585000px;}
.yad{bottom:351.179850px;}
.y74{bottom:353.667900px;}
.y1da{bottom:353.835000px;}
.ye4{bottom:354.355950px;}
.y14c{bottom:355.679850px;}
.yfd{bottom:355.855950px;}
.y242{bottom:356.610000px;}
.y11f{bottom:357.355950px;}
.y20a{bottom:358.260000px;}
.y17c{bottom:358.873050px;}
.y195{bottom:359.122950px;}
.y1e{bottom:363.645000px;}
.yac{bottom:367.679850px;}
.y22a{bottom:368.085000px;}
.y73{bottom:370.167900px;}
.ye3{bottom:370.855950px;}
.y14b{bottom:372.179850px;}
.yfc{bottom:372.355950px;}
.y17b{bottom:372.673050px;}
.y194{bottom:372.922950px;}
.y1d9{bottom:373.335000px;}
.y11e{bottom:373.855950px;}
.y241{bottom:376.110000px;}
.y209{bottom:377.760000px;}
.y17a{bottom:383.473050px;}
.y1d{bottom:383.625000px;}
.y193{bottom:383.722950px;}
.yab{bottom:384.179850px;}
.y72{bottom:386.667900px;}
.ye2{bottom:387.355950px;}
.y229{bottom:387.585000px;}
.y14a{bottom:388.679850px;}
.yfb{bottom:388.855950px;}
.y11d{bottom:390.355950px;}
.y1d8{bottom:392.835000px;}
.y208{bottom:397.260000px;}
.yaa{bottom:400.679700px;}
.y71{bottom:403.167900px;}
.y1c{bottom:403.605000px;}
.y149{bottom:405.179850px;}
.yfa{bottom:405.355950px;}
.y11c{bottom:406.855950px;}
.y240{bottom:411.960000px;}
.y1d7{bottom:412.335000px;}
.y207{bottom:416.760000px;}
.ya9{bottom:417.179700px;}
.y70{bottom:419.667900px;}
.y148{bottom:421.679850px;}
.y179{bottom:421.727100px;}
.ye1{bottom:421.855950px;}
.y11b{bottom:423.355950px;}
.y228{bottom:423.435000px;}
.y1b{bottom:423.585000px;}
.y36{bottom:423.855000px;}
.y1d6{bottom:431.835000px;}
.ya8{bottom:433.679700px;}
.y23f{bottom:434.040000px;}
.y6f{bottom:436.167900px;}
.y206{bottom:436.260000px;}
.y147{bottom:438.179850px;}
.ye0{bottom:438.355950px;}
.y11a{bottom:439.855950px;}
.y1a{bottom:443.565000px;}
.y227{bottom:445.635000px;}
.y35{bottom:447.390000px;}
.ya7{bottom:450.179700px;}
.y1d5{bottom:451.335000px;}
.y6e{bottom:452.667900px;}
.y146{bottom:454.679850px;}
.ydf{bottom:454.855950px;}
.y205{bottom:455.760000px;}
.y119{bottom:456.355950px;}
.y19{bottom:463.545000px;}
.ya6{bottom:466.679700px;}
.y226{bottom:467.835000px;}
.y1d4{bottom:470.835000px;}
.y145{bottom:471.179850px;}
.yde{bottom:471.355950px;}
.y118{bottom:472.855950px;}
.y204{bottom:475.260000px;}
.y34{bottom:477.450000px;}
.ya5{bottom:483.179700px;}
.y18{bottom:483.525000px;}
.y6d{bottom:487.167900px;}
.y144{bottom:487.679850px;}
.ydd{bottom:487.855950px;}
.y23e{bottom:488.340000px;}
.y117{bottom:489.355950px;}
.y225{bottom:490.035000px;}
.y1d3{bottom:490.335000px;}
.y203{bottom:494.760000px;}
.ya4{bottom:499.679700px;}
.y33{bottom:500.985000px;}
.y17{bottom:503.505000px;}
.y6c{bottom:503.667900px;}
.y143{bottom:504.179850px;}
.ydc{bottom:504.355950px;}
.y116{bottom:505.855950px;}
.y1d2{bottom:509.835000px;}
.y202{bottom:514.260000px;}
.ya3{bottom:516.179700px;}
.y6b{bottom:520.167900px;}
.y142{bottom:520.679850px;}
.ydb{bottom:520.855950px;}
.y23d{bottom:522.105000px;}
.y115{bottom:522.355950px;}
.y16{bottom:523.485000px;}
.y1d1{bottom:529.335000px;}
.ya2{bottom:532.679700px;}
.y32{bottom:532.815000px;}
.y201{bottom:533.760000px;}
.y6a{bottom:536.667900px;}
.y141{bottom:537.179850px;}
.yda{bottom:537.355950px;}
.y114{bottom:538.855950px;}
.y178{bottom:540.343050px;}
.y15{bottom:543.465000px;}
.y224{bottom:544.890000px;}
.y1d0{bottom:548.835000px;}
.ya1{bottom:549.179700px;}
.y69{bottom:553.167900px;}
.y200{bottom:553.260000px;}
.y140{bottom:553.679850px;}
.y177{bottom:553.843050px;}
.yd9{bottom:553.855950px;}
.y113{bottom:555.355950px;}
.y31{bottom:556.350000px;}
.y14{bottom:563.445000px;}
.y223{bottom:564.390000px;}
.ya0{bottom:565.679700px;}
.y176{bottom:567.343050px;}
.y1cf{bottom:568.335000px;}
.y68{bottom:569.667900px;}
.y13f{bottom:570.179850px;}
.yd8{bottom:570.355950px;}
.y112{bottom:571.855950px;}
.y1ff{bottom:572.760000px;}
.y30{bottom:579.885000px;}
.y175{bottom:580.843050px;}
.y9f{bottom:582.179700px;}
.y13{bottom:583.425000px;}
.y222{bottom:583.890000px;}
.y67{bottom:586.167900px;}
.y46{bottom:586.590000px;}
.y13e{bottom:586.679850px;}
.yd7{bottom:586.855950px;}
.y1ce{bottom:587.835000px;}
.y111{bottom:588.355950px;}
.y1fe{bottom:592.260000px;}
.y9e{bottom:598.679700px;}
.y174{bottom:598.838550px;}
.y173{bottom:600.355950px;}
.y23c{bottom:601.410000px;}
.y66{bottom:602.667900px;}
.y13d{bottom:603.179850px;}
.yd6{bottom:603.355950px;}
.y12{bottom:603.405000px;}
.y2f{bottom:603.420000px;}
.y110{bottom:604.855950px;}
.y45{bottom:606.615000px;}
.y1cd{bottom:607.335000px;}
.y1fd{bottom:611.760000px;}
.y9d{bottom:615.179700px;}
.y172{bottom:616.855950px;}
.y65{bottom:619.167900px;}
.y13c{bottom:619.679850px;}
.yd5{bottom:619.855950px;}
.y44{bottom:621.240000px;}
.y10f{bottom:621.355950px;}
.y11{bottom:623.385000px;}
.y23b{bottom:623.610000px;}
.y221{bottom:624.735000px;}
.y1cc{bottom:626.835000px;}
.y1fc{bottom:631.260000px;}
.y9c{bottom:631.679700px;}
.y64{bottom:635.667900px;}
.y43{bottom:635.865000px;}
.y13b{bottom:636.179850px;}
.yd4{bottom:636.355950px;}
.y10e{bottom:637.855950px;}
.y2e{bottom:642.855000px;}
.y10{bottom:643.365000px;}
.y1cb{bottom:646.335000px;}
.y1fb{bottom:650.760000px;}
.y63{bottom:652.167900px;}
.y13a{bottom:652.679850px;}
.yd3{bottom:652.855950px;}
.y10d{bottom:654.355950px;}
.y42{bottom:655.890000px;}
.y220{bottom:656.565000px;}
.y2d{bottom:659.610000px;}
.y23a{bottom:660.810000px;}
.yf{bottom:663.345000px;}
.y1ca{bottom:665.835000px;}
.y9b{bottom:666.179700px;}
.y62{bottom:668.667900px;}
.y139{bottom:669.179850px;}
.yd2{bottom:669.355950px;}
.y1fa{bottom:670.260000px;}
.y41{bottom:670.515000px;}
.y10c{bottom:670.855950px;}
.ye{bottom:682.110000px;}
.y9a{bottom:682.679700px;}
.y239{bottom:683.010000px;}
.y61{bottom:685.167900px;}
.yd1{bottom:685.855950px;}
.y10b{bottom:687.355950px;}
.y1f9{bottom:689.760000px;}
.y40{bottom:690.540000px;}
.y99{bottom:699.179700px;}
.yd{bottom:699.660000px;}
.y60{bottom:701.667900px;}
.y1c9{bottom:701.685000px;}
.yd0{bottom:702.355950px;}
.y2c{bottom:702.660000px;}
.y138{bottom:703.679850px;}
.y10a{bottom:703.855950px;}
.y3f{bottom:705.165000px;}
.y21f{bottom:705.210000px;}
.y1f8{bottom:709.260000px;}
.y98{bottom:715.679700px;}
.y5f{bottom:718.167900px;}
.ycf{bottom:718.855950px;}
.y137{bottom:720.179850px;}
.y109{bottom:720.355950px;}
.y1c8{bottom:725.040000px;}
.y3e{bottom:725.190000px;}
.y21e{bottom:727.410000px;}
.y1f7{bottom:728.760000px;}
.y97{bottom:732.179700px;}
.yb{bottom:733.950000px;}
.y5e{bottom:734.667900px;}
.yce{bottom:735.355950px;}
.y136{bottom:736.679850px;}
.y108{bottom:736.855950px;}
.y2b{bottom:737.445000px;}
.y238{bottom:742.410000px;}
.y3d{bottom:745.215000px;}
.y1f6{bottom:748.260000px;}
.y96{bottom:748.679700px;}
.ya{bottom:748.950000px;}
.y5d{bottom:751.167900px;}
.ycd{bottom:751.855950px;}
.y135{bottom:753.179850px;}
.y107{bottom:753.355950px;}
.y21d{bottom:764.610000px;}
.y95{bottom:765.179700px;}
.y3c{bottom:765.240000px;}
.y5c{bottom:767.667900px;}
.y1f5{bottom:767.760000px;}
.ycc{bottom:768.355950px;}
.y9{bottom:769.350000px;}
.y134{bottom:769.679850px;}
.y106{bottom:769.855950px;}
.y2a{bottom:779.040000px;}
.y237{bottom:779.610000px;}
.y1c7{bottom:779.895000px;}
.y94{bottom:781.679850px;}
.yc{bottom:781.815000px;}
.y5b{bottom:784.167900px;}
.y8{bottom:784.350000px;}
.ycb{bottom:784.855950px;}
.y133{bottom:786.179850px;}
.y105{bottom:786.355950px;}
.y1f4{bottom:787.260000px;}
.y93{bottom:798.179850px;}
.y1c6{bottom:799.395000px;}
.y5a{bottom:800.667900px;}
.yca{bottom:801.355950px;}
.y21c{bottom:801.810000px;}
.y132{bottom:802.679850px;}
.y104{bottom:802.855950px;}
.y1f3{bottom:806.760000px;}
.y92{bottom:814.679850px;}
.y59{bottom:817.167900px;}
.yf9{bottom:817.855950px;}
.y1c5{bottom:818.895000px;}
.y131{bottom:819.179850px;}
.y103{bottom:819.355950px;}
.y236{bottom:824.010000px;}
.y1f2{bottom:826.260000px;}
.y4a{bottom:827.400000px;}
.y91{bottom:831.179850px;}
.y58{bottom:833.667900px;}
.yf8{bottom:834.355950px;}
.y130{bottom:835.679850px;}
.yc9{bottom:835.855950px;}
.y21b{bottom:839.010000px;}
.y7{bottom:839.175000px;}
.y1f1{bottom:845.760000px;}
.y90{bottom:847.679850px;}
.y57{bottom:850.167900px;}
.yf7{bottom:850.855950px;}
.y12f{bottom:852.179850px;}
.yc8{bottom:852.355950px;}
.y1c4{bottom:859.740000px;}
.y21a{bottom:861.210000px;}
.y8f{bottom:864.179850px;}
.y1f0{bottom:865.260000px;}
.y56{bottom:866.667900px;}
.yf6{bottom:867.355950px;}
.y12e{bottom:868.679850px;}
.yc7{bottom:868.855950px;}
.y6{bottom:869.730000px;}
.y8e{bottom:880.679850px;}
.y55{bottom:883.167900px;}
.y219{bottom:883.410000px;}
.yf5{bottom:883.855950px;}
.y1ef{bottom:884.760000px;}
.yc6{bottom:885.355950px;}
.y1c3{bottom:891.570000px;}
.y8d{bottom:897.179850px;}
.y5{bottom:899.550000px;}
.y54{bottom:899.667900px;}
.y16d{bottom:900.355950px;}
.yc5{bottom:901.855950px;}
.y1ee{bottom:904.260000px;}
.y8c{bottom:913.679850px;}
.y53{bottom:916.167900px;}
.y16c{bottom:916.855950px;}
.y1b7{bottom:917.491950px;}
.yc4{bottom:918.355950px;}
.y1bf{bottom:918.991950px;}
.y218{bottom:920.610000px;}
.y1ed{bottom:923.760000px;}
.y4{bottom:926.400000px;}
.y1be{bottom:929.791950px;}
.y8b{bottom:930.179850px;}
.y1b6{bottom:931.291950px;}
.y47{bottom:931.875000px;}
.y52{bottom:932.667900px;}
.y16b{bottom:933.355950px;}
.yc3{bottom:934.855950px;}
.y1bd{bottom:940.591950px;}
.y1c2{bottom:941.145000px;}
.y1b5{bottom:942.091950px;}
.y217{bottom:942.810000px;}
.y1ec{bottom:943.260000px;}
.y8a{bottom:946.679850px;}
.y51{bottom:949.167900px;}
.y16a{bottom:949.855950px;}
.yc2{bottom:951.355950px;}
.y1bc{bottom:951.391950px;}
.y1b4{bottom:952.891950px;}
.y1eb{bottom:962.760000px;}
.y89{bottom:963.179850px;}
.y50{bottom:965.667900px;}
.y169{bottom:966.355950px;}
.y1b3{bottom:966.691950px;}
.yc1{bottom:967.855950px;}
.y3{bottom:973.470000px;}
.y1b2{bottom:977.491950px;}
.y88{bottom:979.679850px;}
.y216{bottom:980.010000px;}
.y4f{bottom:982.167900px;}
.y1ea{bottom:982.260000px;}
.yc0{bottom:984.355950px;}
.y1bb{bottom:988.291950px;}
.y1b1{bottom:991.291950px;}
.y87{bottom:996.179850px;}
.y4e{bottom:998.667900px;}
.ybf{bottom:1000.855950px;}
.y1e9{bottom:1001.760000px;}
.y215{bottom:1002.210000px;}
.y1ba{bottom:1003.591950px;}
.y1b0{bottom:1005.091950px;}
.y1c1{bottom:1006.350000px;}
.y86{bottom:1012.679850px;}
.y1b9{bottom:1014.391950px;}
.y4d{bottom:1015.167900px;}
.y1af{bottom:1015.891950px;}
.y171{bottom:1017.355800px;}
.ybe{bottom:1017.355950px;}
.y2{bottom:1020.540000px;}
.y1e8{bottom:1021.260000px;}
.y1b8{bottom:1025.191950px;}
.y85{bottom:1029.179850px;}
.y1ae{bottom:1029.691950px;}
.y4c{bottom:1031.667900px;}
.y170{bottom:1033.855800px;}
.ybd{bottom:1033.855950px;}
.y214{bottom:1039.410000px;}
.y1ad{bottom:1040.491950px;}
.y1e7{bottom:1040.760000px;}
.y84{bottom:1045.679850px;}
.y4b{bottom:1048.167900px;}
.y16f{bottom:1050.355800px;}
.ybc{bottom:1050.355950px;}
.y1ac{bottom:1051.291950px;}
.y1c0{bottom:1052.055000px;}
.y1{bottom:1055.715000px;}
.y37{bottom:1080.000000px;}
.y3b{bottom:1123.500000px;}
.h16{height:27.540000px;}
.h15{height:27.576000px;}
.h11{height:27.893052px;}
.hc{height:32.130000px;}
.h17{height:33.984000px;}
.hd{height:34.470000px;}
.h14{height:36.720000px;}
.h5{height:36.768000px;}
.h8{height:37.917000px;}
.h12{height:39.870000px;}
.h1{height:41.364000px;}
.h9{height:42.396000px;}
.hf{height:43.605000px;}
.h1c{height:45.900000px;}
.h3{height:45.960000px;}
.h1e{height:46.728000px;}
.h13{height:47.459052px;}
.h10{height:47.844000px;}
.h19{height:48.195000px;}
.h1a{height:50.976000px;}
.h7{height:52.470000px;}
.h1b{height:56.640000px;}
.h4{height:59.748000px;}
.hb{height:62.046000px;}
.h6{height:64.344000px;}
.h2{height:73.536000px;}
.h1d{height:76.464000px;}
.h18{height:82.620000px;}
.he{height:93.225000px;}
.ha{height:108.000000px;}
.h0{height:1188.000000px;}
.w2{width:447.120000px;}
.w1{width:745.200000px;}
.w0{width:918.000000px;}
.w3{width:918.424500px;}
.w4{width:918.750000px;}
.x0{left:0.000000px;}
.xe{left:85.039350px;}
.x1{left:86.400000px;}
.xc{left:90.000000px;}
.xd{left:93.900000px;}
.xb{left:97.755000px;}
.x14{left:98.775000px;}
.x16{left:108.900000px;}
.x11{left:110.637000px;}
.x2{left:118.800000px;}
.x15{left:137.025000px;}
.x8{left:370.650000px;}
.xf{left:471.968550px;}
.x12{left:497.480550px;}
.x10{left:506.468400px;}
.xa{left:526.410000px;}
.x3{left:550.095000px;}
.x5{left:551.715000px;}
.x7{left:554.895000px;}
.x6{left:568.095000px;}
.x4{left:667.605000px;}
.x13{left:766.680000px;}
.x9{left:772.680000px;}
@media print{
.v3{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.408000pt;}
.v2{vertical-align:13.173333pt;}
.v1{vertical-align:16.000000pt;}
.v4{vertical-align:17.392000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000267pt;}
.ls0{letter-spacing:0.021333pt;}
.ls2{letter-spacing:0.023200pt;}
.wsd{word-spacing:-13.866667pt;}
.ws6{word-spacing:-13.173333pt;}
.ws1{word-spacing:-12.480000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws0{word-spacing:-11.093333pt;}
.ws2{word-spacing:-10.400000pt;}
.wsa{word-spacing:-10.000000pt;}
.wsb{word-spacing:-8.320000pt;}
.ws8{word-spacing:-6.996000pt;}
.ws9{word-spacing:-5.830000pt;}
.ws5{word-spacing:0.000000pt;}
.wsc{word-spacing:5.216000pt;}
.ws4{word-spacing:303.968000pt;}
.ws3{word-spacing:344.501333pt;}
._6{margin-left:-12.112533pt;}
._14{margin-left:-11.104533pt;}
._1f{margin-left:-9.456533pt;}
._1c{margin-left:-2.026667pt;}
._4{margin-left:-1.013333pt;}
._e{width:1.344000pt;}
._13{width:2.352000pt;}
._20{width:3.488000pt;}
._11{width:4.512000pt;}
._7{width:6.045867pt;}
._f{width:7.778133pt;}
._12{width:8.685867pt;}
._a{width:9.792000pt;}
._10{width:10.944000pt;}
._21{width:12.048000pt;}
._b{width:12.960000pt;}
._9{width:14.784000pt;}
._d{width:15.744000pt;}
._1a{width:16.848000pt;}
._19{width:18.432000pt;}
._0{width:20.021333pt;}
._8{width:20.970667pt;}
._28{width:21.884267pt;}
._c{width:22.800000pt;}
._17{width:23.808000pt;}
._15{width:25.488000pt;}
._1d{width:27.216000pt;}
._1e{width:28.368000pt;}
._16{width:29.472000pt;}
._1b{width:30.384000pt;}
._27{width:31.680000pt;}
._26{width:32.832000pt;}
._24{width:34.368000pt;}
._18{width:35.376000pt;}
._5{width:37.104000pt;}
._23{width:38.256000pt;}
._25{width:39.984000pt;}
._29{width:41.328000pt;}
._22{width:47.760000pt;}
._2b{width:55.520000pt;}
._2c{width:60.010667pt;}
._1{width:64.000000pt;}
._3{width:72.010667pt;}
._2d{width:156.000000pt;}
._2{width:204.032000pt;}
._2a{width:683.213867pt;}
.fsd{font-size:23.320000pt;}
.fsc{font-size:27.984000pt;}
.fs8{font-size:32.000000pt;}
.fsa{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fs7{font-size:44.000000pt;}
.fs0{font-size:48.000000pt;}
.fsb{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fsf{font-size:56.000000pt;}
.fs3{font-size:69.333333pt;}
.fs9{font-size:72.000000pt;}
.fs5{font-size:74.666667pt;}
.fs1{font-size:85.333333pt;}
.fse{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y48{bottom:14.866667pt;}
.y38{bottom:40.120000pt;}
.y49{bottom:41.013333pt;}
.y3a{bottom:54.666667pt;}
.y39{bottom:62.386667pt;}
.yf4{bottom:80.316400pt;}
.y168{bottom:81.190267pt;}
.y164{bottom:81.649733pt;}
.y192{bottom:89.131600pt;}
.y1ab{bottom:89.353733pt;}
.y167{bottom:93.190267pt;}
.y83{bottom:94.371467pt;}
.ybb{bottom:94.919067pt;}
.yf3{bottom:94.983067pt;}
.y163{bottom:96.316400pt;}
.y191{bottom:98.731600pt;}
.y1aa{bottom:101.620400pt;}
.y166{bottom:105.190267pt;}
.y1e6{bottom:106.520000pt;}
.yba{bottom:106.919067pt;}
.y190{bottom:108.331600pt;}
.y82{bottom:109.038133pt;}
.yf2{bottom:109.649733pt;}
.y162{bottom:110.983067pt;}
.y1a9{bottom:111.220400pt;}
.y29{bottom:111.280000pt;}
.y159{bottom:112.159867pt;}
.y12d{bottom:112.316400pt;}
.y235{bottom:114.786667pt;}
.y18f{bottom:117.931600pt;}
.yb9{bottom:118.919067pt;}
.y1a8{bottom:120.820400pt;}
.y165{bottom:121.186267pt;}
.y213{bottom:122.586667pt;}
.y81{bottom:123.704800pt;}
.y1e5{bottom:123.853333pt;}
.yf1{bottom:124.316400pt;}
.y161{bottom:125.649733pt;}
.y158{bottom:126.826533pt;}
.y28{bottom:126.880000pt;}
.y12c{bottom:126.983067pt;}
.y16e{bottom:128.237333pt;}
.y18e{bottom:130.198267pt;}
.y1a7{bottom:130.420400pt;}
.yb8{bottom:130.919067pt;}
.y234{bottom:134.520000pt;}
.y80{bottom:138.371467pt;}
.yf0{bottom:138.983067pt;}
.y18d{bottom:139.798267pt;}
.y1a6{bottom:140.020400pt;}
.y160{bottom:140.316400pt;}
.y1e4{bottom:141.186667pt;}
.y157{bottom:141.493200pt;}
.y12b{bottom:141.649733pt;}
.y27{bottom:142.480000pt;}
.yb7{bottom:146.915067pt;}
.y18c{bottom:149.398267pt;}
.y1a5{bottom:152.287067pt;}
.y7f{bottom:153.038133pt;}
.yef{bottom:153.649733pt;}
.y15f{bottom:154.983067pt;}
.y212{bottom:155.653333pt;}
.y156{bottom:156.159867pt;}
.y12a{bottom:156.316400pt;}
.y1e3{bottom:158.520000pt;}
.y18b{bottom:161.664933pt;}
.y1a4{bottom:161.887067pt;}
.yb6{bottom:165.585733pt;}
.y233{bottom:167.586667pt;}
.y7e{bottom:167.704800pt;}
.yee{bottom:168.316400pt;}
.y15e{bottom:169.649733pt;}
.y155{bottom:170.826533pt;}
.y129{bottom:170.983067pt;}
.y18a{bottom:171.264933pt;}
.y1a3{bottom:171.487067pt;}
.y211{bottom:175.386667pt;}
.y1e2{bottom:175.853333pt;}
.yb5{bottom:177.585733pt;}
.y189{bottom:180.864933pt;}
.y26{bottom:181.160000pt;}
.y7d{bottom:182.371467pt;}
.yed{bottom:182.983067pt;}
.y1a2{bottom:183.753733pt;}
.y15d{bottom:184.316400pt;}
.y154{bottom:185.493200pt;}
.y128{bottom:185.649733pt;}
.y232{bottom:187.320000pt;}
.yb4{bottom:189.585733pt;}
.y188{bottom:193.131600pt;}
.y1e1{bottom:193.186667pt;}
.y1a1{bottom:193.353733pt;}
.y210{bottom:195.120000pt;}
.y7c{bottom:197.038133pt;}
.yec{bottom:197.649733pt;}
.y25{bottom:198.920000pt;}
.y15c{bottom:198.983067pt;}
.y127{bottom:200.316400pt;}
.yb3{bottom:201.585733pt;}
.y187{bottom:202.731600pt;}
.y1a0{bottom:202.953733pt;}
.y231{bottom:205.853333pt;}
.y1e0{bottom:210.520000pt;}
.y7b{bottom:211.704800pt;}
.yeb{bottom:212.316400pt;}
.y153{bottom:213.493200pt;}
.yb2{bottom:213.585733pt;}
.y15b{bottom:213.649733pt;}
.y126{bottom:214.983067pt;}
.y186{bottom:214.998267pt;}
.y19f{bottom:215.220400pt;}
.y24{bottom:216.680000pt;}
.y230{bottom:223.186667pt;}
.y185{bottom:224.598267pt;}
.y19e{bottom:224.820400pt;}
.yb1{bottom:225.585733pt;}
.y7a{bottom:226.371467pt;}
.yea{bottom:226.983067pt;}
.y1df{bottom:227.853333pt;}
.y152{bottom:228.159867pt;}
.y20f{bottom:228.186667pt;}
.y15a{bottom:228.316400pt;}
.y125{bottom:229.649733pt;}
.y184{bottom:234.198267pt;}
.y23{bottom:234.440000pt;}
.y19d{bottom:237.087067pt;}
.y22f{bottom:240.520000pt;}
.y79{bottom:241.038133pt;}
.yb0{bottom:241.581733pt;}
.ye9{bottom:241.649733pt;}
.y151{bottom:242.826533pt;}
.y102{bottom:242.983067pt;}
.y124{bottom:244.316400pt;}
.y1de{bottom:245.186667pt;}
.y183{bottom:246.464933pt;}
.y19c{bottom:246.687067pt;}
.y20e{bottom:247.920000pt;}
.y22{bottom:252.200000pt;}
.y78{bottom:255.704800pt;}
.y182{bottom:256.064933pt;}
.y19b{bottom:256.287067pt;}
.ye8{bottom:256.316400pt;}
.y150{bottom:257.493200pt;}
.y101{bottom:257.649733pt;}
.y22e{bottom:257.853333pt;}
.y123{bottom:258.983067pt;}
.y1dd{bottom:262.520000pt;}
.y181{bottom:265.664933pt;}
.y20d{bottom:266.453333pt;}
.y19a{bottom:268.553733pt;}
.y21{bottom:269.960000pt;}
.y77{bottom:270.371467pt;}
.ye7{bottom:270.983067pt;}
.y244{bottom:271.120000pt;}
.y14f{bottom:272.159867pt;}
.y100{bottom:272.316400pt;}
.y122{bottom:273.649733pt;}
.y22d{bottom:275.186667pt;}
.y180{bottom:277.931600pt;}
.y199{bottom:278.153733pt;}
.y1dc{bottom:279.853333pt;}
.yaf{bottom:282.826533pt;}
.y20c{bottom:283.786667pt;}
.y76{bottom:285.038133pt;}
.ye6{bottom:285.649733pt;}
.y14e{bottom:286.826533pt;}
.yff{bottom:286.983067pt;}
.y17f{bottom:287.531600pt;}
.y20{bottom:287.720000pt;}
.y198{bottom:287.753733pt;}
.y121{bottom:288.316400pt;}
.y22c{bottom:292.520000pt;}
.y17e{bottom:297.131600pt;}
.y1db{bottom:297.186667pt;}
.yae{bottom:297.493200pt;}
.y243{bottom:299.653333pt;}
.y75{bottom:299.704800pt;}
.y197{bottom:300.020400pt;}
.ye5{bottom:300.316400pt;}
.y20b{bottom:301.120000pt;}
.y14d{bottom:301.493200pt;}
.yfe{bottom:301.649733pt;}
.y120{bottom:302.983067pt;}
.y1f{bottom:305.480000pt;}
.y17d{bottom:309.398267pt;}
.y196{bottom:309.620400pt;}
.y22b{bottom:309.853333pt;}
.yad{bottom:312.159867pt;}
.y74{bottom:314.371467pt;}
.y1da{bottom:314.520000pt;}
.ye4{bottom:314.983067pt;}
.y14c{bottom:316.159867pt;}
.yfd{bottom:316.316400pt;}
.y242{bottom:316.986667pt;}
.y11f{bottom:317.649733pt;}
.y20a{bottom:318.453333pt;}
.y17c{bottom:318.998267pt;}
.y195{bottom:319.220400pt;}
.y1e{bottom:323.240000pt;}
.yac{bottom:326.826533pt;}
.y22a{bottom:327.186667pt;}
.y73{bottom:329.038133pt;}
.ye3{bottom:329.649733pt;}
.y14b{bottom:330.826533pt;}
.yfc{bottom:330.983067pt;}
.y17b{bottom:331.264933pt;}
.y194{bottom:331.487067pt;}
.y1d9{bottom:331.853333pt;}
.y11e{bottom:332.316400pt;}
.y241{bottom:334.320000pt;}
.y209{bottom:335.786667pt;}
.y17a{bottom:340.864933pt;}
.y1d{bottom:341.000000pt;}
.y193{bottom:341.087067pt;}
.yab{bottom:341.493200pt;}
.y72{bottom:343.704800pt;}
.ye2{bottom:344.316400pt;}
.y229{bottom:344.520000pt;}
.y14a{bottom:345.493200pt;}
.yfb{bottom:345.649733pt;}
.y11d{bottom:346.983067pt;}
.y1d8{bottom:349.186667pt;}
.y208{bottom:353.120000pt;}
.yaa{bottom:356.159733pt;}
.y71{bottom:358.371467pt;}
.y1c{bottom:358.760000pt;}
.y149{bottom:360.159867pt;}
.yfa{bottom:360.316400pt;}
.y11c{bottom:361.649733pt;}
.y240{bottom:366.186667pt;}
.y1d7{bottom:366.520000pt;}
.y207{bottom:370.453333pt;}
.ya9{bottom:370.826400pt;}
.y70{bottom:373.038133pt;}
.y148{bottom:374.826533pt;}
.y179{bottom:374.868533pt;}
.ye1{bottom:374.983067pt;}
.y11b{bottom:376.316400pt;}
.y228{bottom:376.386667pt;}
.y1b{bottom:376.520000pt;}
.y36{bottom:376.760000pt;}
.y1d6{bottom:383.853333pt;}
.ya8{bottom:385.493067pt;}
.y23f{bottom:385.813333pt;}
.y6f{bottom:387.704800pt;}
.y206{bottom:387.786667pt;}
.y147{bottom:389.493200pt;}
.ye0{bottom:389.649733pt;}
.y11a{bottom:390.983067pt;}
.y1a{bottom:394.280000pt;}
.y227{bottom:396.120000pt;}
.y35{bottom:397.680000pt;}
.ya7{bottom:400.159733pt;}
.y1d5{bottom:401.186667pt;}
.y6e{bottom:402.371467pt;}
.y146{bottom:404.159867pt;}
.ydf{bottom:404.316400pt;}
.y205{bottom:405.120000pt;}
.y119{bottom:405.649733pt;}
.y19{bottom:412.040000pt;}
.ya6{bottom:414.826400pt;}
.y226{bottom:415.853333pt;}
.y1d4{bottom:418.520000pt;}
.y145{bottom:418.826533pt;}
.yde{bottom:418.983067pt;}
.y118{bottom:420.316400pt;}
.y204{bottom:422.453333pt;}
.y34{bottom:424.400000pt;}
.ya5{bottom:429.493067pt;}
.y18{bottom:429.800000pt;}
.y6d{bottom:433.038133pt;}
.y144{bottom:433.493200pt;}
.ydd{bottom:433.649733pt;}
.y23e{bottom:434.080000pt;}
.y117{bottom:434.983067pt;}
.y225{bottom:435.586667pt;}
.y1d3{bottom:435.853333pt;}
.y203{bottom:439.786667pt;}
.ya4{bottom:444.159733pt;}
.y33{bottom:445.320000pt;}
.y17{bottom:447.560000pt;}
.y6c{bottom:447.704800pt;}
.y143{bottom:448.159867pt;}
.ydc{bottom:448.316400pt;}
.y116{bottom:449.649733pt;}
.y1d2{bottom:453.186667pt;}
.y202{bottom:457.120000pt;}
.ya3{bottom:458.826400pt;}
.y6b{bottom:462.371467pt;}
.y142{bottom:462.826533pt;}
.ydb{bottom:462.983067pt;}
.y23d{bottom:464.093333pt;}
.y115{bottom:464.316400pt;}
.y16{bottom:465.320000pt;}
.y1d1{bottom:470.520000pt;}
.ya2{bottom:473.493067pt;}
.y32{bottom:473.613333pt;}
.y201{bottom:474.453333pt;}
.y6a{bottom:477.038133pt;}
.y141{bottom:477.493200pt;}
.yda{bottom:477.649733pt;}
.y114{bottom:478.983067pt;}
.y178{bottom:480.304933pt;}
.y15{bottom:483.080000pt;}
.y224{bottom:484.346667pt;}
.y1d0{bottom:487.853333pt;}
.ya1{bottom:488.159733pt;}
.y69{bottom:491.704800pt;}
.y200{bottom:491.786667pt;}
.y140{bottom:492.159867pt;}
.y177{bottom:492.304933pt;}
.yd9{bottom:492.316400pt;}
.y113{bottom:493.649733pt;}
.y31{bottom:494.533333pt;}
.y14{bottom:500.840000pt;}
.y223{bottom:501.680000pt;}
.ya0{bottom:502.826400pt;}
.y176{bottom:504.304933pt;}
.y1cf{bottom:505.186667pt;}
.y68{bottom:506.371467pt;}
.y13f{bottom:506.826533pt;}
.yd8{bottom:506.983067pt;}
.y112{bottom:508.316400pt;}
.y1ff{bottom:509.120000pt;}
.y30{bottom:515.453333pt;}
.y175{bottom:516.304933pt;}
.y9f{bottom:517.493067pt;}
.y13{bottom:518.600000pt;}
.y222{bottom:519.013333pt;}
.y67{bottom:521.038133pt;}
.y46{bottom:521.413333pt;}
.y13e{bottom:521.493200pt;}
.yd7{bottom:521.649733pt;}
.y1ce{bottom:522.520000pt;}
.y111{bottom:522.983067pt;}
.y1fe{bottom:526.453333pt;}
.y9e{bottom:532.159733pt;}
.y174{bottom:532.300933pt;}
.y173{bottom:533.649733pt;}
.y23c{bottom:534.586667pt;}
.y66{bottom:535.704800pt;}
.y13d{bottom:536.159867pt;}
.yd6{bottom:536.316400pt;}
.y12{bottom:536.360000pt;}
.y2f{bottom:536.373333pt;}
.y110{bottom:537.649733pt;}
.y45{bottom:539.213333pt;}
.y1cd{bottom:539.853333pt;}
.y1fd{bottom:543.786667pt;}
.y9d{bottom:546.826400pt;}
.y172{bottom:548.316400pt;}
.y65{bottom:550.371467pt;}
.y13c{bottom:550.826533pt;}
.yd5{bottom:550.983067pt;}
.y44{bottom:552.213333pt;}
.y10f{bottom:552.316400pt;}
.y11{bottom:554.120000pt;}
.y23b{bottom:554.320000pt;}
.y221{bottom:555.320000pt;}
.y1cc{bottom:557.186667pt;}
.y1fc{bottom:561.120000pt;}
.y9c{bottom:561.493067pt;}
.y64{bottom:565.038133pt;}
.y43{bottom:565.213333pt;}
.y13b{bottom:565.493200pt;}
.yd4{bottom:565.649733pt;}
.y10e{bottom:566.983067pt;}
.y2e{bottom:571.426667pt;}
.y10{bottom:571.880000pt;}
.y1cb{bottom:574.520000pt;}
.y1fb{bottom:578.453333pt;}
.y63{bottom:579.704800pt;}
.y13a{bottom:580.159867pt;}
.yd3{bottom:580.316400pt;}
.y10d{bottom:581.649733pt;}
.y42{bottom:583.013333pt;}
.y220{bottom:583.613333pt;}
.y2d{bottom:586.320000pt;}
.y23a{bottom:587.386667pt;}
.yf{bottom:589.640000pt;}
.y1ca{bottom:591.853333pt;}
.y9b{bottom:592.159733pt;}
.y62{bottom:594.371467pt;}
.y139{bottom:594.826533pt;}
.yd2{bottom:594.983067pt;}
.y1fa{bottom:595.786667pt;}
.y41{bottom:596.013333pt;}
.y10c{bottom:596.316400pt;}
.ye{bottom:606.320000pt;}
.y9a{bottom:606.826400pt;}
.y239{bottom:607.120000pt;}
.y61{bottom:609.038133pt;}
.yd1{bottom:609.649733pt;}
.y10b{bottom:610.983067pt;}
.y1f9{bottom:613.120000pt;}
.y40{bottom:613.813333pt;}
.y99{bottom:621.493067pt;}
.yd{bottom:621.920000pt;}
.y60{bottom:623.704800pt;}
.y1c9{bottom:623.720000pt;}
.yd0{bottom:624.316400pt;}
.y2c{bottom:624.586667pt;}
.y138{bottom:625.493200pt;}
.y10a{bottom:625.649733pt;}
.y3f{bottom:626.813333pt;}
.y21f{bottom:626.853333pt;}
.y1f8{bottom:630.453333pt;}
.y98{bottom:636.159733pt;}
.y5f{bottom:638.371467pt;}
.ycf{bottom:638.983067pt;}
.y137{bottom:640.159867pt;}
.y109{bottom:640.316400pt;}
.y1c8{bottom:644.480000pt;}
.y3e{bottom:644.613333pt;}
.y21e{bottom:646.586667pt;}
.y1f7{bottom:647.786667pt;}
.y97{bottom:650.826400pt;}
.yb{bottom:652.400000pt;}
.y5e{bottom:653.038133pt;}
.yce{bottom:653.649733pt;}
.y136{bottom:654.826533pt;}
.y108{bottom:654.983067pt;}
.y2b{bottom:655.506667pt;}
.y238{bottom:659.920000pt;}
.y3d{bottom:662.413333pt;}
.y1f6{bottom:665.120000pt;}
.y96{bottom:665.493067pt;}
.ya{bottom:665.733333pt;}
.y5d{bottom:667.704800pt;}
.ycd{bottom:668.316400pt;}
.y135{bottom:669.493200pt;}
.y107{bottom:669.649733pt;}
.y21d{bottom:679.653333pt;}
.y95{bottom:680.159733pt;}
.y3c{bottom:680.213333pt;}
.y5c{bottom:682.371467pt;}
.y1f5{bottom:682.453333pt;}
.ycc{bottom:682.983067pt;}
.y9{bottom:683.866667pt;}
.y134{bottom:684.159867pt;}
.y106{bottom:684.316400pt;}
.y2a{bottom:692.480000pt;}
.y237{bottom:692.986667pt;}
.y1c7{bottom:693.240000pt;}
.y94{bottom:694.826533pt;}
.yc{bottom:694.946667pt;}
.y5b{bottom:697.038133pt;}
.y8{bottom:697.200000pt;}
.ycb{bottom:697.649733pt;}
.y133{bottom:698.826533pt;}
.y105{bottom:698.983067pt;}
.y1f4{bottom:699.786667pt;}
.y93{bottom:709.493200pt;}
.y1c6{bottom:710.573333pt;}
.y5a{bottom:711.704800pt;}
.yca{bottom:712.316400pt;}
.y21c{bottom:712.720000pt;}
.y132{bottom:713.493200pt;}
.y104{bottom:713.649733pt;}
.y1f3{bottom:717.120000pt;}
.y92{bottom:724.159867pt;}
.y59{bottom:726.371467pt;}
.yf9{bottom:726.983067pt;}
.y1c5{bottom:727.906667pt;}
.y131{bottom:728.159867pt;}
.y103{bottom:728.316400pt;}
.y236{bottom:732.453333pt;}
.y1f2{bottom:734.453333pt;}
.y4a{bottom:735.466667pt;}
.y91{bottom:738.826533pt;}
.y58{bottom:741.038133pt;}
.yf8{bottom:741.649733pt;}
.y130{bottom:742.826533pt;}
.yc9{bottom:742.983067pt;}
.y21b{bottom:745.786667pt;}
.y7{bottom:745.933333pt;}
.y1f1{bottom:751.786667pt;}
.y90{bottom:753.493200pt;}
.y57{bottom:755.704800pt;}
.yf7{bottom:756.316400pt;}
.y12f{bottom:757.493200pt;}
.yc8{bottom:757.649733pt;}
.y1c4{bottom:764.213333pt;}
.y21a{bottom:765.520000pt;}
.y8f{bottom:768.159867pt;}
.y1f0{bottom:769.120000pt;}
.y56{bottom:770.371467pt;}
.yf6{bottom:770.983067pt;}
.y12e{bottom:772.159867pt;}
.yc7{bottom:772.316400pt;}
.y6{bottom:773.093333pt;}
.y8e{bottom:782.826533pt;}
.y55{bottom:785.038133pt;}
.y219{bottom:785.253333pt;}
.yf5{bottom:785.649733pt;}
.y1ef{bottom:786.453333pt;}
.yc6{bottom:786.983067pt;}
.y1c3{bottom:792.506667pt;}
.y8d{bottom:797.493200pt;}
.y5{bottom:799.600000pt;}
.y54{bottom:799.704800pt;}
.y16d{bottom:800.316400pt;}
.yc5{bottom:801.649733pt;}
.y1ee{bottom:803.786667pt;}
.y8c{bottom:812.159867pt;}
.y53{bottom:814.371467pt;}
.y16c{bottom:814.983067pt;}
.y1b7{bottom:815.548400pt;}
.yc4{bottom:816.316400pt;}
.y1bf{bottom:816.881733pt;}
.y218{bottom:818.320000pt;}
.y1ed{bottom:821.120000pt;}
.y4{bottom:823.466667pt;}
.y1be{bottom:826.481733pt;}
.y8b{bottom:826.826533pt;}
.y1b6{bottom:827.815067pt;}
.y47{bottom:828.333333pt;}
.y52{bottom:829.038133pt;}
.y16b{bottom:829.649733pt;}
.yc3{bottom:830.983067pt;}
.y1bd{bottom:836.081733pt;}
.y1c2{bottom:836.573333pt;}
.y1b5{bottom:837.415067pt;}
.y217{bottom:838.053333pt;}
.y1ec{bottom:838.453333pt;}
.y8a{bottom:841.493200pt;}
.y51{bottom:843.704800pt;}
.y16a{bottom:844.316400pt;}
.yc2{bottom:845.649733pt;}
.y1bc{bottom:845.681733pt;}
.y1b4{bottom:847.015067pt;}
.y1eb{bottom:855.786667pt;}
.y89{bottom:856.159867pt;}
.y50{bottom:858.371467pt;}
.y169{bottom:858.983067pt;}
.y1b3{bottom:859.281733pt;}
.yc1{bottom:860.316400pt;}
.y3{bottom:865.306667pt;}
.y1b2{bottom:868.881733pt;}
.y88{bottom:870.826533pt;}
.y216{bottom:871.120000pt;}
.y4f{bottom:873.038133pt;}
.y1ea{bottom:873.120000pt;}
.yc0{bottom:874.983067pt;}
.y1bb{bottom:878.481733pt;}
.y1b1{bottom:881.148400pt;}
.y87{bottom:885.493200pt;}
.y4e{bottom:887.704800pt;}
.ybf{bottom:889.649733pt;}
.y1e9{bottom:890.453333pt;}
.y215{bottom:890.853333pt;}
.y1ba{bottom:892.081733pt;}
.y1b0{bottom:893.415067pt;}
.y1c1{bottom:894.533333pt;}
.y86{bottom:900.159867pt;}
.y1b9{bottom:901.681733pt;}
.y4d{bottom:902.371467pt;}
.y1af{bottom:903.015067pt;}
.y171{bottom:904.316267pt;}
.ybe{bottom:904.316400pt;}
.y2{bottom:907.146667pt;}
.y1e8{bottom:907.786667pt;}
.y1b8{bottom:911.281733pt;}
.y85{bottom:914.826533pt;}
.y1ae{bottom:915.281733pt;}
.y4c{bottom:917.038133pt;}
.y170{bottom:918.982933pt;}
.ybd{bottom:918.983067pt;}
.y214{bottom:923.920000pt;}
.y1ad{bottom:924.881733pt;}
.y1e7{bottom:925.120000pt;}
.y84{bottom:929.493200pt;}
.y4b{bottom:931.704800pt;}
.y16f{bottom:933.649600pt;}
.ybc{bottom:933.649733pt;}
.y1ac{bottom:934.481733pt;}
.y1c0{bottom:935.160000pt;}
.y1{bottom:938.413333pt;}
.y37{bottom:960.000000pt;}
.y3b{bottom:998.666667pt;}
.h16{height:24.480000pt;}
.h15{height:24.512000pt;}
.h11{height:24.793824pt;}
.hc{height:28.560000pt;}
.h17{height:30.208000pt;}
.hd{height:30.640000pt;}
.h14{height:32.640000pt;}
.h5{height:32.682667pt;}
.h8{height:33.704000pt;}
.h12{height:35.440000pt;}
.h1{height:36.768000pt;}
.h9{height:37.685333pt;}
.hf{height:38.760000pt;}
.h1c{height:40.800000pt;}
.h3{height:40.853333pt;}
.h1e{height:41.536000pt;}
.h13{height:42.185824pt;}
.h10{height:42.528000pt;}
.h19{height:42.840000pt;}
.h1a{height:45.312000pt;}
.h7{height:46.640000pt;}
.h1b{height:50.346667pt;}
.h4{height:53.109333pt;}
.hb{height:55.152000pt;}
.h6{height:57.194667pt;}
.h2{height:65.365333pt;}
.h1d{height:67.968000pt;}
.h18{height:73.440000pt;}
.he{height:82.866667pt;}
.ha{height:96.000000pt;}
.h0{height:1056.000000pt;}
.w2{width:397.440000pt;}
.w1{width:662.400000pt;}
.w0{width:816.000000pt;}
.w3{width:816.377333pt;}
.w4{width:816.666667pt;}
.x0{left:0.000000pt;}
.xe{left:75.590533pt;}
.x1{left:76.800000pt;}
.xc{left:80.000000pt;}
.xd{left:83.466667pt;}
.xb{left:86.893333pt;}
.x14{left:87.800000pt;}
.x16{left:96.800000pt;}
.x11{left:98.344000pt;}
.x2{left:105.600000pt;}
.x15{left:121.800000pt;}
.x8{left:329.466667pt;}
.xf{left:419.527600pt;}
.x12{left:442.204933pt;}
.x10{left:450.194133pt;}
.xa{left:467.920000pt;}
.x3{left:488.973333pt;}
.x5{left:490.413333pt;}
.x7{left:493.240000pt;}
.x6{left:504.973333pt;}
.x4{left:593.426667pt;}
.x13{left:681.493333pt;}
.x9{left:686.826667pt;}
}




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