
    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_328275eaaa010bd2c26af83c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_610d866579a1a4bd316b6a31.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.969238;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_d35c96adea56286db4b175e0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.972168;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_287f1f77f6a10a086e1e1b17.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_6e2308c4827db8841c01d176.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.960000;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_968082afabdf24ece2233fbc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.926758;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_28b32f96ac6b39cf1d8940b3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_b2e9a90113d060387074c467.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_39ac3772ceb30d909b2c16e8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.933105;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_eb8c30a64ea881df93a03b68.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_e2eefe926c58af636b2183cf.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.865234;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_ba717e33ea30dcc0da1e63c6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.740723;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_9999a1b6537a246d42d2e5cf.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;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;}
.v1{vertical-align:35.999994px;}
.ls0{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.017982px;}
.ls5{letter-spacing:0.144004px;}
.ls12{letter-spacing:0.288009px;}
.ls20{letter-spacing:0.336010px;}
.ls3{letter-spacing:0.378000px;}
.ls10{letter-spacing:0.756000px;}
.ls11{letter-spacing:0.810000px;}
.ls24{letter-spacing:0.872130px;}
.ls23{letter-spacing:0.923432px;}
.ls1{letter-spacing:1.458000px;}
.ls6{letter-spacing:1.476000px;}
.lsc{letter-spacing:1.512000px;}
.ls4{letter-spacing:1.728000px;}
.ls8{letter-spacing:1.998000px;}
.ls17{letter-spacing:2.016061px;}
.ls13{letter-spacing:2.160066px;}
.ls1b{letter-spacing:16.464502px;}
.ls15{letter-spacing:16.512504px;}
.ls1e{letter-spacing:18.144553px;}
.ls1c{letter-spacing:18.192555px;}
.ls16{letter-spacing:18.288558px;}
.ls18{letter-spacing:18.336559px;}
.lsf{letter-spacing:20.952000px;}
.lsa{letter-spacing:21.006000px;}
.ls7{letter-spacing:22.464000px;}
.lsb{letter-spacing:22.518000px;}
.lsd{letter-spacing:23.922000px;}
.ls9{letter-spacing:23.976000px;}
.lse{letter-spacing:24.030000px;}
.ls1d{letter-spacing:27.264832px;}
.ls19{letter-spacing:47.484000px;}
.ls1a{letter-spacing:51.984000px;}
.ls14{letter-spacing:85.811161px;}
.ls21{letter-spacing:209.094377px;}
.ls1f{letter-spacing:641.455228px;}
.ls2{letter-spacing:920.069000px;}
.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;}
}
.ws1f{word-spacing:-54.000000px;}
.ws56{word-spacing:-51.301758px;}
.ws1b{word-spacing:-48.001464px;}
.ws2{word-spacing:-21.129671px;}
.ws3{word-spacing:-18.854533px;}
.ws12{word-spacing:-16.470000px;}
.ws8{word-spacing:-16.416000px;}
.wsc{word-spacing:-16.254000px;}
.ws4{word-spacing:-14.958000px;}
.ws55{word-spacing:-14.210587px;}
.wsb{word-spacing:-13.711500px;}
.ws36{word-spacing:-13.344407px;}
.wse{word-spacing:-13.296406px;}
.ws0{word-spacing:-11.633594px;}
.ws6{word-spacing:-10.508889px;}
.ws46{word-spacing:-9.972000px;}
.ws1{word-spacing:-0.091802px;}
.wsa{word-spacing:-0.062640px;}
.ws28{word-spacing:-0.055679px;}
.ws54{word-spacing:-0.054000px;}
.ws7{word-spacing:0.000000px;}
.ws9{word-spacing:1.836000px;}
.ws3d{word-spacing:3.216098px;}
.ws37{word-spacing:4.992152px;}
.ws1e{word-spacing:7.506000px;}
.ws1d{word-spacing:7.560000px;}
.ws1c{word-spacing:8.964000px;}
.ws13{word-spacing:9.018000px;}
.ws53{word-spacing:9.936000px;}
.ws3a{word-spacing:19.512000px;}
.ws45{word-spacing:24.012000px;}
.ws52{word-spacing:28.512000px;}
.ws35{word-spacing:33.012000px;}
.ws19{word-spacing:33.777000px;}
.ws3c{word-spacing:37.512000px;}
.ws1a{word-spacing:38.272500px;}
.ws34{word-spacing:42.012000px;}
.ws32{word-spacing:45.537933px;}
.ws21{word-spacing:51.759000px;}
.ws14{word-spacing:54.270000px;}
.ws25{word-spacing:54.877500px;}
.ws3b{word-spacing:55.512000px;}
.ws23{word-spacing:83.268000px;}
.ws27{word-spacing:100.894503px;}
.ws10{word-spacing:100.894517px;}
.ws26{word-spacing:100.930360px;}
.wsd{word-spacing:100.930366px;}
.wsf{word-spacing:100.930374px;}
.ws11{word-spacing:100.966759px;}
.ws16{word-spacing:128.101500px;}
.ws15{word-spacing:160.339500px;}
.ws17{word-spacing:327.969000px;}
.ws18{word-spacing:340.159500px;}
.ws22{word-spacing:341.698500px;}
.ws24{word-spacing:364.925250px;}
.ws20{word-spacing:371.668500px;}
.ws4b{word-spacing:447.012000px;}
.ws5{word-spacing:456.012000px;}
.ws4a{word-spacing:537.012000px;}
.ws2d{word-spacing:569.981048px;}
.ws29{word-spacing:589.613647px;}
.ws2b{word-spacing:596.957871px;}
.ws42{word-spacing:700.401026px;}
.ws48{word-spacing:758.818807px;}
.ws4f{word-spacing:812.820454px;}
.ws40{word-spacing:857.797826px;}
.ws3f{word-spacing:862.357965px;}
.ws2f{word-spacing:875.846376px;}
.ws2e{word-spacing:879.747771px;}
.ws30{word-spacing:884.774649px;}
.ws2c{word-spacing:889.238785px;}
.ws39{word-spacing:889.334788px;}
.ws2a{word-spacing:916.263609px;}
.ws41{word-spacing:925.239883px;}
.ws4c{word-spacing:988.217804px;}
.ws33{word-spacing:1093.212462px;}
.ws38{word-spacing:1136.221774px;}
.ws4e{word-spacing:1142.749973px;}
.ws44{word-spacing:1165.214658px;}
.ws47{word-spacing:1192.239482px;}
.ws43{word-spacing:1197.807652px;}
.ws49{word-spacing:1214.656166px;}
.ws50{word-spacing:1223.632440px;}
.ws3e{word-spacing:1228.048574px;}
.ws4d{word-spacing:1230.880661px;}
.ws31{word-spacing:1237.072850px;}
.ws51{word-spacing:1250.705265px;}
._17{margin-left:-10.311494px;}
._5{margin-left:-8.629365px;}
._3{margin-left:-5.994000px;}
._7{margin-left:-4.880905px;}
._a{margin-left:-3.558375px;}
._4{margin-left:-2.135826px;}
._0{margin-left:-1.007965px;}
._1{width:1.133960px;}
._2{width:2.603909px;}
._6{width:3.855674px;}
._e{width:5.184000px;}
._d{width:7.074040px;}
._f{width:8.222634px;}
._15{width:9.823421px;}
._10{width:10.893485px;}
._12{width:11.948284px;}
._c{width:13.643067px;}
._2e{width:16.125728px;}
._8{width:17.208849px;}
._9{width:19.034280px;}
._2f{width:20.105917px;}
._7d{width:21.318353px;}
._27{width:24.177957px;}
._14{width:25.632004px;}
._13{width:26.656633px;}
._53{width:29.484000px;}
._20{width:31.468500px;}
._11{width:33.372040px;}
._16{width:36.857757px;}
._51{width:42.984000px;}
._23{width:44.995500px;}
._4d{width:47.484000px;}
._1e{width:49.491000px;}
._6a{width:51.984000px;}
._3a{width:59.089802px;}
._1a{width:60.993000px;}
._50{width:65.484000px;}
._34{width:66.829539px;}
._78{width:75.167214px;}
._29{width:77.922000px;}
._30{width:85.826618px;}
._26{width:89.990827px;}
._6e{width:97.508156px;}
._48{width:98.558686px;}
._42{width:103.112915px;}
._18{width:115.434000px;}
._57{width:118.580492px;}
._4f{width:132.984000px;}
._45{width:148.175426px;}
._19{width:175.175426px;}
._5f{width:188.415934px;}
._7a{width:208.696357px;}
._36{width:224.748857px;}
._79{width:228.905720px;}
._41{width:238.044095px;}
._5e{width:247.692455px;}
._69{width:257.554255px;}
._33{width:260.401368px;}
._5b{width:261.989224px;}
._5c{width:289.832053px;}
._2d{width:308.488500px;}
._25{width:324.058522px;}
._1b{width:333.453186px;}
._24{width:341.941500px;}
._76{width:344.484000px;}
._22{width:347.856768px;}
._21{width:352.390500px;}
._1c{width:359.032500px;}
._1f{width:365.855819px;}
._6c{width:378.471726px;}
._38{width:386.813050px;}
._43{width:395.411637px;}
._5d{width:412.871614px;}
._61{width:417.856520px;}
._65{width:436.465139px;}
._6b{width:441.732624px;}
._2a{width:451.070451px;}
._62{width:454.679274px;}
._1d{width:458.076344px;}
._35{width:465.685890px;}
._28{width:480.584826px;}
._7c{width:492.763489px;}
._7b{width:494.263821px;}
._b{width:506.484000px;}
._64{width:518.403328px;}
._4a{width:526.882048px;}
._75{width:541.354272px;}
._59{width:553.335549px;}
._4c{width:557.787398px;}
._5a{width:562.359824px;}
._4b{width:584.902393px;}
._39{width:593.951511px;}
._73{width:598.354779px;}
._6f{width:607.980269px;}
._71{width:621.761831px;}
._2b{width:638.372624px;}
._67{width:642.732762px;}
._60{width:647.497304px;}
._3e{width:649.885125px;}
._40{width:656.766395px;}
._3f{width:671.065544px;}
._44{width:683.972677px;}
._52{width:686.484000px;}
._6d{width:689.971977px;}
._4e{width:695.484000px;}
._63{width:719.462872px;}
._68{width:742.372472px;}
._3d{width:755.314358px;}
._72{width:769.288738px;}
._46{width:809.732924px;}
._49{width:817.179373px;}
._3b{width:827.609648px;}
._2c{width:829.313437px;}
._77{width:833.263093px;}
._56{width:837.460666px;}
._66{width:841.249287px;}
._55{width:868.841310px;}
._58{width:886.268851px;}
._37{width:891.654394px;}
._3c{width:904.904437px;}
._70{width:945.310652px;}
._74{width:972.677239px;}
._32{width:1012.320304px;}
._54{width:1026.736115px;}
._31{width:1029.906836px;}
._47{width:1034.488733px;}
.fc3{color:rgb(10,84,44);}
.fc1{color:rgb(27,138,174);}
.fc6{color:rgb(128,128,128);}
.fc5{color:rgb(60,60,60);}
.fc4{color:rgb(83,83,83);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs4{font-size:37.801758px;}
.fs9{font-size:40.500000px;}
.fs0{font-size:41.998536px;}
.fs3{font-size:48.001464px;}
.fs8{font-size:49.500000px;}
.fsb{font-size:51.301758px;}
.fs1{font-size:54.000000px;}
.fsa{font-size:55.678710px;}
.fs6{font-size:62.639646px;}
.fs5{font-size:70.198242px;}
.fs2{font-size:91.801758px;}
.y0{bottom:0.000000px;}
.y2a3{bottom:4.528235px;}
.y134{bottom:4.763058px;}
.ya1{bottom:4.769250px;}
.ye8{bottom:4.769374px;}
.y2a2{bottom:22.481362px;}
.y133{bottom:23.665401px;}
.ye7{bottom:23.665864px;}
.ya0{bottom:34.312218px;}
.y2a1{bottom:40.434489px;}
.ye6{bottom:42.568213px;}
.y1f{bottom:46.734370px;}
.y132{bottom:53.208369px;}
.y2a0{bottom:58.387616px;}
.y1e{bottom:59.015622px;}
.y1d{bottom:71.302734px;}
.ye5{bottom:72.111181px;}
.y9f{bottom:73.763391px;}
.y29f{bottom:76.346605px;}
.ye3{bottom:84.568500px;}
.y20{bottom:84.868500px;}
.ya2{bottom:85.776000px;}
.ye9{bottom:86.806641px;}
.y46{bottom:89.636713px;}
.yb8{bottom:90.544900px;}
.y9e{bottom:90.562218px;}
.yc6{bottom:91.659000px;}
.y71{bottom:92.637000px;}
.y131{bottom:93.186885px;}
.y48{bottom:93.187500px;}
.y1b9{bottom:93.802734px;}
.y29e{bottom:94.299732px;}
.y1b1{bottom:96.052784px;}
.yd8{bottom:96.421842px;}
.y70{bottom:97.429684px;}
.y22b{bottom:97.915999px;}
.y172{bottom:99.427779px;}
.yf0{bottom:101.455500px;}
.y103{bottom:106.224540px;}
.yc2{bottom:106.910158px;}
.y9d{bottom:107.361047px;}
.y171{bottom:108.427777px;}
.y45{bottom:108.533198px;}
.yb7{bottom:109.441390px;}
.y213{bottom:110.677788px;}
.y1cf{bottom:111.802734px;}
.y130{bottom:112.089234px;}
.ye4{bottom:112.089703px;}
.y29d{bottom:112.252859px;}
.y1c8{bottom:114.052781px;}
.y1f2{bottom:114.052783px;}
.y6f{bottom:114.228516px;}
.yd7{bottom:115.324191px;}
.y22a{bottom:116.818349px;}
.y22d{bottom:116.866500px;}
.y173{bottom:117.427776px;}
.y212{bottom:119.677786px;}
.y109{bottom:119.713500px;}
.y252{bottom:121.628874px;}
.y1f1{bottom:123.052781px;}
.y9c{bottom:124.165734px;}
.y102{bottom:125.121030px;}
.yc1{bottom:125.812500px;}
.y1b8{bottom:126.427734px;}
.y44{bottom:127.435542px;}
.yb6{bottom:128.343740px;}
.y1b0{bottom:128.677783px;}
.y29c{bottom:130.211847px;}
.y6e{bottom:131.027343px;}
.yd6{bottom:134.226540px;}
.y278{bottom:135.298826px;}
.y229{bottom:135.714838px;}
.y150{bottom:137.941445px;}
.y195{bottom:139.927790px;}
.y251{bottom:140.531223px;}
.y9b{bottom:140.964563px;}
.y101{bottom:144.023379px;}
.y1ce{bottom:144.427734px;}
.y43{bottom:146.337869px;}
.y1c7{bottom:146.677780px;}
.yb5{bottom:147.240229px;}
.y6d{bottom:147.826168px;}
.y29b{bottom:148.164975px;}
.y170{bottom:150.052775px;}
.y12f{bottom:150.866578px;}
.yd5{bottom:153.123030px;}
.y277{bottom:153.251954px;}
.y228{bottom:154.617188px;}
.y1b{bottom:155.431624px;}
.y19b{bottom:155.677734px;}
.y9a{bottom:157.763391px;}
.y193{bottom:157.927787px;}
.y217{bottom:159.052734px;}
.y250{bottom:159.427713px;}
.y1af{bottom:161.302782px;}
.y211{bottom:161.302784px;}
.y100{bottom:162.925728px;}
.y6c{bottom:164.625000px;}
.y1ef{bottom:164.677779px;}
.y42{bottom:165.234359px;}
.y29a{bottom:166.118102px;}
.yb4{bottom:166.142505px;}
.y12e{bottom:167.665404px;}
.y1ae{bottom:170.302781px;}
.y14f{bottom:170.566444px;}
.y276{bottom:171.205079px;}
.yd4{bottom:172.025379px;}
.y227{bottom:173.513655px;}
.y1ee{bottom:173.677777px;}
.y1a{bottom:174.328115px;}
.y99{bottom:174.562214px;}
.y194{bottom:175.927784px;}
.y24f{bottom:178.330062px;}
.y1c6{bottom:179.302779px;}
.y279{bottom:180.856500px;}
.y6b{bottom:181.429688px;}
.yff{bottom:181.822218px;}
.y16f{bottom:182.677774px;}
.y1f0{bottom:182.677776px;}
.y299{bottom:184.077090px;}
.y41{bottom:184.136708px;}
.y12d{bottom:184.470089px;}
.y275{bottom:189.164007px;}
.yd3{bottom:190.921869px;}
.y98{bottom:191.361046px;}
.y216{bottom:191.677734px;}
.y16e{bottom:191.677773px;}
.y226{bottom:192.416004px;}
.y19{bottom:193.230463px;}
.y210{bottom:193.927783px;}
.y6a{bottom:198.228516px;}
.yfe{bottom:200.724567px;}
.y12c{bottom:201.268922px;}
.y298{bottom:202.030217px;}
.y40{bottom:203.033198px;}
.y14e{bottom:203.191443px;}
.y19a{bottom:206.302734px;}
.y274{bottom:207.117135px;}
.yc4{bottom:208.136721px;}
.y97{bottom:208.165734px;}
.y192{bottom:208.552783px;}
.yd2{bottom:209.824197px;}
.y24e{bottom:210.732411px;}
.y225{bottom:211.318353px;}
.y1ad{bottom:211.927778px;}
.y18{bottom:212.132812px;}
.y69{bottom:215.027343px;}
.y1ed{bottom:215.302775px;}
.y105{bottom:217.089849px;}
.y12b{bottom:218.067750px;}
.yfd{bottom:219.621057px;}
.y297{bottom:219.983344px;}
.y1ac{bottom:220.927777px;}
.y3f{bottom:221.935525px;}
.y199{bottom:224.302734px;}
.y96{bottom:224.964559px;}
.y273{bottom:225.070262px;}
.y190{bottom:226.552780px;}
.y20f{bottom:226.552782px;}
.yc5{bottom:228.310547px;}
.yc3{bottom:229.435547px;}
.y24d{bottom:229.628901px;}
.y224{bottom:230.214843px;}
.y68{bottom:231.826172px;}
.y16c{bottom:233.302770px;}
.y12a{bottom:234.866578px;}
.y14d{bottom:235.816442px;}
.y296{bottom:237.942328px;}
.yfc{bottom:238.523406px;}
.yee{bottom:238.658206px;}
.ydf{bottom:239.695319px;}
.y3e{bottom:240.837874px;}
.y95{bottom:241.763391px;}
.yd1{bottom:242.226546px;}
.y16b{bottom:242.302769px;}
.y272{bottom:243.029250px;}
.y191{bottom:244.552777px;}
.y1ec{bottom:247.927774px;}
.y24c{bottom:248.531234px;}
.y67{bottom:248.625000px;}
.y178{bottom:249.052734px;}
.y17{bottom:250.013672px;}
.y16d{bottom:251.302767px;}
.y129{bottom:251.665407px;}
.y295{bottom:255.895420px;}
.yfb{bottom:257.425755px;}
.y94{bottom:258.562219px;}
.yde{bottom:258.591799px;}
.yef{bottom:258.832032px;}
.y20e{bottom:259.177781px;}
.y3d{bottom:259.734364px;}
.yed{bottom:259.957032px;}
.y223{bottom:260.871093px;}
.y271{bottom:260.982377px;}
.yd0{bottom:261.123036px;}
.y1ab{bottom:262.552774px;}
.y66{bottom:265.429684px;}
.y24b{bottom:267.427724px;}
.y14c{bottom:268.441441px;}
.y128{bottom:268.470095px;}
.yf4{bottom:269.366766px;}
.y294{bottom:273.848547px;}
.y93{bottom:275.361046px;}
.yfa{bottom:276.322245px;}
.y18f{bottom:277.177776px;}
.y14b{bottom:277.441439px;}
.ydd{bottom:277.494141px;}
.y3c{bottom:278.636713px;}
.y270{bottom:278.935504px;}
.ycf{bottom:280.025385px;}
.y1ea{bottom:280.552773px;}
.y65{bottom:282.228516px;}
.y169{bottom:283.927766px;}
.y127{bottom:285.268918px;}
.y24a{bottom:286.330073px;}
.y1e9{bottom:289.552771px;}
.y20d{bottom:291.802780px;}
.y293{bottom:291.807536px;}
.y92{bottom:292.165734px;}
.y168{bottom:292.927765px;}
.y1aa{bottom:295.177773px;}
.yf9{bottom:295.224594px;}
.y26f{bottom:296.894493px;}
.y3b{bottom:297.533203px;}
.y1eb{bottom:298.552770px;}
.yce{bottom:298.921869px;}
.y64{bottom:299.027345px;}
.y177{bottom:299.677734px;}
.y16{bottom:301.499979px;}
.y16a{bottom:301.927763px;}
.y126{bottom:302.067750px;}
.yf3{bottom:308.677308px;}
.y91{bottom:308.964562px;}
.y292{bottom:309.760663px;}
.y18e{bottom:309.802775px;}
.yf8{bottom:314.121084px;}
.y26e{bottom:314.847620px;}
.y63{bottom:315.826172px;}
.ycd{bottom:317.824203px;}
.y249{bottom:318.732417px;}
.y125{bottom:318.866575px;}
.y14a{bottom:319.066437px;}
.y15{bottom:320.402328px;}
.y20c{bottom:324.427779px;}
.y90{bottom:325.763391px;}
.yf2{bottom:327.573798px;}
.y291{bottom:327.713790px;}
.y1a9{bottom:327.802772px;}
.y149{bottom:328.066435px;}
.y3a{bottom:328.189454px;}
.y104{bottom:330.492188px;}
.y1e7{bottom:331.177769px;}
.y176{bottom:332.302734px;}
.y26d{bottom:332.800747px;}
.yf7{bottom:333.023433px;}
.y62{bottom:333.158204px;}
.y20b{bottom:333.427777px;}
.y167{bottom:334.552762px;}
.y124{bottom:335.665404px;}
.ycc{bottom:336.726552px;}
.y1c5{bottom:336.802771px;}
.y248{bottom:337.628895px;}
.y14{bottom:339.298818px;}
.y1e6{bottom:340.177767px;}
.y18d{bottom:342.427774px;}
.y8f{bottom:342.562214px;}
.y1b7{bottom:343.552734px;}
.y290{bottom:345.672778px;}
.y1a7{bottom:345.802769px;}
.y1e8{bottom:349.177766px;}
.y26c{bottom:350.759736px;}
.yf6{bottom:351.925776px;}
.y123{bottom:352.470093px;}
.ycb{bottom:355.623042px;}
.y247{bottom:356.531244px;}
.yf1{bottom:357.116766px;}
.y13{bottom:358.201167px;}
.y8e{bottom:359.361046px;}
.y61{bottom:363.527343px;}
.y28f{bottom:363.625906px;}
.y1a8{bottom:363.802766px;}
.y166{bottom:367.177761px;}
.y26b{bottom:368.712863px;}
.y122{bottom:369.268922px;}
.y148{bottom:369.691433px;}
.yf5{bottom:370.822266px;}
.yca{bottom:374.525373px;}
.y18c{bottom:375.052773px;}
.y20a{bottom:375.052775px;}
.y246{bottom:375.427729px;}
.y8d{bottom:376.165734px;}
.y165{bottom:376.177760px;}
.y12{bottom:377.103516px;}
.y1c4{bottom:378.427768px;}
.y60{bottom:380.326172px;}
.y28e{bottom:381.579033px;}
.y1e5{bottom:381.802765px;}
.y175{bottom:382.927734px;}
.y39{bottom:383.800770px;}
.y222{bottom:384.052773px;}
.y121{bottom:386.067750px;}
.y26a{bottom:386.665990px;}
.y1c3{bottom:387.427767px;}
.y8c{bottom:392.964559px;}
.y208{bottom:393.052772px;}
.y1b6{bottom:394.177734px;}
.y245{bottom:394.330073px;}
.y1a6{bottom:396.427765px;}
.y5f{bottom:397.125000px;}
.y28d{bottom:399.538021px;}
.y147{bottom:402.316432px;}
.y38{bottom:402.703119px;}
.y120{bottom:402.866578px;}
.y269{bottom:404.619117px;}
.y1a5{bottom:405.427764px;}
.y18b{bottom:407.677772px;}
.y8b{bottom:409.763391px;}
.y209{bottom:411.052769px;}
.y244{bottom:413.232417px;}
.y5e{bottom:413.929688px;}
.y1e4{bottom:414.427764px;}
.y11{bottom:414.978516px;}
.ye1{bottom:416.519533px;}
.y28c{bottom:417.491148px;}
.y164{bottom:417.802757px;}
.y11f{bottom:419.665407px;}
.y37{bottom:421.599594px;}
.y268{bottom:422.578105px;}
.y1e3{bottom:423.427762px;}
.y220{bottom:425.677771px;}
.y8a{bottom:426.562218px;}
.y163{bottom:426.802756px;}
.y1c2{bottom:429.052764px;}
.y5d{bottom:430.728516px;}
.y243{bottom:432.128853px;}
.y221{bottom:434.677769px;}
.y146{bottom:434.941431px;}
.y28b{bottom:435.444275px;}
.y11e{bottom:436.470089px;}
.ye2{bottom:436.693359px;}
.ye0{bottom:437.818359px;}
.y18a{bottom:440.302771px;}
.y36{bottom:440.501943px;}
.y267{bottom:440.531233px;}
.y89{bottom:443.361046px;}
.y205{bottom:443.677768px;}
.y1a4{bottom:447.052761px;}
.y5c{bottom:447.527343px;}
.y207{bottom:452.677766px;}
.y11d{bottom:453.268922px;}
.y28a{bottom:453.403264px;}
.y10{bottom:454.734375px;}
.y266{bottom:458.484360px;}
.y35{bottom:459.398433px;}
.y88{bottom:460.165734px;}
.y1c1{bottom:461.677763px;}
.y203{bottom:461.677765px;}
.y1f6{bottom:462.802734px;}
.y5b{bottom:464.326168px;}
.y242{bottom:464.531202px;}
.y1e2{bottom:465.052760px;}
.y145{bottom:467.566430px;}
.y162{bottom:468.427753px;}
.y11c{bottom:470.067746px;}
.y1c0{bottom:470.677762px;}
.y206{bottom:470.677763px;}
.y289{bottom:471.356391px;}
.y189{bottom:472.927770px;}
.y265{bottom:476.443348px;}
.y87{bottom:476.964562px;}
.y34{bottom:478.300776px;}
.y1a3{bottom:479.677760px;}
.y204{bottom:479.677762px;}
.y5a{bottom:481.125000px;}
.y241{bottom:483.427692px;}
.y11b{bottom:486.866575px;}
.y288{bottom:489.309509px;}
.y187{bottom:490.927767px;}
.y86{bottom:493.763391px;}
.y21d{bottom:494.302764px;}
.y264{bottom:494.396475px;}
.y1f5{bottom:495.427734px;}
.y33{bottom:497.203119px;}
.y1e1{bottom:497.677759px;}
.y59{bottom:497.929688px;}
.y144{bottom:500.191429px;}
.y160{bottom:501.052752px;}
.y240{bottom:502.330041px;}
.y21f{bottom:503.302762px;}
.y11a{bottom:503.665407px;}
.y287{bottom:507.262637px;}
.y188{bottom:508.927764px;}
.y1cd{bottom:510.052734px;}
.y15f{bottom:510.052751px;}
.y107{bottom:510.404299px;}
.y85{bottom:510.562214px;}
.y1a2{bottom:512.302759px;}
.y202{bottom:512.302761px;}
.y263{bottom:512.349602px;}
.y58{bottom:514.728516px;}
.y32{bottom:516.099588px;}
.y174{bottom:516.802734px;}
.y161{bottom:519.052749px;}
.y119{bottom:520.470093px;}
.y23f{bottom:521.232390px;}
.y1a1{bottom:521.302758px;}
.y21e{bottom:521.302759px;}
.yf{bottom:523.833984px;}
.y286{bottom:525.221625px;}
.y84{bottom:527.361046px;}
.y1bf{bottom:530.302756px;}
.y1df{bottom:530.302758px;}
.y262{bottom:530.308591px;}
.y108{bottom:530.578125px;}
.y106{bottom:531.703125px;}
.y57{bottom:532.054690px;}
.y143{bottom:532.816428px;}
.y31{bottom:535.001937px;}
.y118{bottom:537.268922px;}
.y1de{bottom:539.302756px;}
.y23e{bottom:540.128880px;}
.y186{bottom:541.552763px;}
.y285{bottom:543.174743px;}
.y83{bottom:544.165734px;}
.y200{bottom:544.927760px;}
.ye{bottom:545.132802px;}
.y261{bottom:548.261718px;}
.y1e0{bottom:548.302755px;}
.y15e{bottom:551.677748px;}
.y30{bottom:553.898427px;}
.y1ff{bottom:553.927758px;}
.y117{bottom:554.067750px;}
.y23d{bottom:559.031229px;}
.y184{bottom:559.552760px;}
.y1cc{bottom:560.677734px;}
.y82{bottom:560.964559px;}
.y284{bottom:561.127871px;}
.yd{bottom:561.937487px;}
.y56{bottom:562.048828px;}
.y19f{bottom:562.927755px;}
.y201{bottom:562.927757px;}
.y142{bottom:565.441427px;}
.y260{bottom:566.214836px;}
.y116{bottom:570.866579px;}
.y19e{bottom:571.927754px;}
.y2f{bottom:572.800776px;}
.y185{bottom:577.552757px;}
.y81{bottom:577.763391px;}
.y23c{bottom:577.927719px;}
.yc{bottom:578.736313px;}
.y283{bottom:579.086859px;}
.y1a0{bottom:580.927752px;}
.y1dd{bottom:580.927754px;}
.y25f{bottom:584.173824px;}
.y15d{bottom:584.302747px;}
.y115{bottom:587.665406px;}
.y1dc{bottom:589.927752px;}
.y55{bottom:593.085938px;}
.y80{bottom:594.562219px;}
.y1fe{bottom:595.552756px;}
.y23b{bottom:596.830068px;}
.y282{bottom:597.039984px;}
.y140{bottom:598.066426px;}
.yb{bottom:600.035146px;}
.y25e{bottom:602.126951px;}
.y114{bottom:604.470095px;}
.y1fd{bottom:604.552754px;}
.y2e{bottom:605.203119px;}
.y13f{bottom:607.066424px;}
.yeb{bottom:607.330081px;}
.y183{bottom:610.177756px;}
.y7f{bottom:611.361046px;}
.y19d{bottom:613.552751px;}
.y281{bottom:614.993105px;}
.y23a{bottom:615.732417px;}
.y141{bottom:616.066423px;}
.y15c{bottom:616.927746px;}
.y182{bottom:619.177755px;}
.y25d{bottom:620.080078px;}
.y113{bottom:621.268918px;}
.yc0{bottom:621.298835px;}
.ya{bottom:621.333979px;}
.y54{bottom:623.759766px;}
.yb3{bottom:623.830008px;}
.y2d{bottom:624.099604px;}
.yec{bottom:627.503907px;}
.y7e{bottom:628.165734px;}
.yea{bottom:628.628907px;}
.y1db{bottom:631.552750px;}
.y280{bottom:632.952093px;}
.y25c{bottom:638.039058px;}
.y112{bottom:638.067746px;}
.ybf{bottom:640.201177px;}
.y9{bottom:642.632812px;}
.yb2{bottom:642.732357px;}
.y2c{bottom:643.001948px;}
.y7d{bottom:644.964562px;}
.y19c{bottom:646.177750px;}
.y1fc{bottom:646.177752px;}
.y239{bottom:648.128885px;}
.y13e{bottom:648.691422px;}
.y15b{bottom:649.552745px;}
.y27f{bottom:650.905213px;}
.y111{bottom:654.866579px;}
.y1fb{bottom:655.177750px;}
.y25b{bottom:655.992185px;}
.y53{bottom:656.859375px;}
.ybe{bottom:659.097657px;}
.y180{bottom:660.802752px;}
.yb1{bottom:661.628847px;}
.y7c{bottom:661.763391px;}
.y2b{bottom:661.898433px;}
.y1da{bottom:664.177749px;}
.y13c{bottom:666.691419px;}
.y238{bottom:667.031233px;}
.y27e{bottom:668.858340px;}
.y17f{bottom:669.802751px;}
.y110{bottom:671.665407px;}
.y25a{bottom:673.945312px;}
.y7b{bottom:678.562214px;}
.y181{bottom:678.802749px;}
.y21c{bottom:678.802751px;}
.yb0{bottom:680.531196px;}
.y2a{bottom:680.800776px;}
.y15a{bottom:682.177744px;}
.y13d{bottom:684.691416px;}
.y237{bottom:685.927723px;}
.y27d{bottom:686.817328px;}
.y1bd{bottom:687.802748px;}
.y21b{bottom:687.802749px;}
.y10f{bottom:688.470093px;}
.y8{bottom:692.888671px;}
.y1cb{bottom:694.552734px;}
.y7a{bottom:695.361046px;}
.y1be{bottom:696.802746px;}
.y1d9{bottom:696.802748px;}
.yaf{bottom:699.427686px;}
.y29{bottom:699.703119px;}
.y27c{bottom:704.770453px;}
.y236{bottom:704.830073px;}
.y10e{bottom:705.268922px;}
.y17e{bottom:711.427748px;}
.y259{bottom:711.457032px;}
.y79{bottom:712.165734px;}
.y52{bottom:712.470693px;}
.y7{bottom:713.847657px;}
.y159{bottom:714.802743px;}
.ybd{bottom:715.798832px;}
.y13b{bottom:717.316415px;}
.yae{bottom:718.330035px;}
.y1c{bottom:718.347657px;}
.y28{bottom:718.599598px;}
.y10d{bottom:722.067750px;}
.y27b{bottom:722.723574px;}
.y235{bottom:723.732421px;}
.y78{bottom:728.964559px;}
.y1bc{bottom:729.427745px;}
.y1d7{bottom:729.427747px;}
.y51{bottom:731.373042px;}
.ybc{bottom:734.701174px;}
.y139{bottom:735.316412px;}
.yad{bottom:737.232384px;}
.y27{bottom:737.501948px;}
.y1bb{bottom:738.427744px;}
.y1d6{bottom:738.427745px;}
.y10c{bottom:738.866579px;}
.y27a{bottom:740.682562px;}
.y1b5{bottom:741.802734px;}
.y17d{bottom:744.052747px;}
.y1ca{bottom:745.177734px;}
.y77{bottom:745.763391px;}
.y158{bottom:747.427742px;}
.y1d8{bottom:747.427744px;}
.y50{bottom:750.269532px;}
.y17c{bottom:753.052746px;}
.y13a{bottom:753.316409px;}
.yac{bottom:756.128874px;}
.y234{bottom:756.128891px;}
.y6{bottom:756.158206px;}
.y26{bottom:756.398427px;}
.y1b4{bottom:759.802734px;}
.y21a{bottom:762.052746px;}
.y76{bottom:762.562219px;}
.y258{bottom:767.068326px;}
.y10b{bottom:767.290407px;}
.ybb{bottom:772.500006px;}
.yab{bottom:775.031223px;}
.y25{bottom:775.300776px;}
.y1c9{bottom:777.802734px;}
.y75{bottom:779.361046px;}
.y157{bottom:780.052741px;}
.y1d5{bottom:780.052743px;}
.y4f{bottom:781.494141px;}
.ya5{bottom:783.755244px;}
.y22f{bottom:785.061230px;}
.y138{bottom:785.941408px;}
.y257{bottom:785.964816px;}
.y1f4{bottom:786.802734px;}
.y233{bottom:788.531240px;}
.y1d4{bottom:789.052741px;}
.yc9{bottom:791.372240px;}
.yba{bottom:791.396486px;}
.y1b3{bottom:792.427734px;}
.y5{bottom:793.710931px;}
.yaa{bottom:793.927713px;}
.y24{bottom:794.203125px;}
.y17b{bottom:794.677743px;}
.y218{bottom:794.677745px;}
.y74{bottom:796.165734px;}
.y10a{bottom:798.673218px;}
.ya4{bottom:802.651729px;}
.y17a{bottom:803.677742px;}
.y219{bottom:803.677743px;}
.y22e{bottom:803.963579px;}
.y256{bottom:804.867165px;}
.y232{bottom:807.427730px;}
.y4a{bottom:808.740230px;}
.yc8{bottom:810.268730px;}
.yb9{bottom:810.298829px;}
.y198{bottom:810.427734px;}
.y156{bottom:812.677740px;}
.y1fa{bottom:812.677742px;}
.ya9{bottom:812.830062px;}
.y73{bottom:812.964562px;}
.y137{bottom:818.566407px;}
.y1f9{bottom:821.677740px;}
.y255{bottom:823.763655px;}
.y23{bottom:824.853516px;}
.y21{bottom:826.252593px;}
.y4e{bottom:826.330062px;}
.y231{bottom:826.330079px;}
.y49{bottom:827.642579px;}
.yc7{bottom:829.171079px;}
.y72{bottom:829.763391px;}
.y1d3{bottom:830.677739px;}
.y4{bottom:831.269532px;}
.ya8{bottom:831.732411px;}
.ya3{bottom:835.054079px;}
.y1f3{bottom:837.427734px;}
.y1d2{bottom:839.677737px;}
.y254{bottom:842.666004px;}
.ydc{bottom:842.701182px;}
.y197{bottom:843.052734px;}
.y4d{bottom:845.232411px;}
.y230{bottom:845.232421px;}
.y155{bottom:845.302739px;}
.ya7{bottom:850.628901px;}
.y154{bottom:854.302738px;}
.y196{bottom:861.052734px;}
.y253{bottom:861.568353px;}
.ydb{bottom:861.597662px;}
.y136{bottom:861.708984px;}
.y179{bottom:863.302736px;}
.y1f8{bottom:863.302738px;}
.y4c{bottom:864.128901px;}
.ya6{bottom:869.531250px;}
.y215{bottom:870.052734px;}
.y1f7{bottom:872.302736px;}
.y22c{bottom:879.052734px;}
.y22{bottom:880.464843px;}
.yda{bottom:880.500004px;}
.y1d1{bottom:881.302735px;}
.y4b{bottom:883.031250px;}
.y1b2{bottom:893.677734px;}
.y153{bottom:895.927736px;}
.y3{bottom:899.378907px;}
.yd9{bottom:899.396484px;}
.y152{bottom:904.927734px;}
.y135{bottom:911.121093px;}
.y214{bottom:911.677734px;}
.y1ba{bottom:913.927732px;}
.y1d0{bottom:913.927734px;}
.y2{bottom:939.462894px;}
.y1{bottom:955.212891px;}
.y47{bottom:974.730470px;}
.y151{bottom:974.730494px;}
.h23{height:26.208984px;}
.ha{height:26.244141px;}
.h6{height:27.557629px;}
.hb{height:28.048904px;}
.h19{height:29.485107px;}
.h1f{height:29.524658px;}
.h1{height:30.617097px;}
.h7{height:30.617140px;}
.h1a{height:31.993163px;}
.h24{height:34.946378px;}
.h5{height:34.993255px;}
.h10{height:35.617086px;}
.h13{height:36.085693px;}
.h28{height:37.399182px;}
.h2c{height:37.399307px;}
.h2b{height:37.399316px;}
.h29{height:37.399403px;}
.h15{height:39.313477px;}
.h2{height:39.366211px;}
.he{height:39.366271px;}
.h25{height:39.366277px;}
.h1c{height:39.366283px;}
.hd{height:39.366295px;}
.hf{height:39.366301px;}
.h27{height:39.366427px;}
.h18{height:39.366505px;}
.h14{height:40.341797px;}
.h21{height:40.535623px;}
.h9{height:46.796220px;}
.h12{height:48.050236px;}
.h8{height:52.443023px;}
.h3{height:68.582368px;}
.h4{height:70.420196px;}
.h22{height:70.993249px;}
.h2a{height:754.107000px;}
.h20{height:815.250000px;}
.h26{height:818.097000px;}
.h1e{height:833.508000px;}
.h11{height:841.776000px;}
.h16{height:842.326500px;}
.h1b{height:843.304500px;}
.h17{height:849.187500px;}
.hc{height:850.095000px;}
.h1d{height:850.395000px;}
.h0{height:1020.000000px;}
.w1{width:544.254000px;}
.w0{width:700.500000px;}
.x0{left:0.000000px;}
.x3f{left:11.584593px;}
.x10{left:22.500609px;}
.xe{left:28.875607px;}
.xd{left:30.000605px;}
.xf{left:32.250614px;}
.x40{left:45.000609px;}
.xc{left:67.500609px;}
.x3{left:78.662109px;}
.x26{left:86.537109px;}
.x7{left:90.474609px;}
.x5{left:94.412109px;}
.x4{left:95.537109px;}
.x8{left:101.162109px;}
.x9{left:107.537109px;}
.x15{left:109.037102px;}
.x27{left:114.662103px;}
.x3d{left:118.037109px;}
.x2b{left:119.162108px;}
.x31{left:120.287109px;}
.x2d{left:121.412109px;}
.x3e{left:123.662109px;}
.xb{left:129.164062px;}
.x17{left:136.904281px;}
.x1{left:140.308593px;}
.x22{left:143.912108px;}
.xa{left:146.162109px;}
.x3b{left:148.412109px;}
.x37{left:152.912109px;}
.x1d{left:154.822266px;}
.x1b{left:160.787109px;}
.x18{left:163.037099px;}
.x2f{left:178.787109px;}
.x33{left:202.412109px;}
.x13{left:203.496093px;}
.x6{left:218.162109px;}
.x30{left:221.537109px;}
.x2c{left:226.037109px;}
.x2a{left:232.787109px;}
.x35{left:264.287109px;}
.x38{left:273.287109px;}
.x2{left:277.664062px;}
.x25{left:288.955081px;}
.x1f{left:290.162118px;}
.x20{left:292.330079px;}
.x16{left:295.775383px;}
.x39{left:300.287109px;}
.x34{left:304.787109px;}
.x36{left:335.162109px;}
.x21{left:346.628904px;}
.x29{left:354.287109px;}
.x32{left:359.912109px;}
.x2e{left:361.037109px;}
.x3a{left:373.412109px;}
.x3c{left:374.537109px;}
.x14{left:455.841792px;}
.x28{left:460.939444px;}
.x19{left:481.236328px;}
.x1e{left:484.230474px;}
.x24{left:506.537109px;}
.x12{left:549.035157px;}
.x23{left:562.166016px;}
.x11{left:611.666016px;}
.x1c{left:615.041016px;}
.x1a{left:617.291016px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:31.999995pt;}
.ls0{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.015984pt;}
.ls5{letter-spacing:0.128004pt;}
.ls12{letter-spacing:0.256008pt;}
.ls20{letter-spacing:0.298676pt;}
.ls3{letter-spacing:0.336000pt;}
.ls10{letter-spacing:0.672000pt;}
.ls11{letter-spacing:0.720000pt;}
.ls24{letter-spacing:0.775227pt;}
.ls23{letter-spacing:0.820828pt;}
.ls1{letter-spacing:1.296000pt;}
.ls6{letter-spacing:1.312000pt;}
.lsc{letter-spacing:1.344000pt;}
.ls4{letter-spacing:1.536000pt;}
.ls8{letter-spacing:1.776000pt;}
.ls17{letter-spacing:1.792055pt;}
.ls13{letter-spacing:1.920059pt;}
.ls1b{letter-spacing:14.635113pt;}
.ls15{letter-spacing:14.677781pt;}
.ls1e{letter-spacing:16.128492pt;}
.ls1c{letter-spacing:16.171160pt;}
.ls16{letter-spacing:16.256496pt;}
.ls18{letter-spacing:16.299164pt;}
.lsf{letter-spacing:18.624000pt;}
.lsa{letter-spacing:18.672000pt;}
.ls7{letter-spacing:19.968000pt;}
.lsb{letter-spacing:20.016000pt;}
.lsd{letter-spacing:21.264000pt;}
.ls9{letter-spacing:21.312000pt;}
.lse{letter-spacing:21.360000pt;}
.ls1d{letter-spacing:24.235406pt;}
.ls19{letter-spacing:42.208000pt;}
.ls1a{letter-spacing:46.208000pt;}
.ls14{letter-spacing:76.276588pt;}
.ls21{letter-spacing:185.861669pt;}
.ls1f{letter-spacing:570.182425pt;}
.ls2{letter-spacing:817.839111pt;}
.ws1f{word-spacing:-48.000000pt;}
.ws56{word-spacing:-45.601563pt;}
.ws1b{word-spacing:-42.667968pt;}
.ws2{word-spacing:-18.781930pt;}
.ws3{word-spacing:-16.759585pt;}
.ws12{word-spacing:-14.640000pt;}
.ws8{word-spacing:-14.592000pt;}
.wsc{word-spacing:-14.448000pt;}
.ws4{word-spacing:-13.296000pt;}
.ws55{word-spacing:-12.631633pt;}
.wsb{word-spacing:-12.188000pt;}
.ws36{word-spacing:-11.861695pt;}
.wse{word-spacing:-11.819027pt;}
.ws0{word-spacing:-10.340973pt;}
.ws6{word-spacing:-9.341234pt;}
.ws46{word-spacing:-8.864000pt;}
.ws1{word-spacing:-0.081602pt;}
.wsa{word-spacing:-0.055680pt;}
.ws28{word-spacing:-0.049492pt;}
.ws54{word-spacing:-0.048000pt;}
.ws7{word-spacing:0.000000pt;}
.ws9{word-spacing:1.632000pt;}
.ws3d{word-spacing:2.858754pt;}
.ws37{word-spacing:4.437469pt;}
.ws1e{word-spacing:6.672000pt;}
.ws1d{word-spacing:6.720000pt;}
.ws1c{word-spacing:7.968000pt;}
.ws13{word-spacing:8.016000pt;}
.ws53{word-spacing:8.832000pt;}
.ws3a{word-spacing:17.344000pt;}
.ws45{word-spacing:21.344000pt;}
.ws52{word-spacing:25.344000pt;}
.ws35{word-spacing:29.344000pt;}
.ws19{word-spacing:30.024000pt;}
.ws3c{word-spacing:33.344000pt;}
.ws1a{word-spacing:34.020000pt;}
.ws34{word-spacing:37.344000pt;}
.ws32{word-spacing:40.478163pt;}
.ws21{word-spacing:46.008000pt;}
.ws14{word-spacing:48.240000pt;}
.ws25{word-spacing:48.780000pt;}
.ws3b{word-spacing:49.344000pt;}
.ws23{word-spacing:74.016000pt;}
.ws27{word-spacing:89.684003pt;}
.ws10{word-spacing:89.684015pt;}
.ws26{word-spacing:89.715876pt;}
.wsd{word-spacing:89.715881pt;}
.wsf{word-spacing:89.715888pt;}
.ws11{word-spacing:89.748231pt;}
.ws16{word-spacing:113.868000pt;}
.ws15{word-spacing:142.524000pt;}
.ws17{word-spacing:291.528000pt;}
.ws18{word-spacing:302.364000pt;}
.ws22{word-spacing:303.732000pt;}
.ws24{word-spacing:324.378000pt;}
.ws20{word-spacing:330.372000pt;}
.ws4b{word-spacing:397.344000pt;}
.ws5{word-spacing:405.344000pt;}
.ws4a{word-spacing:477.344000pt;}
.ws2d{word-spacing:506.649820pt;}
.ws29{word-spacing:524.101019pt;}
.ws2b{word-spacing:530.629218pt;}
.ws42{word-spacing:622.578689pt;}
.ws48{word-spacing:674.505606pt;}
.ws4f{word-spacing:722.507070pt;}
.ws40{word-spacing:762.486956pt;}
.ws3f{word-spacing:766.540413pt;}
.ws2f{word-spacing:778.530112pt;}
.ws2e{word-spacing:781.998019pt;}
.ws30{word-spacing:786.466354pt;}
.ws2c{word-spacing:790.434476pt;}
.ws39{word-spacing:790.519811pt;}
.ws2a{word-spacing:814.456542pt;}
.ws41{word-spacing:822.435452pt;}
.ws4c{word-spacing:878.415826pt;}
.ws33{word-spacing:971.744411pt;}
.ws38{word-spacing:1009.974910pt;}
.ws4e{word-spacing:1015.777754pt;}
.ws44{word-spacing:1035.746363pt;}
.ws47{word-spacing:1059.768429pt;}
.ws43{word-spacing:1064.717913pt;}
.ws49{word-spacing:1079.694370pt;}
.ws50{word-spacing:1087.673280pt;}
.ws3e{word-spacing:1091.598733pt;}
.ws4d{word-spacing:1094.116143pt;}
.ws31{word-spacing:1099.620311pt;}
.ws51{word-spacing:1111.738014pt;}
._17{margin-left:-9.165773pt;}
._5{margin-left:-7.670547pt;}
._3{margin-left:-5.328000pt;}
._7{margin-left:-4.338582pt;}
._a{margin-left:-3.163000pt;}
._4{margin-left:-1.898512pt;}
._0{margin-left:-0.895969pt;}
._1{width:1.007965pt;}
._2{width:2.314586pt;}
._6{width:3.427266pt;}
._e{width:4.608000pt;}
._d{width:6.288035pt;}
._f{width:7.309008pt;}
._15{width:8.731929pt;}
._10{width:9.683098pt;}
._12{width:10.620697pt;}
._c{width:12.127171pt;}
._2e{width:14.333980pt;}
._8{width:15.296755pt;}
._9{width:16.919360pt;}
._2f{width:17.871926pt;}
._7d{width:18.949647pt;}
._27{width:21.491517pt;}
._14{width:22.784004pt;}
._13{width:23.694784pt;}
._53{width:26.208000pt;}
._20{width:27.972000pt;}
._11{width:29.664035pt;}
._16{width:32.762450pt;}
._51{width:38.208000pt;}
._23{width:39.996000pt;}
._4d{width:42.208000pt;}
._1e{width:43.992000pt;}
._6a{width:46.208000pt;}
._3a{width:52.524269pt;}
._1a{width:54.216000pt;}
._50{width:58.208000pt;}
._34{width:59.404034pt;}
._78{width:66.815302pt;}
._29{width:69.264000pt;}
._30{width:76.290327pt;}
._26{width:79.991846pt;}
._6e{width:86.673917pt;}
._48{width:87.607721pt;}
._42{width:91.655924pt;}
._18{width:102.608000pt;}
._57{width:105.404882pt;}
._4f{width:118.208000pt;}
._45{width:131.711490pt;}
._19{width:155.711490pt;}
._5f{width:167.480830pt;}
._7a{width:185.507873pt;}
._36{width:199.776762pt;}
._79{width:203.471751pt;}
._41{width:211.594751pt;}
._5e{width:220.171071pt;}
._69{width:228.937115pt;}
._33{width:231.467883pt;}
._5b{width:232.879310pt;}
._5c{width:257.628492pt;}
._2d{width:274.212000pt;}
._25{width:288.052020pt;}
._1b{width:296.402832pt;}
._24{width:303.948000pt;}
._76{width:306.208000pt;}
._22{width:309.206016pt;}
._21{width:313.236000pt;}
._1c{width:319.140000pt;}
._1f{width:325.205172pt;}
._6c{width:336.419312pt;}
._38{width:343.833822pt;}
._43{width:351.477011pt;}
._5d{width:366.996990pt;}
._61{width:371.428018pt;}
._65{width:387.969013pt;}
._6b{width:392.651221pt;}
._2a{width:400.951512pt;}
._62{width:404.159355pt;}
._1d{width:407.178972pt;}
._35{width:413.943013pt;}
._28{width:427.186512pt;}
._7c{width:438.011990pt;}
._7b{width:439.345619pt;}
._b{width:450.208000pt;}
._64{width:460.802958pt;}
._4a{width:468.339598pt;}
._75{width:481.203797pt;}
._59{width:491.853821pt;}
._4c{width:495.811020pt;}
._5a{width:499.875399pt;}
._4b{width:519.913239pt;}
._39{width:527.956898pt;}
._73{width:531.870914pt;}
._6f{width:540.426906pt;}
._71{width:552.677183pt;}
._2b{width:567.442332pt;}
._67{width:571.318011pt;}
._60{width:575.553159pt;}
._3e{width:577.675667pt;}
._40{width:583.792351pt;}
._3f{width:596.502706pt;}
._44{width:607.975713pt;}
._52{width:610.208000pt;}
._6d{width:613.308424pt;}
._4e{width:618.208000pt;}
._63{width:639.522553pt;}
._68{width:659.886642pt;}
._3d{width:671.390540pt;}
._72{width:683.812212pt;}
._46{width:719.762599pt;}
._49{width:726.381665pt;}
._3b{width:735.653020pt;}
._2c{width:737.167500pt;}
._77{width:740.678305pt;}
._56{width:744.409481pt;}
._66{width:747.777144pt;}
._55{width:772.303387pt;}
._58{width:787.794534pt;}
._37{width:792.581683pt;}
._3c{width:804.359499pt;}
._70{width:840.276135pt;}
._74{width:864.601990pt;}
._32{width:899.840271pt;}
._54{width:912.654324pt;}
._31{width:915.472743pt;}
._47{width:919.545540pt;}
.fs7{font-size:32.000000pt;}
.fs4{font-size:33.601563pt;}
.fs9{font-size:36.000000pt;}
.fs0{font-size:37.332032pt;}
.fs3{font-size:42.667968pt;}
.fs8{font-size:44.000000pt;}
.fsb{font-size:45.601563pt;}
.fs1{font-size:48.000000pt;}
.fsa{font-size:49.492187pt;}
.fs6{font-size:55.679685pt;}
.fs5{font-size:62.398437pt;}
.fs2{font-size:81.601563pt;}
.y0{bottom:0.000000pt;}
.y2a3{bottom:4.025098pt;}
.y134{bottom:4.233829pt;}
.ya1{bottom:4.239333pt;}
.ye8{bottom:4.239444pt;}
.y2a2{bottom:19.983433pt;}
.y133{bottom:21.035912pt;}
.ye7{bottom:21.036324pt;}
.ya0{bottom:30.499749pt;}
.y2a1{bottom:35.941768pt;}
.ye6{bottom:37.838412pt;}
.y1f{bottom:41.541662pt;}
.y132{bottom:47.296328pt;}
.y2a0{bottom:51.900103pt;}
.y1e{bottom:52.458331pt;}
.y1d{bottom:63.380208pt;}
.ye5{bottom:64.098828pt;}
.y9f{bottom:65.567459pt;}
.y29f{bottom:67.863649pt;}
.ye3{bottom:75.172000pt;}
.y20{bottom:75.438667pt;}
.ya2{bottom:76.245333pt;}
.ye9{bottom:77.161459pt;}
.y46{bottom:79.677079pt;}
.yb8{bottom:80.484356pt;}
.y9e{bottom:80.499749pt;}
.yc6{bottom:81.474667pt;}
.y71{bottom:82.344000pt;}
.y131{bottom:82.832787pt;}
.y48{bottom:82.833333pt;}
.y1b9{bottom:83.380208pt;}
.y29e{bottom:83.821984pt;}
.y1b1{bottom:85.380253pt;}
.yd8{bottom:85.708304pt;}
.y70{bottom:86.604163pt;}
.y22b{bottom:87.036444pt;}
.y172{bottom:88.380248pt;}
.yf0{bottom:90.182667pt;}
.y103{bottom:94.421813pt;}
.yc2{bottom:95.031251pt;}
.y9d{bottom:95.432041pt;}
.y171{bottom:96.380247pt;}
.y45{bottom:96.473953pt;}
.yb7{bottom:97.281236pt;}
.y213{bottom:98.380256pt;}
.y1cf{bottom:99.380208pt;}
.y130{bottom:99.634875pt;}
.ye4{bottom:99.635292pt;}
.y29d{bottom:99.780319pt;}
.y1c8{bottom:101.380250pt;}
.y1f2{bottom:101.380251pt;}
.y6f{bottom:101.536459pt;}
.yd7{bottom:102.510392pt;}
.y22a{bottom:103.838532pt;}
.y22d{bottom:103.881333pt;}
.y173{bottom:104.380245pt;}
.y212{bottom:106.380254pt;}
.y109{bottom:106.412000pt;}
.y252{bottom:108.114555pt;}
.y1f1{bottom:109.380250pt;}
.y9c{bottom:110.369541pt;}
.y102{bottom:111.218693pt;}
.yc1{bottom:111.833333pt;}
.y1b8{bottom:112.380208pt;}
.y44{bottom:113.276037pt;}
.yb6{bottom:114.083324pt;}
.y1b0{bottom:114.380252pt;}
.y29c{bottom:115.743864pt;}
.y6e{bottom:116.468749pt;}
.yd6{bottom:119.312480pt;}
.y278{bottom:120.265623pt;}
.y229{bottom:120.635412pt;}
.y150{bottom:122.614617pt;}
.y195{bottom:124.380258pt;}
.y251{bottom:124.916643pt;}
.y9b{bottom:125.301833pt;}
.y101{bottom:128.020781pt;}
.y1ce{bottom:128.380208pt;}
.y43{bottom:130.078105pt;}
.y1c7{bottom:130.380249pt;}
.yb5{bottom:130.880204pt;}
.y6d{bottom:131.401038pt;}
.y29b{bottom:131.702200pt;}
.y170{bottom:133.380244pt;}
.y12f{bottom:134.103625pt;}
.yd5{bottom:136.109360pt;}
.y277{bottom:136.223959pt;}
.y228{bottom:137.437500pt;}
.y1b{bottom:138.161444pt;}
.y19b{bottom:138.380208pt;}
.y9a{bottom:140.234125pt;}
.y193{bottom:140.380255pt;}
.y217{bottom:141.380208pt;}
.y250{bottom:141.713523pt;}
.y1af{bottom:143.380251pt;}
.y211{bottom:143.380252pt;}
.y100{bottom:144.822869pt;}
.y6c{bottom:146.333333pt;}
.y1ef{bottom:146.380248pt;}
.y42{bottom:146.874985pt;}
.y29a{bottom:147.660535pt;}
.yb4{bottom:147.682227pt;}
.y12e{bottom:149.035915pt;}
.y1ae{bottom:151.380249pt;}
.y14f{bottom:151.614617pt;}
.y276{bottom:152.182292pt;}
.yd4{bottom:152.911448pt;}
.y227{bottom:154.234360pt;}
.y1ee{bottom:154.380246pt;}
.y1a{bottom:154.958324pt;}
.y99{bottom:155.166413pt;}
.y194{bottom:156.380253pt;}
.y24f{bottom:158.515611pt;}
.y1c6{bottom:159.380248pt;}
.y279{bottom:160.761333pt;}
.y6b{bottom:161.270833pt;}
.yff{bottom:161.619749pt;}
.y16f{bottom:162.380244pt;}
.y1f0{bottom:162.380245pt;}
.y299{bottom:163.624080pt;}
.y41{bottom:163.677073pt;}
.y12d{bottom:163.973413pt;}
.y275{bottom:168.145784pt;}
.yd3{bottom:169.708328pt;}
.y98{bottom:170.098708pt;}
.y216{bottom:170.380208pt;}
.y16e{bottom:170.380242pt;}
.y226{bottom:171.036448pt;}
.y19{bottom:171.760412pt;}
.y210{bottom:172.380251pt;}
.y6a{bottom:176.203125pt;}
.yfe{bottom:178.421837pt;}
.y12c{bottom:178.905708pt;}
.y298{bottom:179.582415pt;}
.y40{bottom:180.473953pt;}
.y14e{bottom:180.614616pt;}
.y19a{bottom:183.380208pt;}
.y274{bottom:184.104120pt;}
.yc4{bottom:185.010419pt;}
.y97{bottom:185.036208pt;}
.y192{bottom:185.380252pt;}
.yd2{bottom:186.510397pt;}
.y24e{bottom:187.317699pt;}
.y225{bottom:187.838536pt;}
.y1ad{bottom:188.380247pt;}
.y18{bottom:188.562500pt;}
.y69{bottom:191.135416pt;}
.y1ed{bottom:191.380244pt;}
.y105{bottom:192.968754pt;}
.y12b{bottom:193.838000pt;}
.yfd{bottom:195.218717pt;}
.y297{bottom:195.540751pt;}
.y1ac{bottom:196.380246pt;}
.y3f{bottom:197.276023pt;}
.y199{bottom:199.380208pt;}
.y96{bottom:199.968497pt;}
.y273{bottom:200.062455pt;}
.y190{bottom:201.380249pt;}
.y20f{bottom:201.380250pt;}
.yc5{bottom:202.942708pt;}
.yc3{bottom:203.942708pt;}
.y24d{bottom:204.114579pt;}
.y224{bottom:204.635416pt;}
.y68{bottom:206.067708pt;}
.y16c{bottom:207.380240pt;}
.y12a{bottom:208.770292pt;}
.y14d{bottom:209.614615pt;}
.y296{bottom:211.504292pt;}
.yfc{bottom:212.020805pt;}
.yee{bottom:212.140628pt;}
.ydf{bottom:213.062506pt;}
.y3e{bottom:214.078111pt;}
.y95{bottom:214.900792pt;}
.yd1{bottom:215.312485pt;}
.y16b{bottom:215.380239pt;}
.y272{bottom:216.026000pt;}
.y191{bottom:217.380246pt;}
.y1ec{bottom:220.380243pt;}
.y24c{bottom:220.916652pt;}
.y67{bottom:221.000000pt;}
.y178{bottom:221.380208pt;}
.y17{bottom:222.234375pt;}
.y16d{bottom:223.380237pt;}
.y129{bottom:223.702584pt;}
.y295{bottom:227.462596pt;}
.yfb{bottom:228.822893pt;}
.y94{bottom:229.833084pt;}
.yde{bottom:229.859377pt;}
.yef{bottom:230.072917pt;}
.y20e{bottom:230.380250pt;}
.y3d{bottom:230.874991pt;}
.yed{bottom:231.072917pt;}
.y223{bottom:231.885416pt;}
.y271{bottom:231.984335pt;}
.yd0{bottom:232.109365pt;}
.y1ab{bottom:233.380244pt;}
.y66{bottom:235.937497pt;}
.y24b{bottom:237.713532pt;}
.y14c{bottom:238.614614pt;}
.y128{bottom:238.640084pt;}
.yf4{bottom:239.437125pt;}
.y294{bottom:243.420931pt;}
.y93{bottom:244.765375pt;}
.yfa{bottom:245.619773pt;}
.y18f{bottom:246.380246pt;}
.y14b{bottom:246.614613pt;}
.ydd{bottom:246.661459pt;}
.y3c{bottom:247.677079pt;}
.y270{bottom:247.942671pt;}
.ycf{bottom:248.911453pt;}
.y1ea{bottom:249.380242pt;}
.y65{bottom:250.869792pt;}
.y169{bottom:252.380237pt;}
.y127{bottom:253.572371pt;}
.y24a{bottom:254.515620pt;}
.y1e9{bottom:257.380241pt;}
.y20d{bottom:259.380249pt;}
.y293{bottom:259.384476pt;}
.y92{bottom:259.702875pt;}
.y168{bottom:260.380235pt;}
.y1aa{bottom:262.380243pt;}
.yf9{bottom:262.421861pt;}
.y26f{bottom:263.906216pt;}
.y3b{bottom:264.473959pt;}
.y1eb{bottom:265.380240pt;}
.yce{bottom:265.708328pt;}
.y64{bottom:265.802084pt;}
.y177{bottom:266.380208pt;}
.y16{bottom:267.999981pt;}
.y16a{bottom:268.380234pt;}
.y126{bottom:268.504667pt;}
.yf3{bottom:274.379829pt;}
.y91{bottom:274.635167pt;}
.y292{bottom:275.342811pt;}
.y18e{bottom:275.380245pt;}
.yf8{bottom:279.218741pt;}
.y26e{bottom:279.864551pt;}
.y63{bottom:280.734375pt;}
.ycd{bottom:282.510403pt;}
.y249{bottom:283.317704pt;}
.y125{bottom:283.436955pt;}
.y14a{bottom:283.614610pt;}
.y15{bottom:284.802069pt;}
.y20c{bottom:288.380248pt;}
.y90{bottom:289.567459pt;}
.yf2{bottom:291.176709pt;}
.y291{bottom:291.301147pt;}
.y1a9{bottom:291.380242pt;}
.y149{bottom:291.614609pt;}
.y3a{bottom:291.723959pt;}
.y104{bottom:293.770833pt;}
.y1e7{bottom:294.380239pt;}
.y176{bottom:295.380208pt;}
.y26d{bottom:295.822886pt;}
.yf7{bottom:296.020829pt;}
.y62{bottom:296.140625pt;}
.y20b{bottom:296.380246pt;}
.y167{bottom:297.380233pt;}
.y124{bottom:298.369248pt;}
.ycc{bottom:299.312491pt;}
.y1c5{bottom:299.380241pt;}
.y248{bottom:300.114573pt;}
.y14{bottom:301.598949pt;}
.y1e6{bottom:302.380237pt;}
.y18d{bottom:304.380244pt;}
.y8f{bottom:304.499746pt;}
.y1b7{bottom:305.380208pt;}
.y290{bottom:307.264692pt;}
.y1a7{bottom:307.380239pt;}
.y1e8{bottom:310.380236pt;}
.y26c{bottom:311.786432pt;}
.yf6{bottom:312.822912pt;}
.y123{bottom:313.306749pt;}
.ycb{bottom:316.109371pt;}
.y247{bottom:316.916661pt;}
.yf1{bottom:317.437125pt;}
.y13{bottom:318.401037pt;}
.y8e{bottom:319.432041pt;}
.y61{bottom:323.135416pt;}
.y28f{bottom:323.223027pt;}
.y1a8{bottom:323.380237pt;}
.y166{bottom:326.380232pt;}
.y26b{bottom:327.744767pt;}
.y122{bottom:328.239041pt;}
.y148{bottom:328.614607pt;}
.yf5{bottom:329.619792pt;}
.yca{bottom:332.911443pt;}
.y18c{bottom:333.380243pt;}
.y20a{bottom:333.380244pt;}
.y246{bottom:333.713537pt;}
.y8d{bottom:334.369541pt;}
.y165{bottom:334.380231pt;}
.y12{bottom:335.203125pt;}
.y1c4{bottom:336.380238pt;}
.y60{bottom:338.067708pt;}
.y28e{bottom:339.181362pt;}
.y1e5{bottom:339.380235pt;}
.y175{bottom:340.380208pt;}
.y39{bottom:341.156240pt;}
.y222{bottom:341.380243pt;}
.y121{bottom:343.171333pt;}
.y26a{bottom:343.703102pt;}
.y1c3{bottom:344.380237pt;}
.y8c{bottom:349.301830pt;}
.y208{bottom:349.380242pt;}
.y1b6{bottom:350.380208pt;}
.y245{bottom:350.515620pt;}
.y1a6{bottom:352.380236pt;}
.y5f{bottom:353.000000pt;}
.y28d{bottom:355.144908pt;}
.y147{bottom:357.614606pt;}
.y38{bottom:357.958328pt;}
.y120{bottom:358.103625pt;}
.y269{bottom:359.661437pt;}
.y1a5{bottom:360.380234pt;}
.y18b{bottom:362.380242pt;}
.y8b{bottom:364.234125pt;}
.y209{bottom:365.380239pt;}
.y244{bottom:367.317704pt;}
.y5e{bottom:367.937500pt;}
.y1e4{bottom:368.380234pt;}
.y11{bottom:368.869792pt;}
.ye1{bottom:370.239585pt;}
.y28c{bottom:371.103243pt;}
.y164{bottom:371.380229pt;}
.y11f{bottom:373.035917pt;}
.y37{bottom:374.755195pt;}
.y268{bottom:375.624983pt;}
.y1e3{bottom:376.380233pt;}
.y220{bottom:378.380241pt;}
.y8a{bottom:379.166416pt;}
.y163{bottom:379.380227pt;}
.y1c2{bottom:381.380235pt;}
.y5d{bottom:382.869792pt;}
.y243{bottom:384.114536pt;}
.y221{bottom:386.380239pt;}
.y146{bottom:386.614605pt;}
.y28b{bottom:387.061578pt;}
.y11e{bottom:387.973413pt;}
.ye2{bottom:388.171875pt;}
.ye0{bottom:389.171875pt;}
.y18a{bottom:391.380241pt;}
.y36{bottom:391.557283pt;}
.y267{bottom:391.583318pt;}
.y89{bottom:394.098708pt;}
.y205{bottom:394.380238pt;}
.y1a4{bottom:397.380232pt;}
.y5c{bottom:397.802083pt;}
.y207{bottom:402.380237pt;}
.y11d{bottom:402.905708pt;}
.y28a{bottom:403.025123pt;}
.y10{bottom:404.208333pt;}
.y266{bottom:407.541653pt;}
.y35{bottom:408.354163pt;}
.y88{bottom:409.036208pt;}
.y1c1{bottom:410.380234pt;}
.y203{bottom:410.380235pt;}
.y1f6{bottom:411.380208pt;}
.y5b{bottom:412.734371pt;}
.y242{bottom:412.916624pt;}
.y1e2{bottom:413.380231pt;}
.y145{bottom:415.614604pt;}
.y162{bottom:416.380225pt;}
.y11c{bottom:417.837997pt;}
.y1c0{bottom:418.380233pt;}
.y206{bottom:418.380234pt;}
.y289{bottom:418.983459pt;}
.y189{bottom:420.380240pt;}
.y265{bottom:423.505198pt;}
.y87{bottom:423.968500pt;}
.y34{bottom:425.156245pt;}
.y1a3{bottom:426.380231pt;}
.y204{bottom:426.380233pt;}
.y5a{bottom:427.666667pt;}
.y241{bottom:429.713504pt;}
.y11b{bottom:432.770289pt;}
.y288{bottom:434.941786pt;}
.y187{bottom:436.380238pt;}
.y86{bottom:438.900792pt;}
.y21d{bottom:439.380235pt;}
.y264{bottom:439.463534pt;}
.y1f5{bottom:440.380208pt;}
.y33{bottom:441.958328pt;}
.y1e1{bottom:442.380230pt;}
.y59{bottom:442.604167pt;}
.y144{bottom:444.614603pt;}
.y160{bottom:445.380224pt;}
.y240{bottom:446.515592pt;}
.y21f{bottom:447.380233pt;}
.y11a{bottom:447.702584pt;}
.y287{bottom:450.900121pt;}
.y188{bottom:452.380235pt;}
.y1cd{bottom:453.380208pt;}
.y15f{bottom:453.380223pt;}
.y107{bottom:453.692711pt;}
.y85{bottom:453.833079pt;}
.y1a2{bottom:455.380230pt;}
.y202{bottom:455.380232pt;}
.y263{bottom:455.421869pt;}
.y58{bottom:457.536459pt;}
.y32{bottom:458.755189pt;}
.y174{bottom:459.380208pt;}
.y161{bottom:461.380221pt;}
.y119{bottom:462.640083pt;}
.y23f{bottom:463.317680pt;}
.y1a1{bottom:463.380229pt;}
.y21e{bottom:463.380230pt;}
.yf{bottom:465.630208pt;}
.y286{bottom:466.863667pt;}
.y84{bottom:468.765375pt;}
.y1bf{bottom:471.380228pt;}
.y1df{bottom:471.380229pt;}
.y262{bottom:471.385414pt;}
.y108{bottom:471.625000pt;}
.y106{bottom:472.625000pt;}
.y57{bottom:472.937503pt;}
.y143{bottom:473.614603pt;}
.y31{bottom:475.557277pt;}
.y118{bottom:477.572375pt;}
.y1de{bottom:479.380228pt;}
.y23e{bottom:480.114560pt;}
.y186{bottom:481.380234pt;}
.y285{bottom:482.821994pt;}
.y83{bottom:483.702875pt;}
.y200{bottom:484.380231pt;}
.ye{bottom:484.562490pt;}
.y261{bottom:487.343749pt;}
.y1e0{bottom:487.380226pt;}
.y15e{bottom:490.380221pt;}
.y30{bottom:492.354157pt;}
.y1ff{bottom:492.380230pt;}
.y117{bottom:492.504667pt;}
.y23d{bottom:496.916648pt;}
.y184{bottom:497.380231pt;}
.y1cc{bottom:498.380208pt;}
.y82{bottom:498.635163pt;}
.y284{bottom:498.780329pt;}
.yd{bottom:499.499988pt;}
.y56{bottom:499.598959pt;}
.y19f{bottom:500.380227pt;}
.y201{bottom:500.380228pt;}
.y142{bottom:502.614602pt;}
.y260{bottom:503.302076pt;}
.y116{bottom:507.436959pt;}
.y19e{bottom:508.380226pt;}
.y2f{bottom:509.156245pt;}
.y185{bottom:513.380229pt;}
.y81{bottom:513.567459pt;}
.y23c{bottom:513.713528pt;}
.yc{bottom:514.432279pt;}
.y283{bottom:514.743875pt;}
.y1a0{bottom:516.380224pt;}
.y1dd{bottom:516.380226pt;}
.y25f{bottom:519.265621pt;}
.y15d{bottom:519.380220pt;}
.y115{bottom:522.369250pt;}
.y1dc{bottom:524.380224pt;}
.y55{bottom:527.187500pt;}
.y80{bottom:528.499751pt;}
.y1fe{bottom:529.380227pt;}
.y23b{bottom:530.515616pt;}
.y282{bottom:530.702208pt;}
.y140{bottom:531.614601pt;}
.yb{bottom:533.364575pt;}
.y25e{bottom:535.223957pt;}
.y114{bottom:537.306751pt;}
.y1fd{bottom:537.380226pt;}
.y2e{bottom:537.958328pt;}
.y13f{bottom:539.614600pt;}
.yeb{bottom:539.848961pt;}
.y183{bottom:542.380228pt;}
.y7f{bottom:543.432041pt;}
.y19d{bottom:545.380223pt;}
.y281{bottom:546.660537pt;}
.y23a{bottom:547.317704pt;}
.y141{bottom:547.614598pt;}
.y15c{bottom:548.380219pt;}
.y182{bottom:550.380227pt;}
.y25d{bottom:551.182292pt;}
.y113{bottom:552.239038pt;}
.yc0{bottom:552.265631pt;}
.ya{bottom:552.296871pt;}
.y54{bottom:554.453125pt;}
.yb3{bottom:554.515563pt;}
.y2d{bottom:554.755204pt;}
.yec{bottom:557.781251pt;}
.y7e{bottom:558.369541pt;}
.yea{bottom:558.781251pt;}
.y1db{bottom:561.380222pt;}
.y280{bottom:562.624083pt;}
.y25c{bottom:567.145829pt;}
.y112{bottom:567.171330pt;}
.ybf{bottom:569.067713pt;}
.y9{bottom:571.229167pt;}
.yb2{bottom:571.317651pt;}
.y2c{bottom:571.557287pt;}
.y7d{bottom:573.301833pt;}
.y19c{bottom:574.380223pt;}
.y1fc{bottom:574.380224pt;}
.y239{bottom:576.114564pt;}
.y13e{bottom:576.614597pt;}
.y15b{bottom:577.380218pt;}
.y27f{bottom:578.582412pt;}
.y111{bottom:582.103625pt;}
.y1fb{bottom:582.380223pt;}
.y25b{bottom:583.104165pt;}
.y53{bottom:583.875000pt;}
.ybe{bottom:585.864584pt;}
.y180{bottom:587.380224pt;}
.yb1{bottom:588.114531pt;}
.y7c{bottom:588.234125pt;}
.y2b{bottom:588.354163pt;}
.y1da{bottom:590.380221pt;}
.y13c{bottom:592.614595pt;}
.y238{bottom:592.916652pt;}
.y27e{bottom:594.540747pt;}
.y17f{bottom:595.380223pt;}
.y110{bottom:597.035917pt;}
.y25a{bottom:599.062500pt;}
.y7b{bottom:603.166413pt;}
.y181{bottom:603.380222pt;}
.y21c{bottom:603.380223pt;}
.yb0{bottom:604.916619pt;}
.y2a{bottom:605.156245pt;}
.y15a{bottom:606.380217pt;}
.y13d{bottom:608.614592pt;}
.y237{bottom:609.713532pt;}
.y27d{bottom:610.504292pt;}
.y1bd{bottom:611.380220pt;}
.y21b{bottom:611.380222pt;}
.y10f{bottom:611.973416pt;}
.y8{bottom:615.901041pt;}
.y1cb{bottom:617.380208pt;}
.y7a{bottom:618.098708pt;}
.y1be{bottom:619.380219pt;}
.y1d9{bottom:619.380220pt;}
.yaf{bottom:621.713499pt;}
.y29{bottom:621.958328pt;}
.y27c{bottom:626.462625pt;}
.y236{bottom:626.515620pt;}
.y10e{bottom:626.905708pt;}
.y17e{bottom:632.380221pt;}
.y259{bottom:632.406251pt;}
.y79{bottom:633.036208pt;}
.y52{bottom:633.307283pt;}
.y7{bottom:634.531251pt;}
.y159{bottom:635.380216pt;}
.ybd{bottom:636.265628pt;}
.y13b{bottom:637.614591pt;}
.yae{bottom:638.515587pt;}
.y1c{bottom:638.531251pt;}
.y28{bottom:638.755199pt;}
.y10d{bottom:641.838000pt;}
.y27b{bottom:642.420955pt;}
.y235{bottom:643.317708pt;}
.y78{bottom:647.968497pt;}
.y1bc{bottom:648.380218pt;}
.y1d7{bottom:648.380219pt;}
.y51{bottom:650.109371pt;}
.ybc{bottom:653.067710pt;}
.y139{bottom:653.614588pt;}
.yad{bottom:655.317675pt;}
.y27{bottom:655.557287pt;}
.y1bb{bottom:656.380217pt;}
.y1d6{bottom:656.380218pt;}
.y10c{bottom:656.770292pt;}
.y27a{bottom:658.384500pt;}
.y1b5{bottom:659.380208pt;}
.y17d{bottom:661.380220pt;}
.y1ca{bottom:662.380208pt;}
.y77{bottom:662.900792pt;}
.y158{bottom:664.380215pt;}
.y1d8{bottom:664.380217pt;}
.y50{bottom:666.906251pt;}
.y17c{bottom:669.380219pt;}
.y13a{bottom:669.614586pt;}
.yac{bottom:672.114555pt;}
.y234{bottom:672.114569pt;}
.y6{bottom:672.140627pt;}
.y26{bottom:672.354157pt;}
.y1b4{bottom:675.380208pt;}
.y21a{bottom:677.380219pt;}
.y76{bottom:677.833084pt;}
.y258{bottom:681.838512pt;}
.y10b{bottom:682.035917pt;}
.ybb{bottom:686.666672pt;}
.yab{bottom:688.916643pt;}
.y25{bottom:689.156245pt;}
.y1c9{bottom:691.380208pt;}
.y75{bottom:692.765375pt;}
.y157{bottom:693.380215pt;}
.y1d5{bottom:693.380216pt;}
.y4f{bottom:694.661459pt;}
.ya5{bottom:696.671328pt;}
.y22f{bottom:697.832204pt;}
.y138{bottom:698.614585pt;}
.y257{bottom:698.635392pt;}
.y1f4{bottom:699.380208pt;}
.y233{bottom:700.916657pt;}
.y1d4{bottom:701.380215pt;}
.yc9{bottom:703.441991pt;}
.yba{bottom:703.463543pt;}
.y1b3{bottom:704.380208pt;}
.y5{bottom:705.520828pt;}
.yaa{bottom:705.713523pt;}
.y24{bottom:705.958333pt;}
.y17b{bottom:706.380216pt;}
.y218{bottom:706.380218pt;}
.y74{bottom:707.702875pt;}
.y10a{bottom:709.931749pt;}
.ya4{bottom:713.468204pt;}
.y17a{bottom:714.380215pt;}
.y219{bottom:714.380216pt;}
.y22e{bottom:714.634292pt;}
.y256{bottom:715.437480pt;}
.y232{bottom:717.713537pt;}
.y4a{bottom:718.880204pt;}
.yc8{bottom:720.238871pt;}
.yb9{bottom:720.265625pt;}
.y198{bottom:720.380208pt;}
.y156{bottom:722.380214pt;}
.y1fa{bottom:722.380215pt;}
.ya9{bottom:722.515611pt;}
.y73{bottom:722.635167pt;}
.y137{bottom:727.614584pt;}
.y1f9{bottom:730.380214pt;}
.y255{bottom:732.234360pt;}
.y23{bottom:733.203125pt;}
.y21{bottom:734.446749pt;}
.y4e{bottom:734.515611pt;}
.y231{bottom:734.515625pt;}
.y49{bottom:735.682292pt;}
.yc7{bottom:737.040959pt;}
.y72{bottom:737.567459pt;}
.y1d3{bottom:738.380212pt;}
.y4{bottom:738.906251pt;}
.ya8{bottom:739.317699pt;}
.ya3{bottom:742.270292pt;}
.y1f3{bottom:744.380208pt;}
.y1d2{bottom:746.380211pt;}
.y254{bottom:749.036448pt;}
.ydc{bottom:749.067717pt;}
.y197{bottom:749.380208pt;}
.y4d{bottom:751.317699pt;}
.y230{bottom:751.317708pt;}
.y155{bottom:751.380213pt;}
.ya7{bottom:756.114579pt;}
.y154{bottom:759.380212pt;}
.y196{bottom:765.380208pt;}
.y253{bottom:765.838536pt;}
.ydb{bottom:765.864588pt;}
.y136{bottom:765.963541pt;}
.y179{bottom:767.380210pt;}
.y1f8{bottom:767.380212pt;}
.y4c{bottom:768.114579pt;}
.ya6{bottom:772.916667pt;}
.y215{bottom:773.380208pt;}
.y1f7{bottom:775.380210pt;}
.y22c{bottom:781.380208pt;}
.y22{bottom:782.635416pt;}
.yda{bottom:782.666670pt;}
.y1d1{bottom:783.380209pt;}
.y4b{bottom:784.916667pt;}
.y1b2{bottom:794.380208pt;}
.y153{bottom:796.380209pt;}
.y3{bottom:799.447917pt;}
.yd9{bottom:799.463541pt;}
.y152{bottom:804.380208pt;}
.y135{bottom:809.885416pt;}
.y214{bottom:810.380208pt;}
.y1ba{bottom:812.380207pt;}
.y1d0{bottom:812.380208pt;}
.y2{bottom:835.078128pt;}
.y1{bottom:849.078125pt;}
.y47{bottom:866.427084pt;}
.y151{bottom:866.427106pt;}
.h23{height:23.296875pt;}
.ha{height:23.328125pt;}
.h6{height:24.495670pt;}
.hb{height:24.932359pt;}
.h19{height:26.208984pt;}
.h1f{height:26.244141pt;}
.h1{height:27.215197pt;}
.h7{height:27.215236pt;}
.h1a{height:28.438367pt;}
.h24{height:31.063447pt;}
.h5{height:31.105115pt;}
.h10{height:31.659632pt;}
.h13{height:32.076172pt;}
.h28{height:33.243717pt;}
.h2c{height:33.243828pt;}
.h2b{height:33.243836pt;}
.h29{height:33.243913pt;}
.h15{height:34.945312pt;}
.h2{height:34.992188pt;}
.he{height:34.992241pt;}
.h25{height:34.992246pt;}
.h1c{height:34.992251pt;}
.hd{height:34.992262pt;}
.hf{height:34.992267pt;}
.h27{height:34.992379pt;}
.h18{height:34.992449pt;}
.h14{height:35.859375pt;}
.h21{height:36.031665pt;}
.h9{height:41.596640pt;}
.h12{height:42.711321pt;}
.h8{height:46.616020pt;}
.h3{height:60.962105pt;}
.h4{height:62.595730pt;}
.h22{height:63.105110pt;}
.h2a{height:670.317333pt;}
.h20{height:724.666667pt;}
.h26{height:727.197333pt;}
.h1e{height:740.896000pt;}
.h11{height:748.245333pt;}
.h16{height:748.734667pt;}
.h1b{height:749.604000pt;}
.h17{height:754.833333pt;}
.hc{height:755.640000pt;}
.h1d{height:755.906667pt;}
.h0{height:906.666667pt;}
.w1{width:483.781333pt;}
.w0{width:622.666667pt;}
.x0{left:0.000000pt;}
.x3f{left:10.297416pt;}
.x10{left:20.000541pt;}
.xe{left:25.667206pt;}
.xd{left:26.667205pt;}
.xf{left:28.667212pt;}
.x40{left:40.000541pt;}
.xc{left:60.000541pt;}
.x3{left:69.921875pt;}
.x26{left:76.921875pt;}
.x7{left:80.421875pt;}
.x5{left:83.921875pt;}
.x4{left:84.921875pt;}
.x8{left:89.921875pt;}
.x9{left:95.588541pt;}
.x15{left:96.921869pt;}
.x27{left:101.921869pt;}
.x3d{left:104.921875pt;}
.x2b{left:105.921874pt;}
.x31{left:106.921875pt;}
.x2d{left:107.921875pt;}
.x3e{left:109.921874pt;}
.xb{left:114.812500pt;}
.x17{left:121.692695pt;}
.x1{left:124.718749pt;}
.x22{left:127.921874pt;}
.xa{left:129.921875pt;}
.x3b{left:131.921875pt;}
.x37{left:135.921875pt;}
.x1d{left:137.619792pt;}
.x1b{left:142.921875pt;}
.x18{left:144.921866pt;}
.x2f{left:158.921875pt;}
.x33{left:179.921875pt;}
.x13{left:180.885416pt;}
.x6{left:193.921875pt;}
.x30{left:196.921875pt;}
.x2c{left:200.921875pt;}
.x2a{left:206.921875pt;}
.x35{left:234.921875pt;}
.x38{left:242.921875pt;}
.x2{left:246.812500pt;}
.x25{left:256.848961pt;}
.x1f{left:257.921883pt;}
.x20{left:259.848959pt;}
.x16{left:262.911452pt;}
.x39{left:266.921875pt;}
.x34{left:270.921875pt;}
.x36{left:297.921875pt;}
.x21{left:308.114582pt;}
.x29{left:314.921875pt;}
.x32{left:319.921875pt;}
.x2e{left:320.921875pt;}
.x3a{left:331.921875pt;}
.x3c{left:332.921875pt;}
.x14{left:405.192704pt;}
.x28{left:409.723950pt;}
.x19{left:427.765625pt;}
.x1e{left:430.427088pt;}
.x24{left:450.255208pt;}
.x12{left:488.031251pt;}
.x23{left:499.703125pt;}
.x11{left:543.703125pt;}
.x1c{left:546.703125pt;}
.x1a{left:548.703125pt;}
}




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