
    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_0a0fea1cc6bd5b58810973f3.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f8c7337f10cd528dba83a2cd.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_fe9aa0fe5e92b56378852215.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_e2d427e2c0a093243ef4e0b1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e3ca230e4092433de22bc76f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.853516;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_15b1771ed959724863ecb341.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.856445;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_d607f5eb563d6708e1e6d845.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.856445;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_6b63a02dcf8e7ea1d63ba706.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.091797;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_7a739b3f6231d63a0da63e55.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.090332;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_b26f23b5854ebfe8bff132fc.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_549d8ff9f80f899e110af669.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.147461;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_c6019390ff0f2c5172930de7.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_1629be0b1ac917994a6f012b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.948242;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_3781467ca705d123ccc85f00.woff2')format("woff");}.fff{font-family:fff;line-height:1.063477;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);}
.m4{transform:matrix(0.250292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250292,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250298,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250299,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250302,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);}
.v2{vertical-align:-13.680000px;}
.v1{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:13.680000px;}
.v5{vertical-align:44.640000px;}
.v4{vertical-align:50.400000px;}
.ls9{letter-spacing:-0.828000px;}
.ls2e{letter-spacing:-0.414600px;}
.ls11{letter-spacing:-0.306600px;}
.ls2c{letter-spacing:-0.305400px;}
.ls15{letter-spacing:-0.181179px;}
.ls1b{letter-spacing:-0.179801px;}
.ls17{letter-spacing:-0.179540px;}
.ls2f{letter-spacing:-0.178800px;}
.ls1f{letter-spacing:-0.177479px;}
.ls25{letter-spacing:-0.176783px;}
.ls13{letter-spacing:-0.152400px;}
.ls1d{letter-spacing:-0.140790px;}
.ls21{letter-spacing:-0.138972px;}
.ls27{letter-spacing:-0.138427px;}
.ls1a{letter-spacing:-0.109406px;}
.ls16{letter-spacing:-0.109247px;}
.ls8{letter-spacing:-0.109200px;}
.ls1e{letter-spacing:-0.107993px;}
.ls24{letter-spacing:-0.107569px;}
.ls12{letter-spacing:-0.106800px;}
.ls31{letter-spacing:-0.100200px;}
.ls5{letter-spacing:-0.092400px;}
.ls7{letter-spacing:-0.037440px;}
.ls30{letter-spacing:-0.017280px;}
.ls0{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.017303px;}
.ls19{letter-spacing:0.017371px;}
.ls18{letter-spacing:0.017599px;}
.ls2d{letter-spacing:0.018000px;}
.lsc{letter-spacing:0.023040px;}
.lsd{letter-spacing:0.040320px;}
.lsf{letter-spacing:0.066720px;}
.ls26{letter-spacing:0.098053px;}
.ls20{letter-spacing:0.098438px;}
.ls1c{letter-spacing:0.099726px;}
.ls3{letter-spacing:0.108600px;}
.ls10{letter-spacing:0.108720px;}
.ls2b{letter-spacing:0.136200px;}
.ls22{letter-spacing:0.138972px;}
.ls4{letter-spacing:0.188400px;}
.lsa{letter-spacing:0.216000px;}
.ls2a{letter-spacing:0.280200px;}
.ls14{letter-spacing:0.305400px;}
.ls29{letter-spacing:0.360000px;}
.ls28{letter-spacing:0.666720px;}
.ls6{letter-spacing:1.025280px;}
.ls2{letter-spacing:4.584000px;}
.ls32{letter-spacing:9.665280px;}
.lse{letter-spacing:18.066240px;}
.lsb{letter-spacing:142.841280px;}
.ls1{letter-spacing:845.741280px;}
.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;}
}
.ws4{word-spacing:-23.381280px;}
.ws14{word-spacing:-18.720120px;}
.ws7{word-spacing:-18.414720px;}
.ws5{word-spacing:-18.305520px;}
.ws2a{word-spacing:-18.109320px;}
.ws6{word-spacing:-17.586720px;}
.ws12{word-spacing:-16.613280px;}
.ws2e{word-spacing:-16.513080px;}
.ws11{word-spacing:-16.506480px;}
.ws10{word-spacing:-16.306680px;}
.ws8{word-spacing:-15.052032px;}
.ws9{word-spacing:-15.012000px;}
.ws16{word-spacing:-14.809607px;}
.ws15{word-spacing:-14.789888px;}
.ws1b{word-spacing:-14.696937px;}
.ws1a{word-spacing:-14.677367px;}
.ws18{word-spacing:-14.675621px;}
.ws17{word-spacing:-14.656079px;}
.wsc{word-spacing:-14.613120px;}
.ws1c{word-spacing:-14.587531px;}
.wsb{word-spacing:-14.572800px;}
.ws19{word-spacing:-14.566374px;}
.ws1e{word-spacing:-14.536577px;}
.ws1d{word-spacing:-14.517136px;}
.ws20{word-spacing:-14.507122px;}
.ws1f{word-spacing:-14.487805px;}
.ws25{word-spacing:-14.450279px;}
.ws24{word-spacing:-14.431038px;}
.ws13{word-spacing:-14.420400px;}
.ws21{word-spacing:-14.399129px;}
.ws23{word-spacing:-14.348833px;}
.ws26{word-spacing:-14.342710px;}
.ws22{word-spacing:-14.329643px;}
.ws28{word-spacing:-14.292610px;}
.ws27{word-spacing:-14.273496px;}
.ws3{word-spacing:-13.446720px;}
.ws2{word-spacing:-13.354320px;}
.ws1{word-spacing:-12.131280px;}
.wse{word-spacing:-0.915840px;}
.ws0{word-spacing:0.000000px;}
.wsf{word-spacing:0.233280px;}
.wsd{word-spacing:11.571120px;}
.ws2b{word-spacing:195.264864px;}
.ws2c{word-spacing:224.334000px;}
.wsa{word-spacing:225.474000px;}
.ws2d{word-spacing:233.514000px;}
.ws29{word-spacing:267.654000px;}
.ws2f{word-spacing:277.104864px;}
._1c{margin-left:-938.121628px;}
._1e{margin-left:-926.005546px;}
._20{margin-left:-922.377201px;}
._1b{margin-left:-869.631051px;}
._1d{margin-left:-858.399543px;}
._1a{margin-left:-854.108210px;}
._14{margin-left:-5.473920px;}
._a{margin-left:-4.395840px;}
._0{margin-left:-3.019680px;}
._1{margin-left:-1.677600px;}
._5{width:1.349280px;}
._7{width:2.433600px;}
._2{width:4.021920px;}
._3{width:5.554080px;}
._4{width:7.378080px;}
._9{width:9.361440px;}
._8{width:10.399680px;}
._10{width:11.748480px;}
._f{width:12.804480px;}
._b{width:14.440320px;}
._c{width:15.831360px;}
._11{width:17.354880px;}
._19{width:18.375840px;}
._d{width:19.474560px;}
._e{width:20.862720px;}
._16{width:22.186560px;}
._24{width:23.768640px;}
._21{width:25.171200px;}
._27{width:26.496000px;}
._22{width:27.754560px;}
._2b{width:28.880640px;}
._2c{width:30.499680px;}
._2d{width:37.624320px;}
._2a{width:41.929920px;}
._1f{width:50.243520px;}
._23{width:75.463680px;}
._17{width:105.487680px;}
._18{width:116.616000px;}
._6{width:122.376000px;}
._26{width:127.997280px;}
._25{width:129.255840px;}
._13{width:142.535520px;}
._29{width:232.701120px;}
._28{width:233.848800px;}
._15{width:260.398800px;}
._12{width:845.741280px;}
.fc9{color:rgb(70,120,134);}
.fc8{color:rgb(255,29,37);}
.fc5{color:rgb(254,255,255);}
.fc4{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc7{color:rgb(0,176,80);}
.fc6{color:rgb(26,26,26);}
.fc3{color:rgb(34,30,31);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs11{font-size:36.000000px;}
.fsd{font-size:38.880000px;}
.fsc{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fs10{font-size:48.240000px;}
.fs1a{font-size:51.910207px;}
.fs1b{font-size:51.979421px;}
.fs18{font-size:52.114406px;}
.fs19{font-size:52.183892px;}
.fs14{font-size:52.719709px;}
.fs15{font-size:52.790002px;}
.fs16{font-size:52.796284px;}
.fs17{font-size:52.866679px;}
.fs12{font-size:53.201034px;}
.fs13{font-size:53.271969px;}
.fsf{font-size:54.000000px;}
.fse{font-size:54.144000px;}
.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;}
.fs9{font-size:84.240000px;}
.fs8{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:108.000000px;}
.fs7{font-size:167.760000px;}
.fsb{font-size:228.240000px;}
.y0{bottom:0.000000px;}
.y2f3{bottom:2.700000px;}
.y34{bottom:4.140000px;}
.y137{bottom:4.860000px;}
.y1f3{bottom:10.685519px;}
.y1f4{bottom:10.685527px;}
.y1f5{bottom:10.685560px;}
.y1b4{bottom:10.727541px;}
.y164{bottom:10.852140px;}
.y19f{bottom:10.867914px;}
.y1a0{bottom:10.867922px;}
.y1a1{bottom:10.867955px;}
.y151{bottom:10.951228px;}
.y26f{bottom:12.315000px;}
.y2b3{bottom:12.345000px;}
.y291{bottom:12.390000px;}
.y223{bottom:12.450000px;}
.y9c{bottom:12.495000px;}
.y1b7{bottom:16.560000px;}
.y39{bottom:19.800000px;}
.y2c{bottom:21.240000px;}
.y30{bottom:23.040000px;}
.y136{bottom:25.200000px;}
.y184{bottom:25.380000px;}
.y33{bottom:26.640000px;}
.y266{bottom:28.365000px;}
.y288{bottom:28.440000px;}
.y218{bottom:28.515000px;}
.y243{bottom:28.545000px;}
.y92{bottom:28.590000px;}
.y1f2{bottom:31.743767px;}
.y1b3{bottom:31.868618px;}
.y163{bottom:32.238768px;}
.y19e{bottom:32.285614px;}
.y150{bottom:32.533115px;}
.y25{bottom:33.120000px;}
.y135{bottom:45.714000px;}
.y183{bottom:45.894000px;}
.y32{bottom:49.140000px;}
.y1e9{bottom:49.649970px;}
.y1da{bottom:49.667994px;}
.y1e4{bottom:49.686019px;}
.y1f0{bottom:49.687370px;}
.y1ee{bottom:49.687389px;}
.y1e0{bottom:49.722068px;}
.y2b7{bottom:49.785000px;}
.y1af{bottom:49.845258px;}
.y1a4{bottom:49.863353px;}
.y1ab{bottom:49.881448px;}
.y1b2{bottom:49.882824px;}
.y1a9{bottom:49.917639px;}
.y15f{bottom:50.424205px;}
.y154{bottom:50.442510px;}
.y15b{bottom:50.460816px;}
.y162{bottom:50.462207px;}
.y158{bottom:50.497427px;}
.y195{bottom:50.497465px;}
.y186{bottom:50.515797px;}
.y190{bottom:50.534129px;}
.y19c{bottom:50.535504px;}
.y19a{bottom:50.535522px;}
.y18c{bottom:50.570793px;}
.y147{bottom:50.884582px;}
.y139{bottom:50.903055px;}
.y142{bottom:50.921528px;}
.y14e{bottom:50.922922px;}
.y14c{bottom:50.922932px;}
.y13e{bottom:50.958473px;}
.y1ec{bottom:52.802006px;}
.y1ef{bottom:52.802021px;}
.y1b0{bottom:53.009695px;}
.y160{bottom:53.625397px;}
.y198{bottom:53.703303px;}
.y19b{bottom:53.703319px;}
.y219{bottom:53.970000px;}
.y14a{bottom:54.114997px;}
.y14d{bottom:54.115007px;}
.y93{bottom:54.720000px;}
.y2e6{bottom:54.825000px;}
.y267{bottom:57.960000px;}
.y2ab{bottom:57.990000px;}
.y37{bottom:59.940000px;}
.y244{bottom:62.355000px;}
.y134{bottom:66.234000px;}
.y5{bottom:66.525004px;}
.y2b6{bottom:71.535000px;}
.y36{bottom:71.640000px;}
.y1e7{bottom:73.874666px;}
.y1ea{bottom:73.874681px;}
.y1ad{bottom:74.165249px;}
.y15d{bottom:75.026670px;}
.y193{bottom:75.135661px;}
.y196{bottom:75.135677px;}
.y145{bottom:75.711662px;}
.y148{bottom:75.711672px;}
.y2a{bottom:77.250000px;}
.y21a{bottom:79.380000px;}
.y94{bottom:80.895000px;}
.y289{bottom:81.000000px;}
.y2e7{bottom:81.105000px;}
.y133{bottom:86.754000px;}
.y268{bottom:87.510000px;}
.y2ac{bottom:87.555000px;}
.y2b5{bottom:93.270000px;}
.y1e5{bottom:94.934359px;}
.y1ac{bottom:95.307774px;}
.y245{bottom:96.120000px;}
.y15c{bottom:96.414763px;}
.y191{bottom:96.554831px;}
.y4{bottom:97.125005px;}
.y143{bottom:97.295033px;}
.y21b{bottom:104.835000px;}
.y132{bottom:105.834000px;}
.y95{bottom:107.025000px;}
.y182{bottom:107.274000px;}
.y28a{bottom:107.280000px;}
.y2e8{bottom:107.385000px;}
.y29{bottom:108.930000px;}
.y90{bottom:109.296000px;}
.y165{bottom:110.556000px;}
.y8f{bottom:113.796000px;}
.y2b4{bottom:115.050000px;}
.y1de{bottom:115.994027px;}
.y1e1{bottom:115.994044px;}
.y1a7{bottom:116.450299px;}
.y269{bottom:117.075000px;}
.y2ad{bottom:117.105000px;}
.y159{bottom:117.802856px;}
.y18a{bottom:117.973975px;}
.y18d{bottom:117.973992px;}
.y131{bottom:118.614000px;}
.y78{bottom:118.836000px;}
.y13f{bottom:118.878398px;}
.y115{bottom:120.816000px;}
.y2e5{bottom:121.356000px;}
.yb9{bottom:122.616000px;}
.y2e4{bottom:125.856000px;}
.ye9{bottom:126.576000px;}
.y181{bottom:127.794000px;}
.y8e{bottom:128.016000px;}
.y241{bottom:128.196000px;}
.y246{bottom:129.885000px;}
.y21c{bottom:130.245000px;}
.y264{bottom:131.076000px;}
.y96{bottom:133.200000px;}
.y28b{bottom:133.560000px;}
.y2e9{bottom:133.665000px;}
.y2a9{bottom:134.316000px;}
.y1dc{bottom:137.053727px;}
.y1a6{bottom:137.592824px;}
.y2e3{bottom:138.636000px;}
.y77{bottom:139.176000px;}
.y156{bottom:139.190949px;}
.y21{bottom:139.264499px;}
.y188{bottom:139.393152px;}
.y13b{bottom:140.461763px;}
.yb8{bottom:143.136000px;}
.y216{bottom:143.856000px;}
.ye8{bottom:144.756000px;}
.y26a{bottom:146.625000px;}
.y2ae{bottom:146.670000px;}
.y180{bottom:148.134000px;}
.y23{bottom:148.176000px;}
.y2cb{bottom:148.356000px;}
.y240{bottom:148.716000px;}
.ye7{bottom:149.976000px;}
.y2a8{bottom:154.830000px;}
.y21d{bottom:155.700000px;}
.y2e2{bottom:155.910000px;}
.y97{bottom:159.330000px;}
.y76{bottom:159.510000px;}
.y28c{bottom:159.810000px;}
.y2ea{bottom:159.915000px;}
.y215{bottom:161.130000px;}
.y27{bottom:162.045000px;}
.ye6{bottom:162.210000px;}
.yb7{bottom:163.650000px;}
.y247{bottom:163.695000px;}
.y286{bottom:168.510000px;}
.y17f{bottom:168.654000px;}
.y23f{bottom:169.230000px;}
.y2d{bottom:172.110000px;}
.y2e1{bottom:173.190000px;}
.y1b6{bottom:175.140000px;}
.y2a7{bottom:175.170000px;}
.y26b{bottom:176.190000px;}
.y2af{bottom:176.220000px;}
.y2e0{bottom:177.690000px;}
.y214{bottom:178.410000px;}
.ye5{bottom:179.490000px;}
.y75{bottom:180.030000px;}
.y21e{bottom:181.110000px;}
.y263{bottom:182.910000px;}
.yb6{bottom:183.990000px;}
.y98{bottom:185.505000px;}
.y28d{bottom:186.090000px;}
.y2eb{bottom:186.195000px;}
.y285{bottom:189.030000px;}
.y17e{bottom:189.174000px;}
.y272{bottom:189.690000px;}
.y2df{bottom:190.290000px;}
.y2de{bottom:194.790000px;}
.y213{bottom:195.690000px;}
.ye4{bottom:196.590000px;}
.y2f1{bottom:196.920000px;}
.y18{bottom:196.933500px;}
.y2ca{bottom:197.130000px;}
.y248{bottom:197.460000px;}
.y24d{bottom:198.075000px;}
.y74{bottom:200.550000px;}
.y23e{bottom:201.810000px;}
.yb5{bottom:204.510000px;}
.y26c{bottom:205.740000px;}
.y2b0{bottom:205.770000px;}
.y21f{bottom:206.535000px;}
.y1d8{bottom:207.930000px;}
.y2dd{bottom:209.010000px;}
.y284{bottom:209.370000px;}
.y294{bottom:209.445000px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y17d{bottom:209.694000px;}
.y99{bottom:211.680000px;}
.y28e{bottom:212.370000px;}
.y2ec{bottom:212.475000px;}
.y212{bottom:212.790000px;}
.ye3{bottom:213.870000px;}
.y2f0{bottom:214.635000px;}
.y2a6{bottom:216.210000px;}
.y262{bottom:217.290000px;}
.ye2{bottom:218.370000px;}
.y271{bottom:219.705000px;}
.y321{bottom:220.350000px;}
.y73{bottom:221.070000px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y23d{bottom:222.150000px;}
.yb4{bottom:225.030000px;}
.y24c{bottom:225.075000px;}
.y293{bottom:229.170000px;}
.y283{bottom:229.890000px;}
.y211{bottom:230.070000px;}
.y17c{bottom:230.079000px;}
.y249{bottom:231.225000px;}
.y261{bottom:231.510000px;}
.y220{bottom:231.990000px;}
.y2ef{bottom:232.350000px;}
.ye1{bottom:232.590000px;}
.y210{bottom:234.570000px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y26d{bottom:235.290000px;}
.y2b1{bottom:235.335000px;}
.y2a5{bottom:236.730000px;}
.y9a{bottom:237.810000px;}
.y28f{bottom:238.650000px;}
.y2ed{bottom:238.755000px;}
.y155{bottom:239.748016px;}
.y1d7{bottom:240.690000px;}
.y72{bottom:241.410000px;}
.y23c{bottom:242.670000px;}
.y161{bottom:242.911206px;}
.yb3{bottom:245.550000px;}
.y20f{bottom:248.790000px;}
.y292{bottom:248.940000px;}
.y270{bottom:249.735000px;}
.y2ee{bottom:250.050000px;}
.y282{bottom:250.410000px;}
.y17b{bottom:250.599000px;}
.y24b{bottom:252.075000px;}
.y320{bottom:252.750000px;}
.y2a4{bottom:257.070000px;}
.y221{bottom:257.400000px;}
.y35{bottom:258.870000px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y1d6{bottom:260.850000px;}
.ye0{bottom:262.110000px;}
.y23b{bottom:263.010000px;}
.y9b{bottom:263.985000px;}
.y15e{bottom:264.350481px;}
.y26e{bottom:264.855000px;}
.y2b2{bottom:264.885000px;}
.y290{bottom:264.930000px;}
.y24a{bottom:265.035000px;}
.yb2{bottom:265.890000px;}
.y260{bottom:267.330000px;}
.y2e{bottom:270.045000px;}
.y281{bottom:270.930000px;}
.y17a{bottom:271.119000px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y71{bottom:274.170000px;}
.y2a3{bottom:277.590000px;}
.y130{bottom:279.759000px;}
.y1d5{bottom:281.370000px;}
.ydf{bottom:282.630000px;}
.y222{bottom:282.855000px;}
.y23a{bottom:283.530000px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y31f{bottom:285.330000px;}
.y15a{bottom:285.701963px;}
.y25f{bottom:287.850000px;}
.y20e{bottom:289.650000px;}
.y280{bottom:291.270000px;}
.y179{bottom:291.639000px;}
.y70{bottom:294.510000px;}
.y2a2{bottom:298.110000px;}
.yb1{bottom:298.650000px;}
.y12f{bottom:300.279000px;}
.y1d4{bottom:301.890000px;}
.y105{bottom:302.970000px;}
.ydd{bottom:303.150000px;}
.y239{bottom:304.050000px;}
.y31e{bottom:305.670000px;}
.y157{bottom:307.053445px;}
.y25e{bottom:308.370000px;}
.yde{bottom:309.090000px;}
.y20d{bottom:310.170000px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y27f{bottom:311.790000px;}
.y178{bottom:311.979000px;}
.y6f{bottom:314.850000px;}
.y2a1{bottom:318.630000px;}
.yb0{bottom:318.990000px;}
.y12e{bottom:320.799000px;}
.y1d3{bottom:322.410000px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.ydc{bottom:323.670000px;}
.y238{bottom:324.570000px;}
.y31d{bottom:326.010000px;}
.y153{bottom:328.496454px;}
.y25d{bottom:328.890000px;}
.y20c{bottom:330.690000px;}
.y27e{bottom:332.310000px;}
.y177{bottom:332.499000px;}
.y6e{bottom:335.370000px;}
.y104{bottom:335.550000px;}
.y2a0{bottom:338.970000px;}
.yaf{bottom:339.330000px;}
.y12d{bottom:341.139000px;}
.y1d2{bottom:342.795000px;}
.ydb{bottom:344.055000px;}
.y237{bottom:345.135000px;}
.y31c{bottom:346.575000px;}
.yf{bottom:348.133500px;}
.y20b{bottom:351.255000px;}
.y27d{bottom:352.875000px;}
.y176{bottom:353.019000px;}
.y6d{bottom:355.935000px;}
.y31{bottom:357.375000px;}
.y29f{bottom:359.535000px;}
.yae{bottom:359.895000px;}
.y12c{bottom:361.659000px;}
.y25c{bottom:362.955000px;}
.y1d1{bottom:363.315000px;}
.yda{bottom:364.575000px;}
.y236{bottom:365.475000px;}
.y8d{bottom:368.175000px;}
.y20a{bottom:371.595000px;}
.y175{bottom:373.539000px;}
.y6c{bottom:376.455000px;}
.y31b{bottom:379.155000px;}
.y29e{bottom:380.055000px;}
.yad{bottom:380.415000px;}
.y12b{bottom:382.179000px;}
.y1d0{bottom:383.835000px;}
.yd9{bottom:385.095000px;}
.y114{bottom:385.995000px;}
.ye{bottom:386.785499px;}
.y27c{bottom:386.895000px;}
.y208{bottom:392.115000px;}
.y174{bottom:393.879000px;}
.y6b{bottom:396.795000px;}
.y103{bottom:396.975000px;}
.y209{bottom:398.055000px;}
.y31a{bottom:399.495000px;}
.y25b{bottom:399.675000px;}
.y29d{bottom:400.575000px;}
.y8c{bottom:400.935000px;}
.y12a{bottom:402.699000px;}
.y1cf{bottom:404.355000px;}
.yd8{bottom:405.615000px;}
.y235{bottom:406.515000px;}
.yd{bottom:408.044999px;}
.y173{bottom:410.979000px;}
.y207{bottom:412.635000px;}
.y6a{bottom:417.315000px;}
.y113{bottom:418.395000px;}
.y319{bottom:420.015000px;}
.y29c{bottom:420.915000px;}
.y8b{bottom:421.095000px;}
.yac{bottom:421.275000px;}
.y129{bottom:423.039000px;}
.y27b{bottom:423.435000px;}
.y1cd{bottom:424.695000px;}
.y2f{bottom:424.875000px;}
.yd7{bottom:425.955000px;}
.y234{bottom:427.035000px;}
.y1ce{bottom:430.635000px;}
.y25a{bottom:432.075000px;}
.y206{bottom:433.155000px;}
.y69{bottom:437.835000px;}
.y112{bottom:438.735000px;}
.y29b{bottom:441.435000px;}
.y8a{bottom:441.615000px;}
.yab{bottom:441.795000px;}
.y128{bottom:443.559000px;}
.y1cc{bottom:445.215000px;}
.yd6{bottom:446.475000px;}
.y2dc{bottom:450.975000px;}
.y318{bottom:452.595000px;}
.y205{bottom:453.495000px;}
.y27a{bottom:456.015000px;}
.y68{bottom:458.355000px;}
.y102{bottom:458.715000px;}
.y111{bottom:459.255000px;}
.y233{bottom:459.615000px;}
.y259{bottom:461.055000px;}
.y265{bottom:461.340000px;}
.y29a{bottom:461.955000px;}
.y89{bottom:462.135000px;}
.yaa{bottom:462.315000px;}
.y127{bottom:464.109000px;}
.y1cb{bottom:465.735000px;}
.yd5{bottom:466.995000px;}
.y2db{bottom:471.495000px;}
.y317{bottom:472.935000px;}
.y204{bottom:474.015000px;}
.y67{bottom:478.695000px;}
.y110{bottom:479.595000px;}
.y232{bottom:479.955000px;}
.y88{bottom:482.655000px;}
.ya9{bottom:482.835000px;}
.y126{bottom:483.369000px;}
.y299{bottom:484.095000px;}
.y279{bottom:485.175000px;}
.y287{bottom:485.280000px;}
.y1ca{bottom:486.255000px;}
.yd4{bottom:487.515000px;}
.y101{bottom:491.475000px;}
.y2da{bottom:491.835000px;}
.y203{bottom:494.535000px;}
.y125{bottom:495.969000px;}
.y66{bottom:499.215000px;}
.y10f{bottom:500.115000px;}
.y231{bottom:500.295000px;}
.yc{bottom:502.864502px;}
.y87{bottom:502.995000px;}
.ya8{bottom:503.175000px;}
.y316{bottom:505.695000px;}
.y1c9{bottom:506.595000px;}
.yd3{bottom:507.855000px;}
.y2d9{bottom:512.355000px;}
.y202{bottom:515.055000px;}
.y65{bottom:519.735000px;}
.y10e{bottom:520.635000px;}
.y230{bottom:520.815000px;}
.yb{bottom:520.864502px;}
.y298{bottom:522.075000px;}
.y1a5{bottom:522.692637px;}
.y86{bottom:523.515000px;}
.y100{bottom:523.875000px;}
.y1b1{bottom:525.819508px;}
.y315{bottom:525.855000px;}
.y1c8{bottom:527.115000px;}
.yd2{bottom:528.375000px;}
.y2d7{bottom:532.875000px;}
.y201{bottom:535.395000px;}
.ya7{bottom:535.935000px;}
.y2d8{bottom:538.815000px;}
.ya{bottom:538.864499px;}
.y10d{bottom:541.155000px;}
.y2c9{bottom:542.055000px;}
.y2b{bottom:542.775000px;}
.y85{bottom:544.035000px;}
.y314{bottom:546.375000px;}
.y1ae{bottom:547.012628px;}
.y1c7{bottom:547.635000px;}
.yd1{bottom:548.895000px;}
.y64{bottom:552.315000px;}
.y2d6{bottom:553.395000px;}
.y22f{bottom:555.015000px;}
.y200{bottom:555.915000px;}
.ya6{bottom:556.095000px;}
.yff{bottom:556.815000px;}
.y9{bottom:556.864499px;}
.y297{bottom:558.795000px;}
.y10c{bottom:561.495000px;}
.y84{bottom:564.555000px;}
.y1aa{bottom:568.118962px;}
.y1c6{bottom:568.155000px;}
.yd0{bottom:569.415000px;}
.y172{bottom:571.209000px;}
.y63{bottom:572.655000px;}
.y2d5{bottom:573.735000px;}
.y2c8{bottom:574.815000px;}
.y1ff{bottom:576.435000px;}
.ya5{bottom:576.615000px;}
.yfe{bottom:576.975000px;}
.y313{bottom:578.955000px;}
.y22e{bottom:579.315000px;}
.y28{bottom:579.495000px;}
.y10b{bottom:582.015000px;}
.y83{bottom:584.925000px;}
.y296{bottom:587.265000px;}
.y2aa{bottom:587.700000px;}
.y1c5{bottom:588.525000px;}
.y1a8{bottom:589.225296px;}
.ycf{bottom:589.785000px;}
.y171{bottom:591.729000px;}
.y62{bottom:593.205000px;}
.y2d4{bottom:594.285000px;}
.y2c6{bottom:595.005000px;}
.y1fe{bottom:596.985000px;}
.ya4{bottom:597.165000px;}
.y312{bottom:599.325000px;}
.y22d{bottom:599.865000px;}
.y2c7{bottom:600.945000px;}
.y10a{bottom:602.565000px;}
.y82{bottom:605.445000px;}
.y1c4{bottom:609.045000px;}
.yfd{bottom:609.765000px;}
.yce{bottom:610.305000px;}
.y1a3{bottom:610.422107px;}
.y170{bottom:612.069000px;}
.y61{bottom:613.545000px;}
.y2d3{bottom:614.805000px;}
.y2c5{bottom:615.525000px;}
.y13a{bottom:617.043276px;}
.y14f{bottom:617.043287px;}
.y152{bottom:617.043307px;}
.y1fd{bottom:617.325000px;}
.ya3{bottom:617.685000px;}
.y22c{bottom:619.665000px;}
.y14b{bottom:620.235356px;}
.y109{bottom:623.085000px;}
.y81{bottom:625.965000px;}
.y1c3{bottom:629.565000px;}
.yfc{bottom:630.465000px;}
.ycd{bottom:630.825000px;}
.y311{bottom:632.085000px;}
.y16f{bottom:632.589000px;}
.y60{bottom:634.065000px;}
.y2d2{bottom:635.325000px;}
.y2c4{bottom:636.045000px;}
.y22b{bottom:636.405000px;}
.y1fc{bottom:637.845000px;}
.ya2{bottom:638.025000px;}
.y146{bottom:641.870369px;}
.y149{bottom:641.870390px;}
.y108{bottom:643.425000px;}
.y8{bottom:645.510000px;}
.y80{bottom:648.105000px;}
.y1c2{bottom:650.085000px;}
.yfb{bottom:650.805000px;}
.ycc{bottom:651.345000px;}
.y310{bottom:652.245000px;}
.y16e{bottom:653.109000px;}
.y22a{bottom:653.145000px;}
.y5f{bottom:654.585000px;}
.y2d1{bottom:655.665000px;}
.y2c3{bottom:656.565000px;}
.y1fb{bottom:658.365000px;}
.y124{bottom:658.509000px;}
.ya1{bottom:658.545000px;}
.y141{bottom:663.416788px;}
.y144{bottom:663.416809px;}
.y107{bottom:665.385000px;}
.y7{bottom:666.771000px;}
.y229{bottom:669.885000px;}
.y1c1{bottom:670.425000px;}
.yfa{bottom:671.325000px;}
.ycb{bottom:671.685000px;}
.y30f{bottom:672.765000px;}
.y16d{bottom:673.629000px;}
.y5e{bottom:675.105000px;}
.y2cf{bottom:676.185000px;}
.y2c2{bottom:676.905000px;}
.y1fa{bottom:678.885000px;}
.y123{bottom:679.029000px;}
.ya0{bottom:679.065000px;}
.y2d0{bottom:682.125000px;}
.y106{bottom:682.485000px;}
.y13d{bottom:684.963207px;}
.y140{bottom:684.963228px;}
.y7f{bottom:685.905000px;}
.y228{bottom:686.805000px;}
.y1c0{bottom:690.945000px;}
.yf9{bottom:691.845000px;}
.yca{bottom:692.205000px;}
.y4c{bottom:693.825000px;}
.y16c{bottom:693.969000px;}
.y5d{bottom:695.625000px;}
.y2ce{bottom:696.705000px;}
.y2c1{bottom:697.425000px;}
.y1f9{bottom:699.225000px;}
.y122{bottom:699.549000px;}
.y9f{bottom:699.585000px;}
.y227{bottom:703.545000px;}
.y30e{bottom:705.525000px;}
.y138{bottom:706.601989px;}
.y13c{bottom:706.602009px;}
.y26{bottom:710.925000px;}
.y1bf{bottom:711.465000px;}
.yf8{bottom:712.365000px;}
.yc8{bottom:712.725000px;}
.y16b{bottom:714.489000px;}
.y2cd{bottom:717.225000px;}
.y2c0{bottom:717.945000px;}
.y7e{bottom:718.305000px;}
.yc9{bottom:718.665000px;}
.y1f8{bottom:719.745000px;}
.y9e{bottom:719.925000px;}
.y121{bottom:719.934000px;}
.y226{bottom:720.285000px;}
.y30d{bottom:725.685000px;}
.y6{bottom:726.298500px;}
.y4b{bottom:727.485000px;}
.y5c{bottom:728.205000px;}
.y302{bottom:729.465000px;}
.y1be{bottom:731.985000px;}
.yf7{bottom:732.885000px;}
.yc7{bottom:733.245000px;}
.y16a{bottom:735.054000px;}
.y7d{bottom:735.225000px;}
.y91{bottom:735.480000px;}
.y1f7{bottom:736.845000px;}
.y217{bottom:737.100000px;}
.y9d{bottom:737.205000px;}
.y225{bottom:737.565000px;}
.y2bf{bottom:738.465000px;}
.y120{bottom:740.454000px;}
.y30c{bottom:746.205000px;}
.y5b{bottom:748.545000px;}
.y301{bottom:749.805000px;}
.y1bd{bottom:752.325000px;}
.y3{bottom:752.599495px;}
.yf6{bottom:753.225000px;}
.yc6{bottom:753.585000px;}
.y224{bottom:754.665000px;}
.y242{bottom:754.920000px;}
.y169{bottom:755.574000px;}
.y2be{bottom:758.805000px;}
.y11f{bottom:760.974000px;}
.y4a{bottom:761.325000px;}
.y257{bottom:764.025000px;}
.y5a{bottom:768.885000px;}
.y258{bottom:769.965000px;}
.y300{bottom:770.145000px;}
.y1bc{bottom:772.845000px;}
.yf5{bottom:773.745000px;}
.yc5{bottom:774.105000px;}
.y278{bottom:775.725000px;}
.y168{bottom:775.914000px;}
.y30b{bottom:778.965000px;}
.y2bd{bottom:779.325000px;}
.y11e{bottom:781.494000px;}
.y59{bottom:789.405000px;}
.y2ff{bottom:790.665000px;}
.y167{bottom:793.194000px;}
.y1bb{bottom:793.365000px;}
.yf4{bottom:794.265000px;}
.yc4{bottom:794.625000px;}
.y49{bottom:794.985000px;}
.y277{bottom:796.245000px;}
.y256{bottom:796.425000px;}
.y30a{bottom:799.125000px;}
.y2bc{bottom:799.845000px;}
.y11d{bottom:801.834000px;}
.y58{bottom:809.925000px;}
.y2fe{bottom:811.185000px;}
.y48{bottom:813.885000px;}
.yf3{bottom:814.785000px;}
.yc3{bottom:815.145000px;}
.y309{bottom:819.645000px;}
.y2bb{bottom:820.365000px;}
.y11c{bottom:822.354000px;}
.y254{bottom:829.050000px;}
.y57{bottom:830.490000px;}
.y2fd{bottom:831.750000px;}
.y47{bottom:831.930000px;}
.y1ba{bottom:834.270000px;}
.y255{bottom:834.990000px;}
.yf2{bottom:835.170000px;}
.yc2{bottom:835.530000px;}
.y308{bottom:840.210000px;}
.y2ba{bottom:840.750000px;}
.y11b{bottom:842.874000px;}
.y253{bottom:849.210000px;}
.y46{bottom:850.110000px;}
.y56{bottom:850.830000px;}
.y2fc{bottom:852.090000px;}
.y1b9{bottom:854.790000px;}
.yf1{bottom:855.690000px;}
.yc1{bottom:856.050000px;}
.y2b8{bottom:861.270000px;}
.y276{bottom:861.450000px;}
.y11a{bottom:863.394000px;}
.y2b9{bottom:867.210000px;}
.y45{bottom:868.110000px;}
.y252{bottom:869.730000px;}
.y55{bottom:871.350000px;}
.y2fb{bottom:872.610000px;}
.y307{bottom:872.790000px;}
.y1b8{bottom:875.310000px;}
.yf0{bottom:876.210000px;}
.yc0{bottom:876.570000px;}
.y2{bottom:879.369000px;}
.y275{bottom:881.790000px;}
.y119{bottom:883.734000px;}
.y44{bottom:886.110000px;}
.y251{bottom:890.250000px;}
.y295{bottom:890.430000px;}
.y1b5{bottom:890.970000px;}
.y2fa{bottom:893.130000px;}
.yef{bottom:896.730000px;}
.ybf{bottom:897.090000px;}
.y274{bottom:902.310000px;}
.y54{bottom:904.110000px;}
.y118{bottom:904.254000px;}
.y43{bottom:904.290000px;}
.y187{bottom:904.907982px;}
.y19d{bottom:904.908003px;}
.y1a2{bottom:904.908043px;}
.y1db{bottom:907.532427px;}
.y1f1{bottom:907.532448px;}
.y1f6{bottom:907.532488px;}
.y199{bottom:908.075787px;}
.y1ed{bottom:910.647067px;}
.y250{bottom:910.770000px;}
.y24{bottom:912.390000px;}
.y306{bottom:913.650000px;}
.ybe{bottom:917.430000px;}
.yee{bottom:918.690000px;}
.y42{bottom:922.290000px;}
.y273{bottom:922.650000px;}
.y53{bottom:924.270000px;}
.y117{bottom:924.774000px;}
.y2f9{bottom:925.710000px;}
.y194{bottom:929.546202px;}
.y197{bottom:929.546243px;}
.y1e8{bottom:931.757146px;}
.y1eb{bottom:931.757187px;}
.y305{bottom:933.990000px;}
.ybd{bottom:937.950000px;}
.y41{bottom:940.470000px;}
.yed{bottom:943.170000px;}
.y24f{bottom:943.350000px;}
.y52{bottom:944.790000px;}
.y116{bottom:945.294000px;}
.y2f8{bottom:946.050000px;}
.y18f{bottom:950.928697px;}
.y192{bottom:950.928738px;}
.y1e3{bottom:952.780780px;}
.y1e6{bottom:952.780821px;}
.y166{bottom:955.554000px;}
.y40{bottom:958.470000px;}
.yec{bottom:963.690000px;}
.y51{bottom:965.310000px;}
.y2f7{bottom:966.570000px;}
.y1{bottom:966.726000px;}
.y304{bottom:966.750000px;}
.ybc{bottom:970.710000px;}
.y18b{bottom:972.311192px;}
.y18e{bottom:972.311233px;}
.y1df{bottom:973.804414px;}
.y1e2{bottom:973.804455px;}
.y3f{bottom:976.470000px;}
.ybb{bottom:982.410000px;}
.yeb{bottom:984.210000px;}
.y50{bottom:985.830000px;}
.y2f6{bottom:987.090000px;}
.y22{bottom:989.250000px;}
.y185{bottom:993.785347px;}
.y189{bottom:993.785388px;}
.y3e{bottom:994.650000px;}
.y1d9{bottom:994.918170px;}
.y1dd{bottom:994.918211px;}
.y2f2{bottom:1002.570000px;}
.yea{bottom:1004.550000px;}
.y4f{bottom:1006.170000px;}
.y2f5{bottom:1007.430000px;}
.y24e{bottom:1010.490000px;}
.y3d{bottom:1012.650000px;}
.y7c{bottom:1025.070000px;}
.yba{bottom:1025.250000px;}
.y2f4{bottom:1027.950000px;}
.y4e{bottom:1028.130000px;}
.y3c{bottom:1030.830000px;}
.y303{bottom:1040.190000px;}
.y7a{bottom:1045.590000px;}
.y3b{bottom:1048.830000px;}
.y7b{bottom:1051.530000px;}
.y2cc{bottom:1052.430000px;}
.y4d{bottom:1062.150000px;}
.y79{bottom:1066.110000px;}
.y3a{bottom:1067.010000px;}
.y38{bottom:1075.680000px;}
.h5f{height:15.300000px;}
.h28{height:31.201172px;}
.h7{height:32.130000px;}
.h11{height:36.720000px;}
.h21{height:40.550625px;}
.h14{height:41.385000px;}
.h20{height:43.554375px;}
.h6{height:45.900000px;}
.h60{height:46.801758px;}
.h3{height:48.195000px;}
.h2b{height:48.871406px;}
.h2a{height:50.312812px;}
.h5c{height:50.598633px;}
.h17{height:51.793945px;}
.h15{height:51.881484px;}
.h53{height:54.140724px;}
.h57{height:54.212912px;}
.h49{height:54.353697px;}
.h4d{height:54.426168px;}
.h36{height:54.985009px;}
.h3a{height:55.058322px;}
.h40{height:55.064874px;}
.h2{height:55.080000px;}
.h44{height:55.138294px;}
.h2d{height:55.487016px;}
.h31{height:55.560999px;}
.h27{height:55.995820px;}
.h24{height:56.320312px;}
.h23{height:56.470500px;}
.h9{height:57.410156px;}
.h1d{height:57.507187px;}
.hb{height:58.500000px;}
.h1f{height:62.067656px;}
.h1c{height:62.327813px;}
.h52{height:66.272052px;}
.h48{height:66.532725px;}
.h35{height:67.305495px;}
.h3f{height:67.403276px;}
.h16{height:67.500000px;}
.h2c{height:67.919997px;}
.ha{height:69.086250px;}
.h5a{height:70.165317px;}
.h50{height:70.441305px;}
.h3d{height:71.259473px;}
.h47{height:71.362997px;}
.h34{height:71.910075px;}
.h13{height:73.010742px;}
.h1a{height:73.440000px;}
.h5{height:78.030000px;}
.h19{height:78.300000px;}
.h10{height:82.995117px;}
.h55{height:87.382203px;}
.h4b{height:87.725917px;}
.h1e{height:87.859687px;}
.h38{height:88.744844px;}
.h42{height:88.873764px;}
.h2f{height:89.555085px;}
.h18{height:90.036000px;}
.h59{height:91.188951px;}
.hc{height:91.283203px;}
.h4f{height:91.547640px;}
.h3c{height:92.610956px;}
.h46{height:92.745492px;}
.h33{height:93.456494px;}
.h25{height:104.065313px;}
.h56{height:108.405837px;}
.h4c{height:108.832251px;}
.h58{height:109.097973px;}
.h4e{height:109.527110px;}
.h39{height:110.096326px;}
.h43{height:110.256259px;}
.h3b{height:110.799255px;}
.h45{height:110.960210px;}
.h30{height:111.101504px;}
.h32{height:111.810851px;}
.h26{height:113.726250px;}
.h4{height:119.055004px;}
.hf{height:131.436000px;}
.he{height:141.793242px;}
.h54{height:153.654295px;}
.h4a{height:154.258642px;}
.h37{height:156.050339px;}
.h41{height:156.277081px;}
.h2e{height:157.475102px;}
.h51{height:190.830000px;}
.h1b{height:197.815430px;}
.hd{height:201.450000px;}
.h22{height:284.760000px;}
.h5e{height:285.660000px;}
.h5d{height:285.840000px;}
.h12{height:294.150000px;}
.h5b{height:303.660000px;}
.h29{height:960.990000px;}
.h3e{height:971.250000px;}
.h8{height:1188.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w23{width:45.036000px;}
.w1c{width:144.483061px;}
.w1e{width:144.483063px;}
.w1f{width:144.483064px;}
.w18{width:145.047512px;}
.w1a{width:145.047513px;}
.w1b{width:145.047514px;}
.w10{width:146.738162px;}
.w12{width:146.738163px;}
.w13{width:146.738164px;}
.w14{width:146.948818px;}
.w16{width:146.948819px;}
.w17{width:146.948820px;}
.wc{width:148.077718px;}
.we{width:148.077719px;}
.wf{width:148.077721px;}
.w7{width:230.475000px;}
.w8{width:287.535000px;}
.w6{width:475.275000px;}
.w1d{width:577.672376px;}
.w19{width:579.929162px;}
.w11{width:586.688721px;}
.w15{width:587.530967px;}
.wd{width:592.044538px;}
.wa{width:637.740000px;}
.w2{width:637.794021px;}
.w20{width:651.420000px;}
.w21{width:655.920000px;}
.wb{width:659.085000px;}
.w22{width:680.400000px;}
.w5{width:705.750000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w9{width:917.999973px;}
.w4{width:917.999986px;}
.w3{width:918.000000px;}
.x0{left:0.000000px;}
.x20{left:5.430109px;}
.xe{left:9.864000px;}
.x4b{left:12.852000px;}
.x12{left:14.328000px;}
.xf{left:17.352000px;}
.x11{left:21.852000px;}
.x4c{left:24.876000px;}
.x57{left:25.956000px;}
.x10{left:29.376000px;}
.x13{left:33.516000px;}
.x4f{left:40.608000px;}
.x50{left:44.715000px;}
.x7{left:96.705000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xc{left:111.635986px;}
.x5d{left:117.035986px;}
.x51{left:119.490000px;}
.x1c{left:127.296000px;}
.x3a{left:135.771891px;}
.x2f{left:137.354426px;}
.x27{left:138.608319px;}
.x62{left:147.960000px;}
.x58{left:159.630000px;}
.x17{left:171.389973px;}
.x18{left:177.149986px;}
.x4{left:203.484001px;}
.x3c{left:206.603566px;}
.x30{left:209.011703px;}
.x15{left:223.049986px;}
.xb{left:322.274986px;}
.x16{left:334.334986px;}
.x61{left:338.834973px;}
.x45{left:348.138765px;}
.x38{left:349.498835px;}
.x2d{left:353.572536px;}
.x25{left:356.800261px;}
.x60{left:358.994973px;}
.x41{left:364.004756px;}
.x33{left:365.426809px;}
.x29{left:369.686164px;}
.x35{left:371.948731px;}
.x21{left:373.060989px;}
.x52{left:374.474973px;}
.x2a{left:376.284105px;}
.x22{left:379.719161px;}
.x43{left:384.273965px;}
.x36{left:385.775203px;}
.x2b{left:390.271736px;}
.x23{left:393.834484px;}
.x40{left:415.963989px;}
.x32{left:417.092100px;}
.x28{left:420.471035px;}
.x1f{left:423.148274px;}
.x63{left:435.675000px;}
.x44{left:453.642580px;}
.x3{left:454.959000px;}
.x37{left:457.588794px;}
.x39{left:459.241015px;}
.x2c{left:468.200725px;}
.x31{left:471.075341px;}
.x48{left:483.584973px;}
.x49{left:489.344986px;}
.x42{left:490.730604px;}
.x34{left:492.647736px;}
.x46{left:494.541915px;}
.x3b{left:496.473936px;}
.x2e{left:498.389961px;}
.x26{left:502.939709px;}
.x24{left:504.626444px;}
.x59{left:508.964973px;}
.x5a{left:514.724986px;}
.x19{left:522.644973px;}
.x6{left:523.905000px;}
.x1a{left:528.404986px;}
.x14{left:547.484986px;}
.x3d{left:578.274000px;}
.x5b{left:579.524973px;}
.x5{left:581.505000px;}
.x1e{left:587.274000px;}
.x5c{left:591.044986px;}
.x1d{left:592.314000px;}
.x53{left:598.244986px;}
.xd{left:601.170000px;}
.x3e{left:604.004973px;}
.x5e{left:605.984973px;}
.x4e{left:608.070000px;}
.x3f{left:609.764986px;}
.x5f{left:617.549986px;}
.x4a{left:619.305000px;}
.x55{left:643.860000px;}
.x56{left:651.390000px;}
.x8{left:711.869973px;}
.x9{left:717.629986px;}
.xa{left:743.909986px;}
.x47{left:757.589986px;}
.x4d{left:762.089986px;}
.x1b{left:763.349986px;}
.x54{left:786.749986px;}
@media print{
.v2{vertical-align:-12.160000pt;}
.v1{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:12.160000pt;}
.v5{vertical-align:39.680000pt;}
.v4{vertical-align:44.800000pt;}
.ls9{letter-spacing:-0.736000pt;}
.ls2e{letter-spacing:-0.368533pt;}
.ls11{letter-spacing:-0.272533pt;}
.ls2c{letter-spacing:-0.271467pt;}
.ls15{letter-spacing:-0.161048pt;}
.ls1b{letter-spacing:-0.159823pt;}
.ls17{letter-spacing:-0.159591pt;}
.ls2f{letter-spacing:-0.158933pt;}
.ls1f{letter-spacing:-0.157759pt;}
.ls25{letter-spacing:-0.157141pt;}
.ls13{letter-spacing:-0.135467pt;}
.ls1d{letter-spacing:-0.125147pt;}
.ls21{letter-spacing:-0.123530pt;}
.ls27{letter-spacing:-0.123046pt;}
.ls1a{letter-spacing:-0.097249pt;}
.ls16{letter-spacing:-0.097108pt;}
.ls8{letter-spacing:-0.097067pt;}
.ls1e{letter-spacing:-0.095993pt;}
.ls24{letter-spacing:-0.095617pt;}
.ls12{letter-spacing:-0.094933pt;}
.ls31{letter-spacing:-0.089067pt;}
.ls5{letter-spacing:-0.082133pt;}
.ls7{letter-spacing:-0.033280pt;}
.ls30{letter-spacing:-0.015360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.015381pt;}
.ls19{letter-spacing:0.015441pt;}
.ls18{letter-spacing:0.015643pt;}
.ls2d{letter-spacing:0.016000pt;}
.lsc{letter-spacing:0.020480pt;}
.lsd{letter-spacing:0.035840pt;}
.lsf{letter-spacing:0.059307pt;}
.ls26{letter-spacing:0.087158pt;}
.ls20{letter-spacing:0.087501pt;}
.ls1c{letter-spacing:0.088646pt;}
.ls3{letter-spacing:0.096533pt;}
.ls10{letter-spacing:0.096640pt;}
.ls2b{letter-spacing:0.121067pt;}
.ls22{letter-spacing:0.123530pt;}
.ls4{letter-spacing:0.167467pt;}
.lsa{letter-spacing:0.192000pt;}
.ls2a{letter-spacing:0.249067pt;}
.ls14{letter-spacing:0.271467pt;}
.ls29{letter-spacing:0.320000pt;}
.ls28{letter-spacing:0.592640pt;}
.ls6{letter-spacing:0.911360pt;}
.ls2{letter-spacing:4.074667pt;}
.ls32{letter-spacing:8.591360pt;}
.lse{letter-spacing:16.058880pt;}
.lsb{letter-spacing:126.970027pt;}
.ls1{letter-spacing:751.770027pt;}
.ws4{word-spacing:-20.783360pt;}
.ws14{word-spacing:-16.640107pt;}
.ws7{word-spacing:-16.368640pt;}
.ws5{word-spacing:-16.271573pt;}
.ws2a{word-spacing:-16.097173pt;}
.ws6{word-spacing:-15.632640pt;}
.ws12{word-spacing:-14.767360pt;}
.ws2e{word-spacing:-14.678293pt;}
.ws11{word-spacing:-14.672427pt;}
.ws10{word-spacing:-14.494827pt;}
.ws8{word-spacing:-13.379584pt;}
.ws9{word-spacing:-13.344000pt;}
.ws16{word-spacing:-13.164095pt;}
.ws15{word-spacing:-13.146567pt;}
.ws1b{word-spacing:-13.063944pt;}
.ws1a{word-spacing:-13.046548pt;}
.ws18{word-spacing:-13.044996pt;}
.ws17{word-spacing:-13.027626pt;}
.wsc{word-spacing:-12.989440pt;}
.ws1c{word-spacing:-12.966694pt;}
.wsb{word-spacing:-12.953600pt;}
.ws19{word-spacing:-12.947888pt;}
.ws1e{word-spacing:-12.921402pt;}
.ws1d{word-spacing:-12.904121pt;}
.ws20{word-spacing:-12.895219pt;}
.ws1f{word-spacing:-12.878049pt;}
.ws25{word-spacing:-12.844692pt;}
.ws24{word-spacing:-12.827589pt;}
.ws13{word-spacing:-12.818133pt;}
.ws21{word-spacing:-12.799226pt;}
.ws23{word-spacing:-12.754518pt;}
.ws26{word-spacing:-12.749075pt;}
.ws22{word-spacing:-12.737461pt;}
.ws28{word-spacing:-12.704543pt;}
.ws27{word-spacing:-12.687552pt;}
.ws3{word-spacing:-11.952640pt;}
.ws2{word-spacing:-11.870507pt;}
.ws1{word-spacing:-10.783360pt;}
.wse{word-spacing:-0.814080pt;}
.ws0{word-spacing:0.000000pt;}
.wsf{word-spacing:0.207360pt;}
.wsd{word-spacing:10.285440pt;}
.ws2b{word-spacing:173.568768pt;}
.ws2c{word-spacing:199.408000pt;}
.wsa{word-spacing:200.421333pt;}
.ws2d{word-spacing:207.568000pt;}
.ws29{word-spacing:237.914667pt;}
.ws2f{word-spacing:246.315435pt;}
._1c{margin-left:-833.885892pt;}
._1e{margin-left:-823.116041pt;}
._20{margin-left:-819.890845pt;}
._1b{margin-left:-773.005378pt;}
._1d{margin-left:-763.021816pt;}
._1a{margin-left:-759.207298pt;}
._14{margin-left:-4.865707pt;}
._a{margin-left:-3.907413pt;}
._0{margin-left:-2.684160pt;}
._1{margin-left:-1.491200pt;}
._5{width:1.199360pt;}
._7{width:2.163200pt;}
._2{width:3.575040pt;}
._3{width:4.936960pt;}
._4{width:6.558293pt;}
._9{width:8.321280pt;}
._8{width:9.244160pt;}
._10{width:10.443093pt;}
._f{width:11.381760pt;}
._b{width:12.835840pt;}
._c{width:14.072320pt;}
._11{width:15.426560pt;}
._19{width:16.334080pt;}
._d{width:17.310720pt;}
._e{width:18.544640pt;}
._16{width:19.721387pt;}
._24{width:21.127680pt;}
._21{width:22.374400pt;}
._27{width:23.552000pt;}
._22{width:24.670720pt;}
._2b{width:25.671680pt;}
._2c{width:27.110827pt;}
._2d{width:33.443840pt;}
._2a{width:37.271040pt;}
._1f{width:44.660907pt;}
._23{width:67.078827pt;}
._17{width:93.766827pt;}
._18{width:103.658667pt;}
._6{width:108.778667pt;}
._26{width:113.775360pt;}
._25{width:114.894080pt;}
._13{width:126.698240pt;}
._29{width:206.845440pt;}
._28{width:207.865600pt;}
._15{width:231.465600pt;}
._12{width:751.770027pt;}
.fs11{font-size:32.000000pt;}
.fsd{font-size:34.560000pt;}
.fsc{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fs10{font-size:42.880000pt;}
.fs1a{font-size:46.142407pt;}
.fs1b{font-size:46.203930pt;}
.fs18{font-size:46.323916pt;}
.fs19{font-size:46.385682pt;}
.fs14{font-size:46.861964pt;}
.fs15{font-size:46.924446pt;}
.fs16{font-size:46.930030pt;}
.fs17{font-size:46.992603pt;}
.fs12{font-size:47.289808pt;}
.fs13{font-size:47.352861pt;}
.fsf{font-size:48.000000pt;}
.fse{font-size:48.128000pt;}
.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;}
.fs9{font-size:74.880000pt;}
.fs8{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:96.000000pt;}
.fs7{font-size:149.120000pt;}
.fsb{font-size:202.880000pt;}
.y0{bottom:0.000000pt;}
.y2f3{bottom:2.400000pt;}
.y34{bottom:3.680000pt;}
.y137{bottom:4.320000pt;}
.y1f3{bottom:9.498239pt;}
.y1f4{bottom:9.498246pt;}
.y1f5{bottom:9.498275pt;}
.y1b4{bottom:9.535592pt;}
.y164{bottom:9.646346pt;}
.y19f{bottom:9.660368pt;}
.y1a0{bottom:9.660375pt;}
.y1a1{bottom:9.660404pt;}
.y151{bottom:9.734425pt;}
.y26f{bottom:10.946667pt;}
.y2b3{bottom:10.973333pt;}
.y291{bottom:11.013333pt;}
.y223{bottom:11.066667pt;}
.y9c{bottom:11.106667pt;}
.y1b7{bottom:14.720000pt;}
.y39{bottom:17.600000pt;}
.y2c{bottom:18.880000pt;}
.y30{bottom:20.480000pt;}
.y136{bottom:22.400000pt;}
.y184{bottom:22.560000pt;}
.y33{bottom:23.680000pt;}
.y266{bottom:25.213333pt;}
.y288{bottom:25.280000pt;}
.y218{bottom:25.346667pt;}
.y243{bottom:25.373333pt;}
.y92{bottom:25.413333pt;}
.y1f2{bottom:28.216682pt;}
.y1b3{bottom:28.327660pt;}
.y163{bottom:28.656683pt;}
.y19e{bottom:28.698324pt;}
.y150{bottom:28.918324pt;}
.y25{bottom:29.440000pt;}
.y135{bottom:40.634667pt;}
.y183{bottom:40.794667pt;}
.y32{bottom:43.680000pt;}
.y1e9{bottom:44.133307pt;}
.y1da{bottom:44.149328pt;}
.y1e4{bottom:44.165350pt;}
.y1f0{bottom:44.166551pt;}
.y1ee{bottom:44.166568pt;}
.y1e0{bottom:44.197393pt;}
.y2b7{bottom:44.253333pt;}
.y1af{bottom:44.306896pt;}
.y1a4{bottom:44.322981pt;}
.y1ab{bottom:44.339065pt;}
.y1b2{bottom:44.340288pt;}
.y1a9{bottom:44.371235pt;}
.y15f{bottom:44.821516pt;}
.y154{bottom:44.837787pt;}
.y15b{bottom:44.854059pt;}
.y162{bottom:44.855295pt;}
.y158{bottom:44.886602pt;}
.y195{bottom:44.886636pt;}
.y186{bottom:44.902931pt;}
.y190{bottom:44.919226pt;}
.y19c{bottom:44.920448pt;}
.y19a{bottom:44.920464pt;}
.y18c{bottom:44.951816pt;}
.y147{bottom:45.230740pt;}
.y139{bottom:45.247160pt;}
.y142{bottom:45.263580pt;}
.y14e{bottom:45.264820pt;}
.y14c{bottom:45.264828pt;}
.y13e{bottom:45.296420pt;}
.y1ec{bottom:46.935116pt;}
.y1ef{bottom:46.935130pt;}
.y1b0{bottom:47.119729pt;}
.y160{bottom:47.667020pt;}
.y198{bottom:47.736269pt;}
.y19b{bottom:47.736284pt;}
.y219{bottom:47.973333pt;}
.y14a{bottom:48.102220pt;}
.y14d{bottom:48.102229pt;}
.y93{bottom:48.640000pt;}
.y2e6{bottom:48.733333pt;}
.y267{bottom:51.520000pt;}
.y2ab{bottom:51.546667pt;}
.y37{bottom:53.280000pt;}
.y244{bottom:55.426667pt;}
.y134{bottom:58.874667pt;}
.y5{bottom:59.133337pt;}
.y2b6{bottom:63.586667pt;}
.y36{bottom:63.680000pt;}
.y1e7{bottom:65.666370pt;}
.y1ea{bottom:65.666383pt;}
.y1ad{bottom:65.924666pt;}
.y15d{bottom:66.690373pt;}
.y193{bottom:66.787255pt;}
.y196{bottom:66.787269pt;}
.y145{bottom:67.299255pt;}
.y148{bottom:67.299264pt;}
.y2a{bottom:68.666667pt;}
.y21a{bottom:70.560000pt;}
.y94{bottom:71.906667pt;}
.y289{bottom:72.000000pt;}
.y2e7{bottom:72.093333pt;}
.y133{bottom:77.114667pt;}
.y268{bottom:77.786667pt;}
.y2ac{bottom:77.826667pt;}
.y2b5{bottom:82.906667pt;}
.y1e5{bottom:84.386097pt;}
.y1ac{bottom:84.718021pt;}
.y245{bottom:85.440000pt;}
.y15c{bottom:85.702012pt;}
.y191{bottom:85.826517pt;}
.y4{bottom:86.333337pt;}
.y143{bottom:86.484474pt;}
.y21b{bottom:93.186667pt;}
.y132{bottom:94.074667pt;}
.y95{bottom:95.133333pt;}
.y182{bottom:95.354667pt;}
.y28a{bottom:95.360000pt;}
.y2e8{bottom:95.453333pt;}
.y29{bottom:96.826667pt;}
.y90{bottom:97.152000pt;}
.y165{bottom:98.272000pt;}
.y8f{bottom:101.152000pt;}
.y2b4{bottom:102.266667pt;}
.y1de{bottom:103.105801pt;}
.y1e1{bottom:103.105817pt;}
.y1a7{bottom:103.511377pt;}
.y269{bottom:104.066667pt;}
.y2ad{bottom:104.093333pt;}
.y159{bottom:104.713650pt;}
.y18a{bottom:104.865756pt;}
.y18d{bottom:104.865771pt;}
.y131{bottom:105.434667pt;}
.y78{bottom:105.632000pt;}
.y13f{bottom:105.669687pt;}
.y115{bottom:107.392000pt;}
.y2e5{bottom:107.872000pt;}
.yb9{bottom:108.992000pt;}
.y2e4{bottom:111.872000pt;}
.ye9{bottom:112.512000pt;}
.y181{bottom:113.594667pt;}
.y8e{bottom:113.792000pt;}
.y241{bottom:113.952000pt;}
.y246{bottom:115.453333pt;}
.y21c{bottom:115.773333pt;}
.y264{bottom:116.512000pt;}
.y96{bottom:118.400000pt;}
.y28b{bottom:118.720000pt;}
.y2e9{bottom:118.813333pt;}
.y2a9{bottom:119.392000pt;}
.y1dc{bottom:121.825535pt;}
.y1a6{bottom:122.304732pt;}
.y2e3{bottom:123.232000pt;}
.y77{bottom:123.712000pt;}
.y156{bottom:123.725288pt;}
.y21{bottom:123.790666pt;}
.y188{bottom:123.905024pt;}
.y13b{bottom:124.854900pt;}
.yb8{bottom:127.232000pt;}
.y216{bottom:127.872000pt;}
.ye8{bottom:128.672000pt;}
.y26a{bottom:130.333333pt;}
.y2ae{bottom:130.373333pt;}
.y180{bottom:131.674667pt;}
.y23{bottom:131.712000pt;}
.y2cb{bottom:131.872000pt;}
.y240{bottom:132.192000pt;}
.ye7{bottom:133.312000pt;}
.y2a8{bottom:137.626667pt;}
.y21d{bottom:138.400000pt;}
.y2e2{bottom:138.586667pt;}
.y97{bottom:141.626667pt;}
.y76{bottom:141.786667pt;}
.y28c{bottom:142.053333pt;}
.y2ea{bottom:142.146667pt;}
.y215{bottom:143.226667pt;}
.y27{bottom:144.040000pt;}
.ye6{bottom:144.186667pt;}
.yb7{bottom:145.466667pt;}
.y247{bottom:145.506667pt;}
.y286{bottom:149.786667pt;}
.y17f{bottom:149.914667pt;}
.y23f{bottom:150.426667pt;}
.y2d{bottom:152.986667pt;}
.y2e1{bottom:153.946667pt;}
.y1b6{bottom:155.680000pt;}
.y2a7{bottom:155.706667pt;}
.y26b{bottom:156.613333pt;}
.y2af{bottom:156.640000pt;}
.y2e0{bottom:157.946667pt;}
.y214{bottom:158.586667pt;}
.ye5{bottom:159.546667pt;}
.y75{bottom:160.026667pt;}
.y21e{bottom:160.986667pt;}
.y263{bottom:162.586667pt;}
.yb6{bottom:163.546667pt;}
.y98{bottom:164.893333pt;}
.y28d{bottom:165.413333pt;}
.y2eb{bottom:165.506667pt;}
.y285{bottom:168.026667pt;}
.y17e{bottom:168.154667pt;}
.y272{bottom:168.613333pt;}
.y2df{bottom:169.146667pt;}
.y2de{bottom:173.146667pt;}
.y213{bottom:173.946667pt;}
.ye4{bottom:174.746667pt;}
.y2f1{bottom:175.040000pt;}
.y18{bottom:175.052000pt;}
.y2ca{bottom:175.226667pt;}
.y248{bottom:175.520000pt;}
.y24d{bottom:176.066667pt;}
.y74{bottom:178.266667pt;}
.y23e{bottom:179.386667pt;}
.yb5{bottom:181.786667pt;}
.y26c{bottom:182.880000pt;}
.y2b0{bottom:182.906667pt;}
.y21f{bottom:183.586667pt;}
.y1d8{bottom:184.826667pt;}
.y2dd{bottom:185.786667pt;}
.y284{bottom:186.106667pt;}
.y294{bottom:186.173333pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y17d{bottom:186.394667pt;}
.y99{bottom:188.160000pt;}
.y28e{bottom:188.773333pt;}
.y2ec{bottom:188.866667pt;}
.y212{bottom:189.146667pt;}
.ye3{bottom:190.106667pt;}
.y2f0{bottom:190.786667pt;}
.y2a6{bottom:192.186667pt;}
.y262{bottom:193.146667pt;}
.ye2{bottom:194.106667pt;}
.y271{bottom:195.293333pt;}
.y321{bottom:195.866667pt;}
.y73{bottom:196.506667pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y23d{bottom:197.466667pt;}
.yb4{bottom:200.026667pt;}
.y24c{bottom:200.066667pt;}
.y293{bottom:203.706667pt;}
.y283{bottom:204.346667pt;}
.y211{bottom:204.506667pt;}
.y17c{bottom:204.514667pt;}
.y249{bottom:205.533333pt;}
.y261{bottom:205.786667pt;}
.y220{bottom:206.213333pt;}
.y2ef{bottom:206.533333pt;}
.ye1{bottom:206.746667pt;}
.y210{bottom:208.506667pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y26d{bottom:209.146667pt;}
.y2b1{bottom:209.186667pt;}
.y2a5{bottom:210.426667pt;}
.y9a{bottom:211.386667pt;}
.y28f{bottom:212.133333pt;}
.y2ed{bottom:212.226667pt;}
.y155{bottom:213.109347pt;}
.y1d7{bottom:213.946667pt;}
.y72{bottom:214.586667pt;}
.y23c{bottom:215.706667pt;}
.y161{bottom:215.921072pt;}
.yb3{bottom:218.266667pt;}
.y20f{bottom:221.146667pt;}
.y292{bottom:221.280000pt;}
.y270{bottom:221.986667pt;}
.y2ee{bottom:222.266667pt;}
.y282{bottom:222.586667pt;}
.y17b{bottom:222.754667pt;}
.y24b{bottom:224.066667pt;}
.y320{bottom:224.666667pt;}
.y2a4{bottom:228.506667pt;}
.y221{bottom:228.800000pt;}
.y35{bottom:230.106667pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y1d6{bottom:231.866667pt;}
.ye0{bottom:232.986667pt;}
.y23b{bottom:233.786667pt;}
.y9b{bottom:234.653333pt;}
.y15e{bottom:234.978205pt;}
.y26e{bottom:235.426667pt;}
.y2b2{bottom:235.453333pt;}
.y290{bottom:235.493333pt;}
.y24a{bottom:235.586667pt;}
.yb2{bottom:236.346667pt;}
.y260{bottom:237.626667pt;}
.y2e{bottom:240.040000pt;}
.y281{bottom:240.826667pt;}
.y17a{bottom:240.994667pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y71{bottom:243.706667pt;}
.y2a3{bottom:246.746667pt;}
.y130{bottom:248.674667pt;}
.y1d5{bottom:250.106667pt;}
.ydf{bottom:251.226667pt;}
.y222{bottom:251.426667pt;}
.y23a{bottom:252.026667pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y31f{bottom:253.626667pt;}
.y15a{bottom:253.957300pt;}
.y25f{bottom:255.866667pt;}
.y20e{bottom:257.466667pt;}
.y280{bottom:258.906667pt;}
.y179{bottom:259.234667pt;}
.y70{bottom:261.786667pt;}
.y2a2{bottom:264.986667pt;}
.yb1{bottom:265.466667pt;}
.y12f{bottom:266.914667pt;}
.y1d4{bottom:268.346667pt;}
.y105{bottom:269.306667pt;}
.ydd{bottom:269.466667pt;}
.y239{bottom:270.266667pt;}
.y31e{bottom:271.706667pt;}
.y157{bottom:272.936396pt;}
.y25e{bottom:274.106667pt;}
.yde{bottom:274.746667pt;}
.y20d{bottom:275.706667pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y27f{bottom:277.146667pt;}
.y178{bottom:277.314667pt;}
.y6f{bottom:279.866667pt;}
.y2a1{bottom:283.226667pt;}
.yb0{bottom:283.546667pt;}
.y12e{bottom:285.154667pt;}
.y1d3{bottom:286.586667pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.ydc{bottom:287.706667pt;}
.y238{bottom:288.506667pt;}
.y31d{bottom:289.786667pt;}
.y153{bottom:291.996848pt;}
.y25d{bottom:292.346667pt;}
.y20c{bottom:293.946667pt;}
.y27e{bottom:295.386667pt;}
.y177{bottom:295.554667pt;}
.y6e{bottom:298.106667pt;}
.y104{bottom:298.266667pt;}
.y2a0{bottom:301.306667pt;}
.yaf{bottom:301.626667pt;}
.y12d{bottom:303.234667pt;}
.y1d2{bottom:304.706667pt;}
.ydb{bottom:305.826667pt;}
.y237{bottom:306.786667pt;}
.y31c{bottom:308.066667pt;}
.yf{bottom:309.452000pt;}
.y20b{bottom:312.226667pt;}
.y27d{bottom:313.666667pt;}
.y176{bottom:313.794667pt;}
.y6d{bottom:316.386667pt;}
.y31{bottom:317.666667pt;}
.y29f{bottom:319.586667pt;}
.yae{bottom:319.906667pt;}
.y12c{bottom:321.474667pt;}
.y25c{bottom:322.626667pt;}
.y1d1{bottom:322.946667pt;}
.yda{bottom:324.066667pt;}
.y236{bottom:324.866667pt;}
.y8d{bottom:327.266667pt;}
.y20a{bottom:330.306667pt;}
.y175{bottom:332.034667pt;}
.y6c{bottom:334.626667pt;}
.y31b{bottom:337.026667pt;}
.y29e{bottom:337.826667pt;}
.yad{bottom:338.146667pt;}
.y12b{bottom:339.714667pt;}
.y1d0{bottom:341.186667pt;}
.yd9{bottom:342.306667pt;}
.y114{bottom:343.106667pt;}
.ye{bottom:343.809333pt;}
.y27c{bottom:343.906667pt;}
.y208{bottom:348.546667pt;}
.y174{bottom:350.114667pt;}
.y6b{bottom:352.706667pt;}
.y103{bottom:352.866667pt;}
.y209{bottom:353.826667pt;}
.y31a{bottom:355.106667pt;}
.y25b{bottom:355.266667pt;}
.y29d{bottom:356.066667pt;}
.y8c{bottom:356.386667pt;}
.y12a{bottom:357.954667pt;}
.y1cf{bottom:359.426667pt;}
.yd8{bottom:360.546667pt;}
.y235{bottom:361.346667pt;}
.yd{bottom:362.706666pt;}
.y173{bottom:365.314667pt;}
.y207{bottom:366.786667pt;}
.y6a{bottom:370.946667pt;}
.y113{bottom:371.906667pt;}
.y319{bottom:373.346667pt;}
.y29c{bottom:374.146667pt;}
.y8b{bottom:374.306667pt;}
.yac{bottom:374.466667pt;}
.y129{bottom:376.034667pt;}
.y27b{bottom:376.386667pt;}
.y1cd{bottom:377.506667pt;}
.y2f{bottom:377.666667pt;}
.yd7{bottom:378.626667pt;}
.y234{bottom:379.586667pt;}
.y1ce{bottom:382.786667pt;}
.y25a{bottom:384.066667pt;}
.y206{bottom:385.026667pt;}
.y69{bottom:389.186667pt;}
.y112{bottom:389.986667pt;}
.y29b{bottom:392.386667pt;}
.y8a{bottom:392.546667pt;}
.yab{bottom:392.706667pt;}
.y128{bottom:394.274667pt;}
.y1cc{bottom:395.746667pt;}
.yd6{bottom:396.866667pt;}
.y2dc{bottom:400.866667pt;}
.y318{bottom:402.306667pt;}
.y205{bottom:403.106667pt;}
.y27a{bottom:405.346667pt;}
.y68{bottom:407.426667pt;}
.y102{bottom:407.746667pt;}
.y111{bottom:408.226667pt;}
.y233{bottom:408.546667pt;}
.y259{bottom:409.826667pt;}
.y265{bottom:410.080000pt;}
.y29a{bottom:410.626667pt;}
.y89{bottom:410.786667pt;}
.yaa{bottom:410.946667pt;}
.y127{bottom:412.541333pt;}
.y1cb{bottom:413.986667pt;}
.yd5{bottom:415.106667pt;}
.y2db{bottom:419.106667pt;}
.y317{bottom:420.386667pt;}
.y204{bottom:421.346667pt;}
.y67{bottom:425.506667pt;}
.y110{bottom:426.306667pt;}
.y232{bottom:426.626667pt;}
.y88{bottom:429.026667pt;}
.ya9{bottom:429.186667pt;}
.y126{bottom:429.661333pt;}
.y299{bottom:430.306667pt;}
.y279{bottom:431.266667pt;}
.y287{bottom:431.360000pt;}
.y1ca{bottom:432.226667pt;}
.yd4{bottom:433.346667pt;}
.y101{bottom:436.866667pt;}
.y2da{bottom:437.186667pt;}
.y203{bottom:439.586667pt;}
.y125{bottom:440.861333pt;}
.y66{bottom:443.746667pt;}
.y10f{bottom:444.546667pt;}
.y231{bottom:444.706667pt;}
.yc{bottom:446.990669pt;}
.y87{bottom:447.106667pt;}
.ya8{bottom:447.266667pt;}
.y316{bottom:449.506667pt;}
.y1c9{bottom:450.306667pt;}
.yd3{bottom:451.426667pt;}
.y2d9{bottom:455.426667pt;}
.y202{bottom:457.826667pt;}
.y65{bottom:461.986667pt;}
.y10e{bottom:462.786667pt;}
.y230{bottom:462.946667pt;}
.yb{bottom:462.990669pt;}
.y298{bottom:464.066667pt;}
.y1a5{bottom:464.615677pt;}
.y86{bottom:465.346667pt;}
.y100{bottom:465.666667pt;}
.y1b1{bottom:467.395118pt;}
.y315{bottom:467.426667pt;}
.y1c8{bottom:468.546667pt;}
.yd2{bottom:469.666667pt;}
.y2d7{bottom:473.666667pt;}
.y201{bottom:475.906667pt;}
.ya7{bottom:476.386667pt;}
.y2d8{bottom:478.946667pt;}
.ya{bottom:478.990666pt;}
.y10d{bottom:481.026667pt;}
.y2c9{bottom:481.826667pt;}
.y2b{bottom:482.466667pt;}
.y85{bottom:483.586667pt;}
.y314{bottom:485.666667pt;}
.y1ae{bottom:486.233447pt;}
.y1c7{bottom:486.786667pt;}
.yd1{bottom:487.906667pt;}
.y64{bottom:490.946667pt;}
.y2d6{bottom:491.906667pt;}
.y22f{bottom:493.346667pt;}
.y200{bottom:494.146667pt;}
.ya6{bottom:494.306667pt;}
.yff{bottom:494.946667pt;}
.y9{bottom:494.990666pt;}
.y297{bottom:496.706667pt;}
.y10c{bottom:499.106667pt;}
.y84{bottom:501.826667pt;}
.y1aa{bottom:504.994633pt;}
.y1c6{bottom:505.026667pt;}
.yd0{bottom:506.146667pt;}
.y172{bottom:507.741333pt;}
.y63{bottom:509.026667pt;}
.y2d5{bottom:509.986667pt;}
.y2c8{bottom:510.946667pt;}
.y1ff{bottom:512.386667pt;}
.ya5{bottom:512.546667pt;}
.yfe{bottom:512.866667pt;}
.y313{bottom:514.626667pt;}
.y22e{bottom:514.946667pt;}
.y28{bottom:515.106667pt;}
.y10b{bottom:517.346667pt;}
.y83{bottom:519.933333pt;}
.y296{bottom:522.013333pt;}
.y2aa{bottom:522.400000pt;}
.y1c5{bottom:523.133333pt;}
.y1a8{bottom:523.755819pt;}
.ycf{bottom:524.253333pt;}
.y171{bottom:525.981333pt;}
.y62{bottom:527.293333pt;}
.y2d4{bottom:528.253333pt;}
.y2c6{bottom:528.893333pt;}
.y1fe{bottom:530.653333pt;}
.ya4{bottom:530.813333pt;}
.y312{bottom:532.733333pt;}
.y22d{bottom:533.213333pt;}
.y2c7{bottom:534.173333pt;}
.y10a{bottom:535.613333pt;}
.y82{bottom:538.173333pt;}
.y1c4{bottom:541.373333pt;}
.yfd{bottom:542.013333pt;}
.yce{bottom:542.493333pt;}
.y1a3{bottom:542.597429pt;}
.y170{bottom:544.061333pt;}
.y61{bottom:545.373333pt;}
.y2d3{bottom:546.493333pt;}
.y2c5{bottom:547.133333pt;}
.y13a{bottom:548.482912pt;}
.y14f{bottom:548.482921pt;}
.y152{bottom:548.482940pt;}
.y1fd{bottom:548.733333pt;}
.ya3{bottom:549.053333pt;}
.y22c{bottom:550.813333pt;}
.y14b{bottom:551.320317pt;}
.y109{bottom:553.853333pt;}
.y81{bottom:556.413333pt;}
.y1c3{bottom:559.613333pt;}
.yfc{bottom:560.413333pt;}
.ycd{bottom:560.733333pt;}
.y311{bottom:561.853333pt;}
.y16f{bottom:562.301333pt;}
.y60{bottom:563.613333pt;}
.y2d2{bottom:564.733333pt;}
.y2c4{bottom:565.373333pt;}
.y22b{bottom:565.693333pt;}
.y1fc{bottom:566.973333pt;}
.ya2{bottom:567.133333pt;}
.y146{bottom:570.551440pt;}
.y149{bottom:570.551458pt;}
.y108{bottom:571.933333pt;}
.y8{bottom:573.786667pt;}
.y80{bottom:576.093333pt;}
.y1c2{bottom:577.853333pt;}
.yfb{bottom:578.493333pt;}
.ycc{bottom:578.973333pt;}
.y310{bottom:579.773333pt;}
.y16e{bottom:580.541333pt;}
.y22a{bottom:580.573333pt;}
.y5f{bottom:581.853333pt;}
.y2d1{bottom:582.813333pt;}
.y2c3{bottom:583.613333pt;}
.y1fb{bottom:585.213333pt;}
.y124{bottom:585.341333pt;}
.ya1{bottom:585.373333pt;}
.y141{bottom:589.703812pt;}
.y144{bottom:589.703830pt;}
.y107{bottom:591.453333pt;}
.y7{bottom:592.685334pt;}
.y229{bottom:595.453333pt;}
.y1c1{bottom:595.933333pt;}
.yfa{bottom:596.733333pt;}
.ycb{bottom:597.053333pt;}
.y30f{bottom:598.013333pt;}
.y16d{bottom:598.781333pt;}
.y5e{bottom:600.093333pt;}
.y2cf{bottom:601.053333pt;}
.y2c2{bottom:601.693333pt;}
.y1fa{bottom:603.453333pt;}
.y123{bottom:603.581333pt;}
.ya0{bottom:603.613333pt;}
.y2d0{bottom:606.333333pt;}
.y106{bottom:606.653333pt;}
.y13d{bottom:608.856184pt;}
.y140{bottom:608.856202pt;}
.y7f{bottom:609.693333pt;}
.y228{bottom:610.493333pt;}
.y1c0{bottom:614.173333pt;}
.yf9{bottom:614.973333pt;}
.yca{bottom:615.293333pt;}
.y4c{bottom:616.733333pt;}
.y16c{bottom:616.861333pt;}
.y5d{bottom:618.333333pt;}
.y2ce{bottom:619.293333pt;}
.y2c1{bottom:619.933333pt;}
.y1f9{bottom:621.533333pt;}
.y122{bottom:621.821333pt;}
.y9f{bottom:621.853333pt;}
.y227{bottom:625.373333pt;}
.y30e{bottom:627.133333pt;}
.y138{bottom:628.090657pt;}
.y13c{bottom:628.090675pt;}
.y26{bottom:631.933333pt;}
.y1bf{bottom:632.413333pt;}
.yf8{bottom:633.213333pt;}
.yc8{bottom:633.533333pt;}
.y16b{bottom:635.101333pt;}
.y2cd{bottom:637.533333pt;}
.y2c0{bottom:638.173333pt;}
.y7e{bottom:638.493333pt;}
.yc9{bottom:638.813333pt;}
.y1f8{bottom:639.773333pt;}
.y9e{bottom:639.933333pt;}
.y121{bottom:639.941333pt;}
.y226{bottom:640.253333pt;}
.y30d{bottom:645.053333pt;}
.y6{bottom:645.598667pt;}
.y4b{bottom:646.653333pt;}
.y5c{bottom:647.293333pt;}
.y302{bottom:648.413333pt;}
.y1be{bottom:650.653333pt;}
.yf7{bottom:651.453333pt;}
.yc7{bottom:651.773333pt;}
.y16a{bottom:653.381333pt;}
.y7d{bottom:653.533333pt;}
.y91{bottom:653.760000pt;}
.y1f7{bottom:654.973333pt;}
.y217{bottom:655.200000pt;}
.y9d{bottom:655.293333pt;}
.y225{bottom:655.613333pt;}
.y2bf{bottom:656.413333pt;}
.y120{bottom:658.181333pt;}
.y30c{bottom:663.293333pt;}
.y5b{bottom:665.373333pt;}
.y301{bottom:666.493333pt;}
.y1bd{bottom:668.733333pt;}
.y3{bottom:668.977329pt;}
.yf6{bottom:669.533333pt;}
.yc6{bottom:669.853333pt;}
.y224{bottom:670.813333pt;}
.y242{bottom:671.040000pt;}
.y169{bottom:671.621333pt;}
.y2be{bottom:674.493333pt;}
.y11f{bottom:676.421333pt;}
.y4a{bottom:676.733333pt;}
.y257{bottom:679.133333pt;}
.y5a{bottom:683.453333pt;}
.y258{bottom:684.413333pt;}
.y300{bottom:684.573333pt;}
.y1bc{bottom:686.973333pt;}
.yf5{bottom:687.773333pt;}
.yc5{bottom:688.093333pt;}
.y278{bottom:689.533333pt;}
.y168{bottom:689.701333pt;}
.y30b{bottom:692.413333pt;}
.y2bd{bottom:692.733333pt;}
.y11e{bottom:694.661333pt;}
.y59{bottom:701.693333pt;}
.y2ff{bottom:702.813333pt;}
.y167{bottom:705.061333pt;}
.y1bb{bottom:705.213333pt;}
.yf4{bottom:706.013333pt;}
.yc4{bottom:706.333333pt;}
.y49{bottom:706.653333pt;}
.y277{bottom:707.773333pt;}
.y256{bottom:707.933333pt;}
.y30a{bottom:710.333333pt;}
.y2bc{bottom:710.973333pt;}
.y11d{bottom:712.741333pt;}
.y58{bottom:719.933333pt;}
.y2fe{bottom:721.053333pt;}
.y48{bottom:723.453333pt;}
.yf3{bottom:724.253333pt;}
.yc3{bottom:724.573333pt;}
.y309{bottom:728.573333pt;}
.y2bb{bottom:729.213333pt;}
.y11c{bottom:730.981333pt;}
.y254{bottom:736.933333pt;}
.y57{bottom:738.213333pt;}
.y2fd{bottom:739.333333pt;}
.y47{bottom:739.493333pt;}
.y1ba{bottom:741.573333pt;}
.y255{bottom:742.213333pt;}
.yf2{bottom:742.373333pt;}
.yc2{bottom:742.693333pt;}
.y308{bottom:746.853333pt;}
.y2ba{bottom:747.333333pt;}
.y11b{bottom:749.221333pt;}
.y253{bottom:754.853333pt;}
.y46{bottom:755.653333pt;}
.y56{bottom:756.293333pt;}
.y2fc{bottom:757.413333pt;}
.y1b9{bottom:759.813333pt;}
.yf1{bottom:760.613333pt;}
.yc1{bottom:760.933333pt;}
.y2b8{bottom:765.573333pt;}
.y276{bottom:765.733333pt;}
.y11a{bottom:767.461333pt;}
.y2b9{bottom:770.853333pt;}
.y45{bottom:771.653333pt;}
.y252{bottom:773.093333pt;}
.y55{bottom:774.533333pt;}
.y2fb{bottom:775.653333pt;}
.y307{bottom:775.813333pt;}
.y1b8{bottom:778.053333pt;}
.yf0{bottom:778.853333pt;}
.yc0{bottom:779.173333pt;}
.y2{bottom:781.661334pt;}
.y275{bottom:783.813333pt;}
.y119{bottom:785.541333pt;}
.y44{bottom:787.653333pt;}
.y251{bottom:791.333333pt;}
.y295{bottom:791.493333pt;}
.y1b5{bottom:791.973333pt;}
.y2fa{bottom:793.893333pt;}
.yef{bottom:797.093333pt;}
.ybf{bottom:797.413333pt;}
.y274{bottom:802.053333pt;}
.y54{bottom:803.653333pt;}
.y118{bottom:803.781333pt;}
.y43{bottom:803.813333pt;}
.y187{bottom:804.362651pt;}
.y19d{bottom:804.362669pt;}
.y1a2{bottom:804.362705pt;}
.y1db{bottom:806.695491pt;}
.y1f1{bottom:806.695509pt;}
.y1f6{bottom:806.695545pt;}
.y199{bottom:807.178477pt;}
.y1ed{bottom:809.464060pt;}
.y250{bottom:809.573333pt;}
.y24{bottom:811.013333pt;}
.y306{bottom:812.133333pt;}
.ybe{bottom:815.493333pt;}
.yee{bottom:816.613333pt;}
.y42{bottom:819.813333pt;}
.y273{bottom:820.133333pt;}
.y53{bottom:821.573333pt;}
.y117{bottom:822.021333pt;}
.y2f9{bottom:822.853333pt;}
.y194{bottom:826.263291pt;}
.y197{bottom:826.263327pt;}
.y1e8{bottom:828.228574pt;}
.y1eb{bottom:828.228611pt;}
.y305{bottom:830.213333pt;}
.ybd{bottom:833.733333pt;}
.y41{bottom:835.973333pt;}
.yed{bottom:838.373333pt;}
.y24f{bottom:838.533333pt;}
.y52{bottom:839.813333pt;}
.y116{bottom:840.261333pt;}
.y2f8{bottom:840.933333pt;}
.y18f{bottom:845.269953pt;}
.y192{bottom:845.269989pt;}
.y1e3{bottom:846.916249pt;}
.y1e6{bottom:846.916285pt;}
.y166{bottom:849.381333pt;}
.y40{bottom:851.973333pt;}
.yec{bottom:856.613333pt;}
.y51{bottom:858.053333pt;}
.y2f7{bottom:859.173333pt;}
.y1{bottom:859.312000pt;}
.y304{bottom:859.333333pt;}
.ybc{bottom:862.853333pt;}
.y18b{bottom:864.276615pt;}
.y18e{bottom:864.276651pt;}
.y1df{bottom:865.603924pt;}
.y1e2{bottom:865.603960pt;}
.y3f{bottom:867.973333pt;}
.ybb{bottom:873.253333pt;}
.yeb{bottom:874.853333pt;}
.y50{bottom:876.293333pt;}
.y2f6{bottom:877.413333pt;}
.y22{bottom:879.333333pt;}
.y185{bottom:883.364753pt;}
.y189{bottom:883.364789pt;}
.y3e{bottom:884.133333pt;}
.y1d9{bottom:884.371707pt;}
.y1dd{bottom:884.371743pt;}
.y2f2{bottom:891.173333pt;}
.yea{bottom:892.933333pt;}
.y4f{bottom:894.373333pt;}
.y2f5{bottom:895.493333pt;}
.y24e{bottom:898.213333pt;}
.y3d{bottom:900.133333pt;}
.y7c{bottom:911.173333pt;}
.yba{bottom:911.333333pt;}
.y2f4{bottom:913.733333pt;}
.y4e{bottom:913.893333pt;}
.y3c{bottom:916.293333pt;}
.y303{bottom:924.613333pt;}
.y7a{bottom:929.413333pt;}
.y3b{bottom:932.293333pt;}
.y7b{bottom:934.693333pt;}
.y2cc{bottom:935.493333pt;}
.y4d{bottom:944.133333pt;}
.y79{bottom:947.653333pt;}
.y3a{bottom:948.453333pt;}
.y38{bottom:956.160000pt;}
.h5f{height:13.600000pt;}
.h28{height:27.734375pt;}
.h7{height:28.560000pt;}
.h11{height:32.640000pt;}
.h21{height:36.045000pt;}
.h14{height:36.786667pt;}
.h20{height:38.715000pt;}
.h6{height:40.800000pt;}
.h60{height:41.601562pt;}
.h3{height:42.840000pt;}
.h2b{height:43.441250pt;}
.h2a{height:44.722500pt;}
.h5c{height:44.976562pt;}
.h17{height:46.039063pt;}
.h15{height:46.116875pt;}
.h53{height:48.125088pt;}
.h57{height:48.189255pt;}
.h49{height:48.314397pt;}
.h4d{height:48.378816pt;}
.h36{height:48.875564pt;}
.h3a{height:48.940731pt;}
.h40{height:48.946555pt;}
.h2{height:48.960000pt;}
.h44{height:49.011817pt;}
.h2d{height:49.321792pt;}
.h31{height:49.387555pt;}
.h27{height:49.774063pt;}
.h24{height:50.062500pt;}
.h23{height:50.196000pt;}
.h9{height:51.031250pt;}
.h1d{height:51.117500pt;}
.hb{height:52.000000pt;}
.h1f{height:55.171250pt;}
.h1c{height:55.402500pt;}
.h52{height:58.908490pt;}
.h48{height:59.140200pt;}
.h35{height:59.827107pt;}
.h3f{height:59.914023pt;}
.h16{height:60.000000pt;}
.h2c{height:60.373331pt;}
.ha{height:61.410000pt;}
.h5a{height:62.369171pt;}
.h50{height:62.614494pt;}
.h3d{height:63.341754pt;}
.h47{height:63.433775pt;}
.h34{height:63.920067pt;}
.h13{height:64.898438pt;}
.h1a{height:65.280000pt;}
.h5{height:69.360000pt;}
.h19{height:69.600000pt;}
.h10{height:73.773438pt;}
.h55{height:77.673069pt;}
.h4b{height:77.978593pt;}
.h1e{height:78.097500pt;}
.h38{height:78.884305pt;}
.h42{height:78.998902pt;}
.h2f{height:79.604520pt;}
.h18{height:80.032000pt;}
.h59{height:81.056846pt;}
.hc{height:81.140625pt;}
.h4f{height:81.375680pt;}
.h3c{height:82.320849pt;}
.h46{height:82.440437pt;}
.h33{height:83.072439pt;}
.h25{height:92.502500pt;}
.h56{height:96.360744pt;}
.h4c{height:96.739779pt;}
.h58{height:96.975976pt;}
.h4e{height:97.357431pt;}
.h39{height:97.863401pt;}
.h43{height:98.005564pt;}
.h3b{height:98.488227pt;}
.h45{height:98.631297pt;}
.h30{height:98.756892pt;}
.h32{height:99.387423pt;}
.h26{height:101.090000pt;}
.h4{height:105.826671pt;}
.hf{height:116.832000pt;}
.he{height:126.038437pt;}
.h54{height:136.581596pt;}
.h4a{height:137.118793pt;}
.h37{height:138.711412pt;}
.h41{height:138.912961pt;}
.h2e{height:139.977869pt;}
.h51{height:169.626667pt;}
.h1b{height:175.835938pt;}
.hd{height:179.066667pt;}
.h22{height:253.120000pt;}
.h5e{height:253.920000pt;}
.h5d{height:254.080000pt;}
.h12{height:261.466667pt;}
.h5b{height:269.920000pt;}
.h29{height:854.213333pt;}
.h3e{height:863.333333pt;}
.h8{height:1056.000000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w23{width:40.032000pt;}
.w1c{width:128.429388pt;}
.w1e{width:128.429389pt;}
.w1f{width:128.429390pt;}
.w18{width:128.931121pt;}
.w1a{width:128.931123pt;}
.w1b{width:128.931124pt;}
.w10{width:130.433921pt;}
.w12{width:130.433923pt;}
.w13{width:130.433924pt;}
.w14{width:130.621171pt;}
.w16{width:130.621172pt;}
.w17{width:130.621174pt;}
.wc{width:131.624638pt;}
.we{width:131.624640pt;}
.wf{width:131.624641pt;}
.w7{width:204.866667pt;}
.w8{width:255.586667pt;}
.w6{width:422.466667pt;}
.w1d{width:513.486557pt;}
.w19{width:515.492588pt;}
.w11{width:521.501086pt;}
.w15{width:522.249748pt;}
.wd{width:526.261812pt;}
.wa{width:566.880000pt;}
.w2{width:566.928019pt;}
.w20{width:579.040000pt;}
.w21{width:583.040000pt;}
.wb{width:585.853333pt;}
.w22{width:604.800000pt;}
.w5{width:627.333333pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w9{width:815.999976pt;}
.w4{width:815.999988pt;}
.w3{width:816.000000pt;}
.x0{left:0.000000pt;}
.x20{left:4.826764pt;}
.xe{left:8.768000pt;}
.x4b{left:11.424000pt;}
.x12{left:12.736000pt;}
.xf{left:15.424000pt;}
.x11{left:19.424000pt;}
.x4c{left:22.112000pt;}
.x57{left:23.072000pt;}
.x10{left:26.112000pt;}
.x13{left:29.792000pt;}
.x4f{left:36.096000pt;}
.x50{left:39.746667pt;}
.x7{left:85.960000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xc{left:99.231988pt;}
.x5d{left:104.031988pt;}
.x51{left:106.213333pt;}
.x1c{left:113.152000pt;}
.x3a{left:120.686125pt;}
.x2f{left:122.092823pt;}
.x27{left:123.207395pt;}
.x62{left:131.520000pt;}
.x58{left:141.893333pt;}
.x17{left:152.346642pt;}
.x18{left:157.466655pt;}
.x4{left:180.874667pt;}
.x3c{left:183.647614pt;}
.x30{left:185.788180pt;}
.x15{left:198.266655pt;}
.xb{left:286.466655pt;}
.x16{left:297.186655pt;}
.x61{left:301.186642pt;}
.x45{left:309.456680pt;}
.x38{left:310.665631pt;}
.x2d{left:314.286699pt;}
.x25{left:317.155787pt;}
.x60{left:319.106642pt;}
.x41{left:323.559783pt;}
.x33{left:324.823831pt;}
.x29{left:328.609924pt;}
.x35{left:330.621094pt;}
.x21{left:331.609768pt;}
.x52{left:332.866642pt;}
.x2a{left:334.474760pt;}
.x22{left:337.528143pt;}
.x43{left:341.576858pt;}
.x36{left:342.911292pt;}
.x2b{left:346.908210pt;}
.x23{left:350.075097pt;}
.x40{left:369.745768pt;}
.x32{left:370.748533pt;}
.x28{left:373.752031pt;}
.x1f{left:376.131799pt;}
.x63{left:387.266667pt;}
.x44{left:403.237849pt;}
.x3{left:404.408000pt;}
.x37{left:406.745594pt;}
.x39{left:408.214235pt;}
.x2c{left:416.178422pt;}
.x31{left:418.733637pt;}
.x48{left:429.853309pt;}
.x49{left:434.973321pt;}
.x42{left:436.204982pt;}
.x34{left:437.909098pt;}
.x46{left:439.592813pt;}
.x3b{left:441.310165pt;}
.x2e{left:443.013299pt;}
.x26{left:447.057519pt;}
.x24{left:448.556839pt;}
.x59{left:452.413309pt;}
.x5a{left:457.533321pt;}
.x19{left:464.573309pt;}
.x6{left:465.693333pt;}
.x1a{left:469.693321pt;}
.x14{left:486.653321pt;}
.x3d{left:514.021333pt;}
.x5b{left:515.133309pt;}
.x5{left:516.893333pt;}
.x1e{left:522.021333pt;}
.x5c{left:525.373321pt;}
.x1d{left:526.501333pt;}
.x53{left:531.773321pt;}
.xd{left:534.373333pt;}
.x3e{left:536.893309pt;}
.x5e{left:538.653309pt;}
.x4e{left:540.506667pt;}
.x3f{left:542.013321pt;}
.x5f{left:548.933321pt;}
.x4a{left:550.493333pt;}
.x55{left:572.320000pt;}
.x56{left:579.013333pt;}
.x8{left:632.773309pt;}
.x9{left:637.893321pt;}
.xa{left:661.253321pt;}
.x47{left:673.413321pt;}
.x4d{left:677.413321pt;}
.x1b{left:678.533321pt;}
.x54{left:699.333321pt;}
}




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