
    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_ecca7c8e5244fc40c64df797.woff2')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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_083ee69cb04fd3ac677264a6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106445;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_aca1696f3dc1d6a77fb730ee.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9866cbe75b379366a91f61ec.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.959961;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_460e765da82caffe495f790f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.832520;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_7f99cf6839d0ab8e3bea37c2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.832520;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_5520b00453b275a26a3aa346.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.988281;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_65835a559f5bd017ae8ce8cf.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.106445;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_6193fc93719873dbca485474.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;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_998573fe0ddc26f994217ae2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.747559;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_5057c7aee6736b15caae16a8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.988281;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_09b7c27b8c7868d4246b4e63.woff2')format("woff");}.fff{font-family:fff;line-height:0.739746;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_daba6408d12517f49a24e362.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.959961;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_9505dede4ad619abe3f9782b.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.739746;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);}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-1.068000px;}
.ls19{letter-spacing:-0.942000px;}
.ls1f{letter-spacing:-0.936000px;}
.ls29{letter-spacing:-0.732000px;}
.ls10{letter-spacing:-0.600000px;}
.lse{letter-spacing:-0.501000px;}
.ls2f{letter-spacing:-0.396000px;}
.ls9{letter-spacing:-0.374400px;}
.lsb{letter-spacing:-0.348600px;}
.ls11{letter-spacing:-0.288000px;}
.ls2a{letter-spacing:-0.210000px;}
.lsa{letter-spacing:-0.187200px;}
.ls1a{letter-spacing:-0.138000px;}
.ls13{letter-spacing:-0.135600px;}
.ls28{letter-spacing:-0.086400px;}
.ls32{letter-spacing:-0.085200px;}
.ls2e{letter-spacing:-0.000003px;}
.ls0{letter-spacing:0.000000px;}
.ls37{letter-spacing:0.006480px;}
.ls20{letter-spacing:0.012960px;}
.ls1{letter-spacing:0.023040px;}
.lsd{letter-spacing:0.037440px;}
.ls2c{letter-spacing:0.072000px;}
.ls34{letter-spacing:0.112200px;}
.ls1c{letter-spacing:0.118200px;}
.ls1b{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.172800px;}
.ls2d{letter-spacing:0.192000px;}
.ls1e{letter-spacing:0.215280px;}
.ls17{letter-spacing:0.222000px;}
.ls3b{letter-spacing:0.288000px;}
.ls33{letter-spacing:0.316800px;}
.ls31{letter-spacing:0.317520px;}
.ls22{letter-spacing:0.319680px;}
.ls38{letter-spacing:0.319800px;}
.ls2b{letter-spacing:0.324000px;}
.ls27{letter-spacing:0.328320px;}
.ls16{letter-spacing:0.339600px;}
.ls25{letter-spacing:0.339840px;}
.ls15{letter-spacing:0.342600px;}
.ls8{letter-spacing:0.345600px;}
.ls3c{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.371400px;}
.ls21{letter-spacing:0.374400px;}
.ls30{letter-spacing:0.497520px;}
.ls23{letter-spacing:0.499680px;}
.ls36{letter-spacing:0.720000px;}
.ls3a{letter-spacing:1.039680px;}
.ls2{letter-spacing:8.092800px;}
.ls39{letter-spacing:8.562720px;}
.ls6{letter-spacing:10.252800px;}
.ls5{letter-spacing:13.132800px;}
.ls26{letter-spacing:21.971520px;}
.lsc{letter-spacing:24.131520px;}
.ls4{letter-spacing:28.972800px;}
.ls35{letter-spacing:41.682720px;}
.ls14{letter-spacing:59.321280px;}
.ls18{letter-spacing:66.611520px;}
.ls24{letter-spacing:68.406480px;}
.ls7{letter-spacing:845.741280px;}
.ls1d{letter-spacing:2631.336000px;}
.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;}
}
.wsc{word-spacing:-66.240000px;}
.ws2{word-spacing:-18.892800px;}
.wsa{word-spacing:-18.691080px;}
.wsb{word-spacing:-18.570480px;}
.ws4{word-spacing:-18.547200px;}
.wse{word-spacing:-18.492480px;}
.wsf{word-spacing:-18.466680px;}
.ws1e{word-spacing:-18.460680px;}
.ws8{word-spacing:-18.385920px;}
.ws1{word-spacing:-18.371520px;}
.ws6{word-spacing:-18.348480px;}
.ws14{word-spacing:-18.262080px;}
.ws9{word-spacing:-18.212880px;}
.wsd{word-spacing:-18.210480px;}
.ws3{word-spacing:-18.172800px;}
.ws5{word-spacing:-18.161280px;}
.ws15{word-spacing:-18.138480px;}
.ws7{word-spacing:-18.060480px;}
.ws13{word-spacing:-17.107200px;}
.ws1f{word-spacing:-16.873320px;}
.ws20{word-spacing:-16.873200px;}
.ws11{word-spacing:-16.732800px;}
.ws12{word-spacing:-16.566480px;}
.ws10{word-spacing:-16.553520px;}
.ws16{word-spacing:-15.120000px;}
.ws17{word-spacing:-14.958000px;}
.ws18{word-spacing:-14.562000px;}
.ws1c{word-spacing:-13.881600px;}
.ws1d{word-spacing:-13.824000px;}
.ws19{word-spacing:-13.507200px;}
.ws1a{word-spacing:-13.362480px;}
.ws1b{word-spacing:-13.277280px;}
.ws0{word-spacing:0.000000px;}
._25{margin-left:-5.762880px;}
._d{margin-left:-4.703040px;}
._10{margin-left:-2.878080px;}
._1{margin-left:-1.258560px;}
._2{width:1.356000px;}
._1e{width:2.369280px;}
._b{width:3.378240px;}
._f{width:4.438080px;}
._9{width:5.696640px;}
._3{width:7.032000px;}
._4{width:8.468160px;}
._16{width:9.482880px;}
._a{width:10.532160px;}
._5{width:11.658240px;}
._e{width:12.784320px;}
._6{width:14.016480px;}
._8{width:15.367680px;}
._7{width:16.553280px;}
._29{width:18.283920px;}
._1b{width:19.477920px;}
._11{width:20.539200px;}
._17{width:22.003200px;}
._13{width:23.184000px;}
._12{width:24.355200px;}
._1d{width:26.164800px;}
._21{width:27.696000px;}
._c{width:29.145600px;}
._27{width:30.205440px;}
._19{width:31.331520px;}
._1a{width:32.400480px;}
._18{width:33.669120px;}
._24{width:35.088000px;}
._1c{width:36.291120px;}
._15{width:37.756800px;}
._14{width:39.147840px;}
._37{width:40.216560px;}
._20{width:41.333760px;}
._1f{width:42.459840px;}
._23{width:44.844480px;}
._22{width:46.235520px;}
._3a{width:48.644640px;}
._3e{width:52.906080px;}
._33{width:54.984480px;}
._34{width:56.114640px;}
._36{width:59.813280px;}
._0{width:66.611520px;}
._28{width:68.520720px;}
._35{width:69.608640px;}
._31{width:83.185920px;}
._2c{width:104.221440px;}
._3c{width:114.261120px;}
._3b{width:115.322880px;}
._38{width:119.507760px;}
._3d{width:131.591520px;}
._32{width:155.154480px;}
._2f{width:157.187280px;}
._2e{width:158.304240px;}
._2d{width:177.720960px;}
._30{width:205.031040px;}
._2b{width:207.068400px;}
._2a{width:316.488960px;}
._39{width:342.773520px;}
._26{width:2543.147520px;}
.fc3{color:transparent;}
.fc1{color:rgb(54,95,145);}
.fc2{color:rgb(58,101,152);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:30.240000px;}
.fs4{font-size:42.000000px;}
.fsc{font-size:48.240000px;}
.fsb{font-size:54.000000px;}
.fsa{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs8{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y28{bottom:2.520000px;}
.y16e{bottom:2.700000px;}
.y11f{bottom:3.060000px;}
.y11d{bottom:3.105000px;}
.ycd{bottom:3.240000px;}
.ye7{bottom:3.420000px;}
.yd2{bottom:3.600000px;}
.yda{bottom:3.780000px;}
.yd1{bottom:4.140000px;}
.yd9{bottom:4.320000px;}
.ydc{bottom:11.880000px;}
.yd6{bottom:12.060000px;}
.ycf{bottom:12.420000px;}
.ydf{bottom:12.600000px;}
.y16d{bottom:17.280000px;}
.y173{bottom:17.460000px;}
.y184{bottom:17.490000px;}
.y132{bottom:19.620000px;}
.y11c{bottom:19.665000px;}
.yff{bottom:21.594000px;}
.ycc{bottom:21.600000px;}
.yd5{bottom:21.780000px;}
.yce{bottom:30.780000px;}
.y172{bottom:32.040000px;}
.y176{bottom:32.220000px;}
.y183{bottom:32.250000px;}
.ycb{bottom:39.960000px;}
.ye6{bottom:40.140000px;}
.y185{bottom:46.800000px;}
.y18b{bottom:46.980000px;}
.y26{bottom:56.700000px;}
.y5{bottom:66.525004px;}
.y25{bottom:75.780000px;}
.y4{bottom:97.125005px;}
.y88{bottom:111.780000px;}
.yb9{bottom:112.320000px;}
.y11a{bottom:115.200000px;}
.y193{bottom:115.740000px;}
.y145{bottom:117.180000px;}
.y100{bottom:118.620000px;}
.y16c{bottom:120.600000px;}
.ya5{bottom:120.960000px;}
.y1e4{bottom:122.400000px;}
.y1af{bottom:126.000000px;}
.y87{bottom:131.940000px;}
.yb5{bottom:133.200000px;}
.y119{bottom:135.360000px;}
.y192{bottom:135.936000px;}
.yfe{bottom:136.116000px;}
.y144{bottom:137.376000px;}
.y21{bottom:139.264499px;}
.yb8{bottom:140.256000px;}
.y1e3{bottom:140.796000px;}
.y16b{bottom:140.976000px;}
.ya4{bottom:141.156000px;}
.y1ae{bottom:144.576000px;}
.y86{bottom:152.310000px;}
.yb4{bottom:153.570000px;}
.y118{bottom:155.550000px;}
.y191{bottom:156.270000px;}
.y143{bottom:157.530000px;}
.y1e2{bottom:159.150000px;}
.yb7{bottom:160.050000px;}
.y16a{bottom:161.130000px;}
.ya3{bottom:161.490000px;}
.y1ad{bottom:162.930000px;}
.y85{bottom:172.470000px;}
.yfd{bottom:173.550000px;}
.yb3{bottom:173.730000px;}
.yb6{bottom:175.170000px;}
.y117{bottom:175.890000px;}
.y190{bottom:176.430000px;}
.y1e1{bottom:177.510000px;}
.y57{bottom:177.870000px;}
.y169{bottom:181.290000px;}
.ya2{bottom:181.650000px;}
.yfc{bottom:192.090000px;}
.y84{bottom:192.630000px;}
.yb2{bottom:193.890000px;}
.y116{bottom:196.050000px;}
.y18f{bottom:196.590000px;}
.y18{bottom:196.933500px;}
.y142{bottom:198.030000px;}
.y1ac{bottom:199.650000px;}
.y168{bottom:201.630000px;}
.ya1{bottom:201.810000px;}
.y56{bottom:205.590000px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y83{bottom:212.970000px;}
.yb1{bottom:214.230000px;}
.y1e0{bottom:214.410000px;}
.y115{bottom:216.390000px;}
.y1ab{bottom:218.010000px;}
.y141{bottom:218.370000px;}
.y167{bottom:221.790000px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.ya0{bottom:222.150000px;}
.yc9{bottom:223.590000px;}
.y55{bottom:225.750000px;}
.yfb{bottom:228.810000px;}
.y1df{bottom:232.770000px;}
.y82{bottom:233.130000px;}
.yb0{bottom:234.390000px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y18e{bottom:234.930000px;}
.y1aa{bottom:236.370000px;}
.y114{bottom:236.550000px;}
.y140{bottom:238.530000px;}
.y166{bottom:242.130000px;}
.y9f{bottom:242.310000px;}
.yc8{bottom:243.930000px;}
.y54{bottom:246.090000px;}
.y1de{bottom:251.130000px;}
.y18d{bottom:251.490000px;}
.y81{bottom:253.470000px;}
.yaf{bottom:254.730000px;}
.y1a9{bottom:254.910000px;}
.y113{bottom:256.710000px;}
.y13f{bottom:258.690000px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y165{bottom:262.290000px;}
.y9e{bottom:262.650000px;}
.yc7{bottom:264.090000px;}
.yfa{bottom:265.530000px;}
.y53{bottom:266.250000px;}
.y1dd{bottom:269.490000px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y1a8{bottom:273.270000px;}
.y80{bottom:273.630000px;}
.yae{bottom:274.890000px;}
.y112{bottom:277.050000px;}
.y13e{bottom:279.030000px;}
.y164{bottom:282.450000px;}
.y9d{bottom:282.810000px;}
.yc6{bottom:284.430000px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y52{bottom:286.410000px;}
.y1dc{bottom:287.850000px;}
.y1a7{bottom:291.630000px;}
.y7f{bottom:293.790000px;}
.yad{bottom:295.050000px;}
.y111{bottom:297.210000px;}
.y13d{bottom:299.190000px;}
.yf9{bottom:302.430000px;}
.y163{bottom:302.790000px;}
.y9c{bottom:302.970000px;}
.yc5{bottom:304.590000px;}
.y51{bottom:304.770000px;}
.y1db{bottom:306.390000px;}
.y1a6{bottom:309.990000px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y18c{bottom:310.350000px;}
.y7e{bottom:314.130000px;}
.yac{bottom:315.390000px;}
.y50{bottom:315.930000px;}
.y110{bottom:317.550000px;}
.y13c{bottom:319.530000px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y162{bottom:322.950000px;}
.y9b{bottom:323.310000px;}
.yc4{bottom:324.750000px;}
.y1a5{bottom:328.350000px;}
.y7d{bottom:334.290000px;}
.yab{bottom:335.550000px;}
.y4f{bottom:336.090000px;}
.y10f{bottom:337.710000px;}
.yf8{bottom:339.150000px;}
.y13b{bottom:339.330000px;}
.y18a{bottom:339.690000px;}
.y1da{bottom:343.110000px;}
.y161{bottom:343.290000px;}
.y9a{bottom:343.470000px;}
.yc3{bottom:345.090000px;}
.y1a4{bottom:346.710000px;}
.yf{bottom:348.133500px;}
.y4e{bottom:354.270000px;}
.y7c{bottom:354.630000px;}
.yaa{bottom:355.710000px;}
.y13a{bottom:357.690000px;}
.y10e{bottom:357.870000px;}
.y1d9{bottom:361.470000px;}
.y160{bottom:363.450000px;}
.y99{bottom:363.810000px;}
.yc2{bottom:365.250000px;}
.y4d{bottom:365.610000px;}
.y7b{bottom:374.790000px;}
.y139{bottom:374.970000px;}
.yf7{bottom:375.870000px;}
.ya9{bottom:376.050000px;}
.y10d{bottom:378.210000px;}
.y1d8{bottom:379.830000px;}
.y15f{bottom:383.610000px;}
.y98{bottom:383.970000px;}
.yc1{bottom:385.590000px;}
.y4c{bottom:385.770000px;}
.ye{bottom:386.785499px;}
.y138{bottom:393.195000px;}
.yf6{bottom:394.275000px;}
.y7a{bottom:394.995000px;}
.ya8{bottom:397.875000px;}
.y1d7{bottom:398.235000px;}
.y10c{bottom:398.415000px;}
.y189{bottom:398.595000px;}
.y1a3{bottom:402.015000px;}
.y4b{bottom:403.995000px;}
.y97{bottom:404.175000px;}
.yc0{bottom:405.795000px;}
.yd{bottom:408.044999px;}
.y137{bottom:409.755000px;}
.yf5{bottom:414.255000px;}
.y4a{bottom:415.335000px;}
.y1d6{bottom:416.775000px;}
.y10b{bottom:418.755000px;}
.y1a2{bottom:420.375000px;}
.y15e{bottom:424.155000px;}
.y96{bottom:424.515000px;}
.ya7{bottom:425.775000px;}
.ybf{bottom:425.955000px;}
.y136{bottom:426.315000px;}
.y188{bottom:428.115000px;}
.y1d5{bottom:435.135000px;}
.y49{bottom:435.495000px;}
.y1a1{bottom:438.735000px;}
.y10a{bottom:438.915000px;}
.y15d{bottom:444.495000px;}
.y95{bottom:444.675000px;}
.ybe{bottom:446.295000px;}
.y1d4{bottom:453.495000px;}
.y48{bottom:453.675000px;}
.y79{bottom:455.655000px;}
.yf4{bottom:456.915000px;}
.y1a0{bottom:457.095000px;}
.y109{bottom:459.075000px;}
.y135{bottom:459.435000px;}
.y15c{bottom:464.655000px;}
.y47{bottom:465.015000px;}
.ybd{bottom:466.455000px;}
.y1d3{bottom:471.855000px;}
.y187{bottom:472.215000px;}
.y19f{bottom:475.635000px;}
.y134{bottom:475.815000px;}
.y78{bottom:475.995000px;}
.yf3{bottom:477.255000px;}
.y108{bottom:479.415000px;}
.y15b{bottom:484.815000px;}
.y46{bottom:485.175000px;}
.ybc{bottom:486.795000px;}
.y1d2{bottom:490.215000px;}
.y133{bottom:492.375000px;}
.y19e{bottom:493.995000px;}
.yf2{bottom:495.435000px;}
.y77{bottom:496.155000px;}
.y107{bottom:499.575000px;}
.yc{bottom:502.864502px;}
.y15a{bottom:505.155000px;}
.y45{bottom:505.335000px;}
.yf1{bottom:506.235000px;}
.ybb{bottom:508.035000px;}
.y1d1{bottom:508.755000px;}
.y131{bottom:508.935000px;}
.y19d{bottom:512.355000px;}
.y186{bottom:516.315000px;}
.y76{bottom:516.495000px;}
.y106{bottom:519.735000px;}
.yb{bottom:520.864502px;}
.yf0{bottom:522.795000px;}
.y159{bottom:525.315000px;}
.y44{bottom:525.675000px;}
.y1d0{bottom:527.115000px;}
.y19c{bottom:530.715000px;}
.y75{bottom:536.655000px;}
.ya{bottom:538.864499px;}
.y105{bottom:540.075000px;}
.y130{bottom:542.055000px;}
.yef{bottom:542.775000px;}
.y1cf{bottom:545.475000px;}
.y158{bottom:545.655000px;}
.y43{bottom:545.835000px;}
.y19b{bottom:549.075000px;}
.yba{bottom:549.255000px;}
.y74{bottom:556.815000px;}
.y9{bottom:556.864499px;}
.y12f{bottom:558.615000px;}
.y104{bottom:560.235000px;}
.yee{bottom:561.135000px;}
.y1ce{bottom:563.835000px;}
.y157{bottom:565.815000px;}
.y42{bottom:565.995000px;}
.y19a{bottom:567.435000px;}
.y12e{bottom:575.175000px;}
.y73{bottom:577.155000px;}
.yed{bottom:579.495000px;}
.y103{bottom:580.575000px;}
.y1cd{bottom:582.195000px;}
.y156{bottom:585.975000px;}
.y41{bottom:586.335000px;}
.y12d{bottom:591.735000px;}
.y72{bottom:597.315000px;}
.yec{bottom:597.855000px;}
.y1cc{bottom:600.555000px;}
.y102{bottom:601.815000px;}
.y199{bottom:604.335000px;}
.y155{bottom:606.315000px;}
.y40{bottom:606.495000px;}
.y12c{bottom:608.295000px;}
.yeb{bottom:616.215000px;}
.y71{bottom:617.655000px;}
.y1cb{bottom:619.095000px;}
.y198{bottom:622.695000px;}
.y12b{bottom:624.855000px;}
.y154{bottom:626.475000px;}
.y3f{bottom:626.835000px;}
.y101{bottom:627.555000px;}
.y182{bottom:634.035000px;}
.yea{bottom:634.755000px;}
.y1ca{bottom:637.455000px;}
.y70{bottom:637.815000px;}
.y197{bottom:641.085000px;}
.y12a{bottom:641.445000px;}
.y8{bottom:645.510000px;}
.y153{bottom:646.665000px;}
.y3e{bottom:647.025000px;}
.ye9{bottom:653.145000px;}
.y1c9{bottom:655.845000px;}
.y6f{bottom:658.005000px;}
.y196{bottom:659.445000px;}
.y7{bottom:666.771000px;}
.y152{bottom:667.005000px;}
.y3d{bottom:667.185000px;}
.ye8{bottom:671.505000px;}
.y1c8{bottom:674.205000px;}
.y129{bottom:674.565000px;}
.y181{bottom:678.165000px;}
.y6e{bottom:678.345000px;}
.y195{bottom:679.965000px;}
.y151{bottom:687.165000px;}
.y3c{bottom:687.525000px;}
.y128{bottom:691.125000px;}
.ye5{bottom:691.305000px;}
.y1c7{bottom:692.565000px;}
.y180{bottom:692.925000px;}
.y6d{bottom:698.505000px;}
.y150{bottom:707.505000px;}
.y3b{bottom:707.685000px;}
.y1c6{bottom:710.925000px;}
.y6c{bottom:718.845000px;}
.ya6{bottom:720.465000px;}
.y17f{bottom:722.445000px;}
.y127{bottom:724.245000px;}
.y6{bottom:726.298500px;}
.y14f{bottom:727.665000px;}
.y3a{bottom:728.025000px;}
.y1c5{bottom:729.465000px;}
.y17e{bottom:737.025000px;}
.y6b{bottom:739.005000px;}
.y126{bottom:740.805000px;}
.y14e{bottom:747.825000px;}
.y39{bottom:748.185000px;}
.ye4{bottom:752.505000px;}
.y3{bottom:752.599495px;}
.y1e6{bottom:755.385000px;}
.y125{bottom:757.365000px;}
.y6a{bottom:759.165000px;}
.y1c4{bottom:766.185000px;}
.y17d{bottom:766.545000px;}
.y14d{bottom:768.165000px;}
.y38{bottom:768.345000px;}
.ye3{bottom:772.665000px;}
.y124{bottom:773.925000px;}
.y69{bottom:779.505000px;}
.y17c{bottom:781.305000px;}
.y1e5{bottom:783.105000px;}
.y1c3{bottom:784.545000px;}
.y14c{bottom:788.325000px;}
.y37{bottom:788.685000px;}
.y123{bottom:790.485000px;}
.ye2{bottom:790.845000px;}
.y17b{bottom:795.885000px;}
.y68{bottom:799.665000px;}
.ye1{bottom:801.645000px;}
.y1c2{bottom:802.905000px;}
.y122{bottom:807.045000px;}
.y14b{bottom:808.665000px;}
.y36{bottom:808.845000px;}
.y17a{bottom:810.645000px;}
.ye0{bottom:818.385000px;}
.y67{bottom:819.825000px;}
.y1c1{bottom:821.265000px;}
.y121{bottom:823.605000px;}
.y179{bottom:825.405000px;}
.y14a{bottom:828.825000px;}
.y35{bottom:829.185000px;}
.yde{bottom:838.185000px;}
.y1c0{bottom:839.805000px;}
.y66{bottom:840.165000px;}
.y149{bottom:848.985000px;}
.y34{bottom:849.345000px;}
.y178{bottom:854.745000px;}
.y120{bottom:856.545000px;}
.y1bf{bottom:858.165000px;}
.y65{bottom:860.325000px;}
.y1f2{bottom:862.485000px;}
.y33{bottom:867.525000px;}
.y148{bottom:869.325000px;}
.y94{bottom:869.505000px;}
.y11e{bottom:873.105000px;}
.ydd{bottom:875.085000px;}
.y1be{bottom:876.525000px;}
.y2{bottom:879.369000px;}
.y32{bottom:880.485000px;}
.y64{bottom:880.665000px;}
.y147{bottom:889.485000px;}
.y93{bottom:889.845000px;}
.y11b{bottom:891.285000px;}
.y1f1{bottom:891.645000px;}
.y1bd{bottom:894.930000px;}
.ydb{bottom:895.290000px;}
.y177{bottom:898.890000px;}
.y63{bottom:900.870000px;}
.y194{bottom:902.490000px;}
.y31{bottom:908.250000px;}
.y92{bottom:910.050000px;}
.y146{bottom:910.950000px;}
.y1f0{bottom:911.850000px;}
.y1bc{bottom:913.290000px;}
.y175{bottom:913.650000px;}
.y62{bottom:921.030000px;}
.y30{bottom:928.770000px;}
.y91{bottom:930.390000px;}
.y1bb{bottom:931.830000px;}
.yd8{bottom:932.010000px;}
.y1ef{bottom:932.190000px;}
.y61{bottom:941.370000px;}
.y1ba{bottom:950.190000px;}
.y90{bottom:950.550000px;}
.y2f{bottom:951.630000px;}
.yd7{bottom:952.350000px;}
.y174{bottom:957.750000px;}
.y60{bottom:961.530000px;}
.y1{bottom:966.726000px;}
.y1b9{bottom:968.550000px;}
.y8f{bottom:970.710000px;}
.yd4{bottom:972.510000px;}
.y1ee{bottom:972.690000px;}
.y2e{bottom:976.290000px;}
.y5f{bottom:981.870000px;}
.y1b8{bottom:986.910000px;}
.y171{bottom:987.270000px;}
.y8e{bottom:991.050000px;}
.y1ed{bottom:992.850000px;}
.y2d{bottom:999.870000px;}
.y5e{bottom:1002.030000px;}
.y1b7{bottom:1005.270000px;}
.yd3{bottom:1009.410000px;}
.y8d{bottom:1011.210000px;}
.y1ec{bottom:1013.010000px;}
.y5d{bottom:1022.190000px;}
.y1b6{bottom:1023.630000px;}
.yd0{bottom:1029.570000px;}
.y8c{bottom:1031.370000px;}
.y1eb{bottom:1033.350000px;}
.y2c{bottom:1038.570000px;}
.y1b5{bottom:1042.170000px;}
.y5c{bottom:1042.530000px;}
.y170{bottom:1046.130000px;}
.yca{bottom:1051.350000px;}
.y8b{bottom:1051.710000px;}
.y1ea{bottom:1053.510000px;}
.y1b4{bottom:1060.530000px;}
.y16f{bottom:1060.890000px;}
.y5b{bottom:1062.690000px;}
.y8a{bottom:1071.870000px;}
.y1e9{bottom:1073.670000px;}
.y2b{bottom:1077.090000px;}
.y1b3{bottom:1078.890000px;}
.y5a{bottom:1083.030000px;}
.y89{bottom:1092.210000px;}
.y1e8{bottom:1094.010000px;}
.y1b2{bottom:1097.250000px;}
.y59{bottom:1103.190000px;}
.y1e7{bottom:1112.190000px;}
.y2a{bottom:1112.370000px;}
.y1b1{bottom:1115.610000px;}
.y58{bottom:1124.970000px;}
.y29{bottom:1132.530000px;}
.y1b0{bottom:1133.970000px;}
.y24{bottom:1152.900000px;}
.y23{bottom:1173.060000px;}
.y22{bottom:1193.400000px;}
.y27{bottom:1200.420000px;}
.h2d{height:14.580000px;}
.h2f{height:14.760000px;}
.h27{height:16.380000px;}
.h26{height:16.560000px;}
.h28{height:16.596000px;}
.h1f{height:18.360000px;}
.h21{height:18.396000px;}
.h22{height:18.540000px;}
.hd{height:19.080000px;}
.h1a{height:20.160000px;}
.h1e{height:20.196000px;}
.h1c{height:20.340000px;}
.h13{height:22.739063px;}
.h12{height:27.168750px;}
.h2b{height:29.340000px;}
.h31{height:29.520000px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h29{height:33.120000px;}
.h23{height:33.156000px;}
.h2c{height:36.274219px;}
.h1d{height:36.720000px;}
.h1b{height:36.900000px;}
.h24{height:40.605469px;}
.h2e{height:43.340625px;}
.h30{height:44.100000px;}
.h32{height:44.136000px;}
.h19{height:44.936719px;}
.h7{height:45.960000px;}
.hc{height:45.992812px;}
.h2a{height:46.629141px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h25{height:48.515625px;}
.h15{height:49.992188px;}
.h14{height:51.685312px;}
.h16{height:53.690625px;}
.h18{height:55.080000px;}
.h2{height:55.152000px;}
.h20{height:55.260000px;}
.h10{height:56.179688px;}
.h33{height:58.860000px;}
.h34{height:58.896000px;}
.hb{height:59.512500px;}
.h17{height:65.730234px;}
.hf{height:68.979727px;}
.h11{height:72.007031px;}
.h5{height:78.132000px;}
.he{height:94.746094px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.ha{height:1263.060000px;}
.w1a{width:51.840000px;}
.w16{width:52.056000px;}
.w18{width:57.240000px;}
.w17{width:58.500000px;}
.w19{width:58.536000px;}
.w26{width:62.640000px;}
.w22{width:62.820000px;}
.w1b{width:64.800000px;}
.w24{width:67.356000px;}
.w28{width:72.900000px;}
.w21{width:73.476000px;}
.w25{width:73.980000px;}
.w23{width:75.240000px;}
.w27{width:75.816000px;}
.w11{width:91.800000px;}
.w10{width:102.816000px;}
.w9{width:104.400000px;}
.w8{width:104.436000px;}
.w13{width:110.556000px;}
.w7{width:112.320000px;}
.w14{width:115.776000px;}
.w15{width:116.640000px;}
.wf{width:116.820000px;}
.we{width:127.836000px;}
.w1c{width:136.080000px;}
.w1d{width:136.296000px;}
.w1f{width:136.620000px;}
.w1e{width:142.596000px;}
.w20{width:148.716000px;}
.wb{width:148.860000px;}
.wc{width:159.330000px;}
.wd{width:276.510000px;}
.w12{width:337.350000px;}
.w6{width:363.675000px;}
.wa{width:372.135000px;}
.w2{width:637.794021px;}
.w5{width:723.885000px;}
.w0{width:892.912500px;}
.w4{width:892.979987px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:8.100000px;}
.xe{left:10.080000px;}
.x23{left:11.160000px;}
.x32{left:12.420000px;}
.x12{left:14.040000px;}
.x10{left:15.120000px;}
.x2e{left:17.100000px;}
.x31{left:18.540000px;}
.x3b{left:19.980000px;}
.x35{left:21.780000px;}
.x2a{left:23.400000px;}
.x18{left:24.660000px;}
.x27{left:26.280000px;}
.xd{left:28.260000px;}
.x13{left:29.520000px;}
.x15{left:30.780000px;}
.xc{left:32.040000px;}
.x16{left:34.200000px;}
.x14{left:36.360000px;}
.x26{left:38.880000px;}
.x28{left:41.760000px;}
.x25{left:44.100000px;}
.x19{left:48.600000px;}
.x1e{left:52.380000px;}
.x1b{left:53.865000px;}
.x1f{left:54.900000px;}
.x1c{left:57.645000px;}
.x1d{left:60.165000px;}
.x20{left:65.694000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x9{left:127.655987px;}
.x7{left:133.415987px;}
.x3c{left:154.649987px;}
.x8{left:160.409987px;}
.x6{left:169.194000px;}
.x4{left:203.484001px;}
.x33{left:242.490000px;}
.x38{left:315.975000px;}
.x34{left:378.795000px;}
.x21{left:382.935000px;}
.x5{left:432.074987px;}
.x29{left:443.775000px;}
.x3{left:454.959000px;}
.xb{left:470.085000px;}
.x17{left:478.545000px;}
.x2d{left:495.825000px;}
.x22{left:510.765000px;}
.x36{left:521.385000px;}
.x2b{left:554.325000px;}
.xf{left:582.405000px;}
.x39{left:595.365000px;}
.x2f{left:611.565000px;}
.x1a{left:627.405000px;}
.x37{left:658.005000px;}
.x2c{left:670.110000px;}
.x11{left:686.850000px;}
.x30{left:721.950000px;}
.x24{left:730.410000px;}
.x3a{left:733.830000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-0.949333pt;}
.ls19{letter-spacing:-0.837333pt;}
.ls1f{letter-spacing:-0.832000pt;}
.ls29{letter-spacing:-0.650667pt;}
.ls10{letter-spacing:-0.533333pt;}
.lse{letter-spacing:-0.445333pt;}
.ls2f{letter-spacing:-0.352000pt;}
.ls9{letter-spacing:-0.332800pt;}
.lsb{letter-spacing:-0.309867pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls2a{letter-spacing:-0.186667pt;}
.lsa{letter-spacing:-0.166400pt;}
.ls1a{letter-spacing:-0.122667pt;}
.ls13{letter-spacing:-0.120533pt;}
.ls28{letter-spacing:-0.076800pt;}
.ls32{letter-spacing:-0.075733pt;}
.ls2e{letter-spacing:-0.000003pt;}
.ls0{letter-spacing:0.000000pt;}
.ls37{letter-spacing:0.005760pt;}
.ls20{letter-spacing:0.011520pt;}
.ls1{letter-spacing:0.020480pt;}
.lsd{letter-spacing:0.033280pt;}
.ls2c{letter-spacing:0.064000pt;}
.ls34{letter-spacing:0.099733pt;}
.ls1c{letter-spacing:0.105067pt;}
.ls1b{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.153600pt;}
.ls2d{letter-spacing:0.170667pt;}
.ls1e{letter-spacing:0.191360pt;}
.ls17{letter-spacing:0.197333pt;}
.ls3b{letter-spacing:0.256000pt;}
.ls33{letter-spacing:0.281600pt;}
.ls31{letter-spacing:0.282240pt;}
.ls22{letter-spacing:0.284160pt;}
.ls38{letter-spacing:0.284267pt;}
.ls2b{letter-spacing:0.288000pt;}
.ls27{letter-spacing:0.291840pt;}
.ls16{letter-spacing:0.301867pt;}
.ls25{letter-spacing:0.302080pt;}
.ls15{letter-spacing:0.304533pt;}
.ls8{letter-spacing:0.307200pt;}
.ls3c{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.330133pt;}
.ls21{letter-spacing:0.332800pt;}
.ls30{letter-spacing:0.442240pt;}
.ls23{letter-spacing:0.444160pt;}
.ls36{letter-spacing:0.640000pt;}
.ls3a{letter-spacing:0.924160pt;}
.ls2{letter-spacing:7.193600pt;}
.ls39{letter-spacing:7.611307pt;}
.ls6{letter-spacing:9.113600pt;}
.ls5{letter-spacing:11.673600pt;}
.ls26{letter-spacing:19.530240pt;}
.lsc{letter-spacing:21.450240pt;}
.ls4{letter-spacing:25.753600pt;}
.ls35{letter-spacing:37.051307pt;}
.ls14{letter-spacing:52.730027pt;}
.ls18{letter-spacing:59.210240pt;}
.ls24{letter-spacing:60.805760pt;}
.ls7{letter-spacing:751.770027pt;}
.ls1d{letter-spacing:2338.965333pt;}
.wsc{word-spacing:-58.880000pt;}
.ws2{word-spacing:-16.793600pt;}
.wsa{word-spacing:-16.614293pt;}
.wsb{word-spacing:-16.507093pt;}
.ws4{word-spacing:-16.486400pt;}
.wse{word-spacing:-16.437760pt;}
.wsf{word-spacing:-16.414827pt;}
.ws1e{word-spacing:-16.409493pt;}
.ws8{word-spacing:-16.343040pt;}
.ws1{word-spacing:-16.330240pt;}
.ws6{word-spacing:-16.309760pt;}
.ws14{word-spacing:-16.232960pt;}
.ws9{word-spacing:-16.189227pt;}
.wsd{word-spacing:-16.187093pt;}
.ws3{word-spacing:-16.153600pt;}
.ws5{word-spacing:-16.143360pt;}
.ws15{word-spacing:-16.123093pt;}
.ws7{word-spacing:-16.053760pt;}
.ws13{word-spacing:-15.206400pt;}
.ws1f{word-spacing:-14.998507pt;}
.ws20{word-spacing:-14.998400pt;}
.ws11{word-spacing:-14.873600pt;}
.ws12{word-spacing:-14.725760pt;}
.ws10{word-spacing:-14.714240pt;}
.ws16{word-spacing:-13.440000pt;}
.ws17{word-spacing:-13.296000pt;}
.ws18{word-spacing:-12.944000pt;}
.ws1c{word-spacing:-12.339200pt;}
.ws1d{word-spacing:-12.288000pt;}
.ws19{word-spacing:-12.006400pt;}
.ws1a{word-spacing:-11.877760pt;}
.ws1b{word-spacing:-11.802027pt;}
.ws0{word-spacing:0.000000pt;}
._25{margin-left:-5.122560pt;}
._d{margin-left:-4.180480pt;}
._10{margin-left:-2.558293pt;}
._1{margin-left:-1.118720pt;}
._2{width:1.205333pt;}
._1e{width:2.106027pt;}
._b{width:3.002880pt;}
._f{width:3.944960pt;}
._9{width:5.063680pt;}
._3{width:6.250667pt;}
._4{width:7.527253pt;}
._16{width:8.429227pt;}
._a{width:9.361920pt;}
._5{width:10.362880pt;}
._e{width:11.363840pt;}
._6{width:12.459093pt;}
._8{width:13.660160pt;}
._7{width:14.714027pt;}
._29{width:16.252373pt;}
._1b{width:17.313707pt;}
._11{width:18.257067pt;}
._17{width:19.558400pt;}
._13{width:20.608000pt;}
._12{width:21.649067pt;}
._1d{width:23.257600pt;}
._21{width:24.618667pt;}
._c{width:25.907200pt;}
._27{width:26.849280pt;}
._19{width:27.850240pt;}
._1a{width:28.800427pt;}
._18{width:29.928107pt;}
._24{width:31.189333pt;}
._1c{width:32.258773pt;}
._15{width:33.561600pt;}
._14{width:34.798080pt;}
._37{width:35.748053pt;}
._20{width:36.741120pt;}
._1f{width:37.742080pt;}
._23{width:39.861760pt;}
._22{width:41.098240pt;}
._3a{width:43.239680pt;}
._3e{width:47.027627pt;}
._33{width:48.875093pt;}
._34{width:49.879680pt;}
._36{width:53.167360pt;}
._0{width:59.210240pt;}
._28{width:60.907307pt;}
._35{width:61.874347pt;}
._31{width:73.943040pt;}
._2c{width:92.641280pt;}
._3c{width:101.565440pt;}
._3b{width:102.509227pt;}
._38{width:106.229120pt;}
._3d{width:116.970240pt;}
._32{width:137.915093pt;}
._2f{width:139.722027pt;}
._2e{width:140.714880pt;}
._2d{width:157.974187pt;}
._30{width:182.249813pt;}
._2b{width:184.060800pt;}
._2a{width:281.323520pt;}
._39{width:304.687573pt;}
._26{width:2260.575573pt;}
.fs9{font-size:26.880000pt;}
.fs4{font-size:37.333333pt;}
.fsc{font-size:42.880000pt;}
.fsb{font-size:48.000000pt;}
.fsa{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs8{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:2.240000pt;}
.y16e{bottom:2.400000pt;}
.y11f{bottom:2.720000pt;}
.y11d{bottom:2.760000pt;}
.ycd{bottom:2.880000pt;}
.ye7{bottom:3.040000pt;}
.yd2{bottom:3.200000pt;}
.yda{bottom:3.360000pt;}
.yd1{bottom:3.680000pt;}
.yd9{bottom:3.840000pt;}
.ydc{bottom:10.560000pt;}
.yd6{bottom:10.720000pt;}
.ycf{bottom:11.040000pt;}
.ydf{bottom:11.200000pt;}
.y16d{bottom:15.360000pt;}
.y173{bottom:15.520000pt;}
.y184{bottom:15.546667pt;}
.y132{bottom:17.440000pt;}
.y11c{bottom:17.480000pt;}
.yff{bottom:19.194667pt;}
.ycc{bottom:19.200000pt;}
.yd5{bottom:19.360000pt;}
.yce{bottom:27.360000pt;}
.y172{bottom:28.480000pt;}
.y176{bottom:28.640000pt;}
.y183{bottom:28.666667pt;}
.ycb{bottom:35.520000pt;}
.ye6{bottom:35.680000pt;}
.y185{bottom:41.600000pt;}
.y18b{bottom:41.760000pt;}
.y26{bottom:50.400000pt;}
.y5{bottom:59.133337pt;}
.y25{bottom:67.360000pt;}
.y4{bottom:86.333337pt;}
.y88{bottom:99.360000pt;}
.yb9{bottom:99.840000pt;}
.y11a{bottom:102.400000pt;}
.y193{bottom:102.880000pt;}
.y145{bottom:104.160000pt;}
.y100{bottom:105.440000pt;}
.y16c{bottom:107.200000pt;}
.ya5{bottom:107.520000pt;}
.y1e4{bottom:108.800000pt;}
.y1af{bottom:112.000000pt;}
.y87{bottom:117.280000pt;}
.yb5{bottom:118.400000pt;}
.y119{bottom:120.320000pt;}
.y192{bottom:120.832000pt;}
.yfe{bottom:120.992000pt;}
.y144{bottom:122.112000pt;}
.y21{bottom:123.790666pt;}
.yb8{bottom:124.672000pt;}
.y1e3{bottom:125.152000pt;}
.y16b{bottom:125.312000pt;}
.ya4{bottom:125.472000pt;}
.y1ae{bottom:128.512000pt;}
.y86{bottom:135.386667pt;}
.yb4{bottom:136.506667pt;}
.y118{bottom:138.266667pt;}
.y191{bottom:138.906667pt;}
.y143{bottom:140.026667pt;}
.y1e2{bottom:141.466667pt;}
.yb7{bottom:142.266667pt;}
.y16a{bottom:143.226667pt;}
.ya3{bottom:143.546667pt;}
.y1ad{bottom:144.826667pt;}
.y85{bottom:153.306667pt;}
.yfd{bottom:154.266667pt;}
.yb3{bottom:154.426667pt;}
.yb6{bottom:155.706667pt;}
.y117{bottom:156.346667pt;}
.y190{bottom:156.826667pt;}
.y1e1{bottom:157.786667pt;}
.y57{bottom:158.106667pt;}
.y169{bottom:161.146667pt;}
.ya2{bottom:161.466667pt;}
.yfc{bottom:170.746667pt;}
.y84{bottom:171.226667pt;}
.yb2{bottom:172.346667pt;}
.y116{bottom:174.266667pt;}
.y18f{bottom:174.746667pt;}
.y18{bottom:175.052000pt;}
.y142{bottom:176.026667pt;}
.y1ac{bottom:177.466667pt;}
.y168{bottom:179.226667pt;}
.ya1{bottom:179.386667pt;}
.y56{bottom:182.746667pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y83{bottom:189.306667pt;}
.yb1{bottom:190.426667pt;}
.y1e0{bottom:190.586667pt;}
.y115{bottom:192.346667pt;}
.y1ab{bottom:193.786667pt;}
.y141{bottom:194.106667pt;}
.y167{bottom:197.146667pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.ya0{bottom:197.466667pt;}
.yc9{bottom:198.746667pt;}
.y55{bottom:200.666667pt;}
.yfb{bottom:203.386667pt;}
.y1df{bottom:206.906667pt;}
.y82{bottom:207.226667pt;}
.yb0{bottom:208.346667pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y18e{bottom:208.826667pt;}
.y1aa{bottom:210.106667pt;}
.y114{bottom:210.266667pt;}
.y140{bottom:212.026667pt;}
.y166{bottom:215.226667pt;}
.y9f{bottom:215.386667pt;}
.yc8{bottom:216.826667pt;}
.y54{bottom:218.746667pt;}
.y1de{bottom:223.226667pt;}
.y18d{bottom:223.546667pt;}
.y81{bottom:225.306667pt;}
.yaf{bottom:226.426667pt;}
.y1a9{bottom:226.586667pt;}
.y113{bottom:228.186667pt;}
.y13f{bottom:229.946667pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y165{bottom:233.146667pt;}
.y9e{bottom:233.466667pt;}
.yc7{bottom:234.746667pt;}
.yfa{bottom:236.026667pt;}
.y53{bottom:236.666667pt;}
.y1dd{bottom:239.546667pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y1a8{bottom:242.906667pt;}
.y80{bottom:243.226667pt;}
.yae{bottom:244.346667pt;}
.y112{bottom:246.266667pt;}
.y13e{bottom:248.026667pt;}
.y164{bottom:251.066667pt;}
.y9d{bottom:251.386667pt;}
.yc6{bottom:252.826667pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y52{bottom:254.586667pt;}
.y1dc{bottom:255.866667pt;}
.y1a7{bottom:259.226667pt;}
.y7f{bottom:261.146667pt;}
.yad{bottom:262.266667pt;}
.y111{bottom:264.186667pt;}
.y13d{bottom:265.946667pt;}
.yf9{bottom:268.826667pt;}
.y163{bottom:269.146667pt;}
.y9c{bottom:269.306667pt;}
.yc5{bottom:270.746667pt;}
.y51{bottom:270.906667pt;}
.y1db{bottom:272.346667pt;}
.y1a6{bottom:275.546667pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y18c{bottom:275.866667pt;}
.y7e{bottom:279.226667pt;}
.yac{bottom:280.346667pt;}
.y50{bottom:280.826667pt;}
.y110{bottom:282.266667pt;}
.y13c{bottom:284.026667pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y162{bottom:287.066667pt;}
.y9b{bottom:287.386667pt;}
.yc4{bottom:288.666667pt;}
.y1a5{bottom:291.866667pt;}
.y7d{bottom:297.146667pt;}
.yab{bottom:298.266667pt;}
.y4f{bottom:298.746667pt;}
.y10f{bottom:300.186667pt;}
.yf8{bottom:301.466667pt;}
.y13b{bottom:301.626667pt;}
.y18a{bottom:301.946667pt;}
.y1da{bottom:304.986667pt;}
.y161{bottom:305.146667pt;}
.y9a{bottom:305.306667pt;}
.yc3{bottom:306.746667pt;}
.y1a4{bottom:308.186667pt;}
.yf{bottom:309.452000pt;}
.y4e{bottom:314.906667pt;}
.y7c{bottom:315.226667pt;}
.yaa{bottom:316.186667pt;}
.y13a{bottom:317.946667pt;}
.y10e{bottom:318.106667pt;}
.y1d9{bottom:321.306667pt;}
.y160{bottom:323.066667pt;}
.y99{bottom:323.386667pt;}
.yc2{bottom:324.666667pt;}
.y4d{bottom:324.986667pt;}
.y7b{bottom:333.146667pt;}
.y139{bottom:333.306667pt;}
.yf7{bottom:334.106667pt;}
.ya9{bottom:334.266667pt;}
.y10d{bottom:336.186667pt;}
.y1d8{bottom:337.626667pt;}
.y15f{bottom:340.986667pt;}
.y98{bottom:341.306667pt;}
.yc1{bottom:342.746667pt;}
.y4c{bottom:342.906667pt;}
.ye{bottom:343.809333pt;}
.y138{bottom:349.506667pt;}
.yf6{bottom:350.466667pt;}
.y7a{bottom:351.106667pt;}
.ya8{bottom:353.666667pt;}
.y1d7{bottom:353.986667pt;}
.y10c{bottom:354.146667pt;}
.y189{bottom:354.306667pt;}
.y1a3{bottom:357.346667pt;}
.y4b{bottom:359.106667pt;}
.y97{bottom:359.266667pt;}
.yc0{bottom:360.706667pt;}
.yd{bottom:362.706666pt;}
.y137{bottom:364.226667pt;}
.yf5{bottom:368.226667pt;}
.y4a{bottom:369.186667pt;}
.y1d6{bottom:370.466667pt;}
.y10b{bottom:372.226667pt;}
.y1a2{bottom:373.666667pt;}
.y15e{bottom:377.026667pt;}
.y96{bottom:377.346667pt;}
.ya7{bottom:378.466667pt;}
.ybf{bottom:378.626667pt;}
.y136{bottom:378.946667pt;}
.y188{bottom:380.546667pt;}
.y1d5{bottom:386.786667pt;}
.y49{bottom:387.106667pt;}
.y1a1{bottom:389.986667pt;}
.y10a{bottom:390.146667pt;}
.y15d{bottom:395.106667pt;}
.y95{bottom:395.266667pt;}
.ybe{bottom:396.706667pt;}
.y1d4{bottom:403.106667pt;}
.y48{bottom:403.266667pt;}
.y79{bottom:405.026667pt;}
.yf4{bottom:406.146667pt;}
.y1a0{bottom:406.306667pt;}
.y109{bottom:408.066667pt;}
.y135{bottom:408.386667pt;}
.y15c{bottom:413.026667pt;}
.y47{bottom:413.346667pt;}
.ybd{bottom:414.626667pt;}
.y1d3{bottom:419.426667pt;}
.y187{bottom:419.746667pt;}
.y19f{bottom:422.786667pt;}
.y134{bottom:422.946667pt;}
.y78{bottom:423.106667pt;}
.yf3{bottom:424.226667pt;}
.y108{bottom:426.146667pt;}
.y15b{bottom:430.946667pt;}
.y46{bottom:431.266667pt;}
.ybc{bottom:432.706667pt;}
.y1d2{bottom:435.746667pt;}
.y133{bottom:437.666667pt;}
.y19e{bottom:439.106667pt;}
.yf2{bottom:440.386667pt;}
.y77{bottom:441.026667pt;}
.y107{bottom:444.066667pt;}
.yc{bottom:446.990669pt;}
.y15a{bottom:449.026667pt;}
.y45{bottom:449.186667pt;}
.yf1{bottom:449.986667pt;}
.ybb{bottom:451.586667pt;}
.y1d1{bottom:452.226667pt;}
.y131{bottom:452.386667pt;}
.y19d{bottom:455.426667pt;}
.y186{bottom:458.946667pt;}
.y76{bottom:459.106667pt;}
.y106{bottom:461.986667pt;}
.yb{bottom:462.990669pt;}
.yf0{bottom:464.706667pt;}
.y159{bottom:466.946667pt;}
.y44{bottom:467.266667pt;}
.y1d0{bottom:468.546667pt;}
.y19c{bottom:471.746667pt;}
.y75{bottom:477.026667pt;}
.ya{bottom:478.990666pt;}
.y105{bottom:480.066667pt;}
.y130{bottom:481.826667pt;}
.yef{bottom:482.466667pt;}
.y1cf{bottom:484.866667pt;}
.y158{bottom:485.026667pt;}
.y43{bottom:485.186667pt;}
.y19b{bottom:488.066667pt;}
.yba{bottom:488.226667pt;}
.y74{bottom:494.946667pt;}
.y9{bottom:494.990666pt;}
.y12f{bottom:496.546667pt;}
.y104{bottom:497.986667pt;}
.yee{bottom:498.786667pt;}
.y1ce{bottom:501.186667pt;}
.y157{bottom:502.946667pt;}
.y42{bottom:503.106667pt;}
.y19a{bottom:504.386667pt;}
.y12e{bottom:511.266667pt;}
.y73{bottom:513.026667pt;}
.yed{bottom:515.106667pt;}
.y103{bottom:516.066667pt;}
.y1cd{bottom:517.506667pt;}
.y156{bottom:520.866667pt;}
.y41{bottom:521.186667pt;}
.y12d{bottom:525.986667pt;}
.y72{bottom:530.946667pt;}
.yec{bottom:531.426667pt;}
.y1cc{bottom:533.826667pt;}
.y102{bottom:534.946667pt;}
.y199{bottom:537.186667pt;}
.y155{bottom:538.946667pt;}
.y40{bottom:539.106667pt;}
.y12c{bottom:540.706667pt;}
.yeb{bottom:547.746667pt;}
.y71{bottom:549.026667pt;}
.y1cb{bottom:550.306667pt;}
.y198{bottom:553.506667pt;}
.y12b{bottom:555.426667pt;}
.y154{bottom:556.866667pt;}
.y3f{bottom:557.186667pt;}
.y101{bottom:557.826667pt;}
.y182{bottom:563.586667pt;}
.yea{bottom:564.226667pt;}
.y1ca{bottom:566.626667pt;}
.y70{bottom:566.946667pt;}
.y197{bottom:569.853333pt;}
.y12a{bottom:570.173333pt;}
.y8{bottom:573.786667pt;}
.y153{bottom:574.813333pt;}
.y3e{bottom:575.133333pt;}
.ye9{bottom:580.573333pt;}
.y1c9{bottom:582.973333pt;}
.y6f{bottom:584.893333pt;}
.y196{bottom:586.173333pt;}
.y7{bottom:592.685334pt;}
.y152{bottom:592.893333pt;}
.y3d{bottom:593.053333pt;}
.ye8{bottom:596.893333pt;}
.y1c8{bottom:599.293333pt;}
.y129{bottom:599.613333pt;}
.y181{bottom:602.813333pt;}
.y6e{bottom:602.973333pt;}
.y195{bottom:604.413333pt;}
.y151{bottom:610.813333pt;}
.y3c{bottom:611.133333pt;}
.y128{bottom:614.333333pt;}
.ye5{bottom:614.493333pt;}
.y1c7{bottom:615.613333pt;}
.y180{bottom:615.933333pt;}
.y6d{bottom:620.893333pt;}
.y150{bottom:628.893333pt;}
.y3b{bottom:629.053333pt;}
.y1c6{bottom:631.933333pt;}
.y6c{bottom:638.973333pt;}
.ya6{bottom:640.413333pt;}
.y17f{bottom:642.173333pt;}
.y127{bottom:643.773333pt;}
.y6{bottom:645.598667pt;}
.y14f{bottom:646.813333pt;}
.y3a{bottom:647.133333pt;}
.y1c5{bottom:648.413333pt;}
.y17e{bottom:655.133333pt;}
.y6b{bottom:656.893333pt;}
.y126{bottom:658.493333pt;}
.y14e{bottom:664.733333pt;}
.y39{bottom:665.053333pt;}
.ye4{bottom:668.893333pt;}
.y3{bottom:668.977329pt;}
.y1e6{bottom:671.453333pt;}
.y125{bottom:673.213333pt;}
.y6a{bottom:674.813333pt;}
.y1c4{bottom:681.053333pt;}
.y17d{bottom:681.373333pt;}
.y14d{bottom:682.813333pt;}
.y38{bottom:682.973333pt;}
.ye3{bottom:686.813333pt;}
.y124{bottom:687.933333pt;}
.y69{bottom:692.893333pt;}
.y17c{bottom:694.493333pt;}
.y1e5{bottom:696.093333pt;}
.y1c3{bottom:697.373333pt;}
.y14c{bottom:700.733333pt;}
.y37{bottom:701.053333pt;}
.y123{bottom:702.653333pt;}
.ye2{bottom:702.973333pt;}
.y17b{bottom:707.453333pt;}
.y68{bottom:710.813333pt;}
.ye1{bottom:712.573333pt;}
.y1c2{bottom:713.693333pt;}
.y122{bottom:717.373333pt;}
.y14b{bottom:718.813333pt;}
.y36{bottom:718.973333pt;}
.y17a{bottom:720.573333pt;}
.ye0{bottom:727.453333pt;}
.y67{bottom:728.733333pt;}
.y1c1{bottom:730.013333pt;}
.y121{bottom:732.093333pt;}
.y179{bottom:733.693333pt;}
.y14a{bottom:736.733333pt;}
.y35{bottom:737.053333pt;}
.yde{bottom:745.053333pt;}
.y1c0{bottom:746.493333pt;}
.y66{bottom:746.813333pt;}
.y149{bottom:754.653333pt;}
.y34{bottom:754.973333pt;}
.y178{bottom:759.773333pt;}
.y120{bottom:761.373333pt;}
.y1bf{bottom:762.813333pt;}
.y65{bottom:764.733333pt;}
.y1f2{bottom:766.653333pt;}
.y33{bottom:771.133333pt;}
.y148{bottom:772.733333pt;}
.y94{bottom:772.893333pt;}
.y11e{bottom:776.093333pt;}
.ydd{bottom:777.853333pt;}
.y1be{bottom:779.133333pt;}
.y2{bottom:781.661334pt;}
.y32{bottom:782.653333pt;}
.y64{bottom:782.813333pt;}
.y147{bottom:790.653333pt;}
.y93{bottom:790.973333pt;}
.y11b{bottom:792.253333pt;}
.y1f1{bottom:792.573333pt;}
.y1bd{bottom:795.493333pt;}
.ydb{bottom:795.813333pt;}
.y177{bottom:799.013333pt;}
.y63{bottom:800.773333pt;}
.y194{bottom:802.213333pt;}
.y31{bottom:807.333333pt;}
.y92{bottom:808.933333pt;}
.y146{bottom:809.733333pt;}
.y1f0{bottom:810.533333pt;}
.y1bc{bottom:811.813333pt;}
.y175{bottom:812.133333pt;}
.y62{bottom:818.693333pt;}
.y30{bottom:825.573333pt;}
.y91{bottom:827.013333pt;}
.y1bb{bottom:828.293333pt;}
.yd8{bottom:828.453333pt;}
.y1ef{bottom:828.613333pt;}
.y61{bottom:836.773333pt;}
.y1ba{bottom:844.613333pt;}
.y90{bottom:844.933333pt;}
.y2f{bottom:845.893333pt;}
.yd7{bottom:846.533333pt;}
.y174{bottom:851.333333pt;}
.y60{bottom:854.693333pt;}
.y1{bottom:859.312000pt;}
.y1b9{bottom:860.933333pt;}
.y8f{bottom:862.853333pt;}
.yd4{bottom:864.453333pt;}
.y1ee{bottom:864.613333pt;}
.y2e{bottom:867.813333pt;}
.y5f{bottom:872.773333pt;}
.y1b8{bottom:877.253333pt;}
.y171{bottom:877.573333pt;}
.y8e{bottom:880.933333pt;}
.y1ed{bottom:882.533333pt;}
.y2d{bottom:888.773333pt;}
.y5e{bottom:890.693333pt;}
.y1b7{bottom:893.573333pt;}
.yd3{bottom:897.253333pt;}
.y8d{bottom:898.853333pt;}
.y1ec{bottom:900.453333pt;}
.y5d{bottom:908.613333pt;}
.y1b6{bottom:909.893333pt;}
.yd0{bottom:915.173333pt;}
.y8c{bottom:916.773333pt;}
.y1eb{bottom:918.533333pt;}
.y2c{bottom:923.173333pt;}
.y1b5{bottom:926.373333pt;}
.y5c{bottom:926.693333pt;}
.y170{bottom:929.893333pt;}
.yca{bottom:934.533333pt;}
.y8b{bottom:934.853333pt;}
.y1ea{bottom:936.453333pt;}
.y1b4{bottom:942.693333pt;}
.y16f{bottom:943.013333pt;}
.y5b{bottom:944.613333pt;}
.y8a{bottom:952.773333pt;}
.y1e9{bottom:954.373333pt;}
.y2b{bottom:957.413333pt;}
.y1b3{bottom:959.013333pt;}
.y5a{bottom:962.693333pt;}
.y89{bottom:970.853333pt;}
.y1e8{bottom:972.453333pt;}
.y1b2{bottom:975.333333pt;}
.y59{bottom:980.613333pt;}
.y1e7{bottom:988.613333pt;}
.y2a{bottom:988.773333pt;}
.y1b1{bottom:991.653333pt;}
.y58{bottom:999.973333pt;}
.y29{bottom:1006.693333pt;}
.y1b0{bottom:1007.973333pt;}
.y24{bottom:1024.800000pt;}
.y23{bottom:1042.720000pt;}
.y22{bottom:1060.800000pt;}
.y27{bottom:1067.040000pt;}
.h2d{height:12.960000pt;}
.h2f{height:13.120000pt;}
.h27{height:14.560000pt;}
.h26{height:14.720000pt;}
.h28{height:14.752000pt;}
.h1f{height:16.320000pt;}
.h21{height:16.352000pt;}
.h22{height:16.480000pt;}
.hd{height:16.960000pt;}
.h1a{height:17.920000pt;}
.h1e{height:17.952000pt;}
.h1c{height:18.080000pt;}
.h13{height:20.212500pt;}
.h12{height:24.150000pt;}
.h2b{height:26.080000pt;}
.h31{height:26.240000pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h29{height:29.440000pt;}
.h23{height:29.472000pt;}
.h2c{height:32.243750pt;}
.h1d{height:32.640000pt;}
.h1b{height:32.800000pt;}
.h24{height:36.093750pt;}
.h2e{height:38.525000pt;}
.h30{height:39.200000pt;}
.h32{height:39.232000pt;}
.h19{height:39.943750pt;}
.h7{height:40.853333pt;}
.hc{height:40.882500pt;}
.h2a{height:41.448125pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h25{height:43.125000pt;}
.h15{height:44.437500pt;}
.h14{height:45.942500pt;}
.h16{height:47.725000pt;}
.h18{height:48.960000pt;}
.h2{height:49.024000pt;}
.h20{height:49.120000pt;}
.h10{height:49.937500pt;}
.h33{height:52.320000pt;}
.h34{height:52.352000pt;}
.hb{height:52.900000pt;}
.h17{height:58.426875pt;}
.hf{height:61.315312pt;}
.h11{height:64.006250pt;}
.h5{height:69.450667pt;}
.he{height:84.218750pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.ha{height:1122.720000pt;}
.w1a{width:46.080000pt;}
.w16{width:46.272000pt;}
.w18{width:50.880000pt;}
.w17{width:52.000000pt;}
.w19{width:52.032000pt;}
.w26{width:55.680000pt;}
.w22{width:55.840000pt;}
.w1b{width:57.600000pt;}
.w24{width:59.872000pt;}
.w28{width:64.800000pt;}
.w21{width:65.312000pt;}
.w25{width:65.760000pt;}
.w23{width:66.880000pt;}
.w27{width:67.392000pt;}
.w11{width:81.600000pt;}
.w10{width:91.392000pt;}
.w9{width:92.800000pt;}
.w8{width:92.832000pt;}
.w13{width:98.272000pt;}
.w7{width:99.840000pt;}
.w14{width:102.912000pt;}
.w15{width:103.680000pt;}
.wf{width:103.840000pt;}
.we{width:113.632000pt;}
.w1c{width:120.960000pt;}
.w1d{width:121.152000pt;}
.w1f{width:121.440000pt;}
.w1e{width:126.752000pt;}
.w20{width:132.192000pt;}
.wb{width:132.320000pt;}
.wc{width:141.626667pt;}
.wd{width:245.786667pt;}
.w12{width:299.866667pt;}
.w6{width:323.266667pt;}
.wa{width:330.786667pt;}
.w2{width:566.928019pt;}
.w5{width:643.453333pt;}
.w0{width:793.700000pt;}
.w4{width:793.759988pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:7.200000pt;}
.xe{left:8.960000pt;}
.x23{left:9.920000pt;}
.x32{left:11.040000pt;}
.x12{left:12.480000pt;}
.x10{left:13.440000pt;}
.x2e{left:15.200000pt;}
.x31{left:16.480000pt;}
.x3b{left:17.760000pt;}
.x35{left:19.360000pt;}
.x2a{left:20.800000pt;}
.x18{left:21.920000pt;}
.x27{left:23.360000pt;}
.xd{left:25.120000pt;}
.x13{left:26.240000pt;}
.x15{left:27.360000pt;}
.xc{left:28.480000pt;}
.x16{left:30.400000pt;}
.x14{left:32.320000pt;}
.x26{left:34.560000pt;}
.x28{left:37.120000pt;}
.x25{left:39.200000pt;}
.x19{left:43.200000pt;}
.x1e{left:46.560000pt;}
.x1b{left:47.880000pt;}
.x1f{left:48.800000pt;}
.x1c{left:51.240000pt;}
.x1d{left:53.480000pt;}
.x20{left:58.394667pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x9{left:113.471988pt;}
.x7{left:118.591988pt;}
.x3c{left:137.466655pt;}
.x8{left:142.586655pt;}
.x6{left:150.394667pt;}
.x4{left:180.874667pt;}
.x33{left:215.546667pt;}
.x38{left:280.866667pt;}
.x34{left:336.706667pt;}
.x21{left:340.386667pt;}
.x5{left:384.066655pt;}
.x29{left:394.466667pt;}
.x3{left:404.408000pt;}
.xb{left:417.853333pt;}
.x17{left:425.373333pt;}
.x2d{left:440.733333pt;}
.x22{left:454.013333pt;}
.x36{left:463.453333pt;}
.x2b{left:492.733333pt;}
.xf{left:517.693333pt;}
.x39{left:529.213333pt;}
.x2f{left:543.613333pt;}
.x1a{left:557.693333pt;}
.x37{left:584.893333pt;}
.x2c{left:595.653333pt;}
.x11{left:610.533333pt;}
.x30{left:641.733333pt;}
.x24{left:649.253333pt;}
.x3a{left:652.293333pt;}
}




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