
    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_3663fedb4649fd06a960582f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6548a00a7970d4af17f56d4e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.113281;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_93edf9b2a5f7aa920661bde2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_00b79a0561e55c99ec9a8378.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_ab3a9be2c2f974e2cb29f112.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.120117;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_9321dfada021bbe45b32b070.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.111816;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_7bbc183e642ab163b142ec83.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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:27.321681px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:1.799998px;}
.ls1{letter-spacing:18.000000px;}
.ls5{letter-spacing:19.799998px;}
.ls2{letter-spacing:27.000000px;}
.ls3{letter-spacing:31.500000px;}
.ls9{letter-spacing:31.671025px;}
.ls7{letter-spacing:37.799998px;}
.ls6{letter-spacing:37.800021px;}
.ls4{letter-spacing:64.511718px;}
.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;}
}
.ws3d{word-spacing:-40.605468px;}
.ws6a{word-spacing:-37.221680px;}
.ws8{word-spacing:-26.418591px;}
.ws13{word-spacing:-22.605503px;}
.ws21{word-spacing:-22.605502px;}
.ws18{word-spacing:-22.605491px;}
.ws65{word-spacing:-22.605482px;}
.wsb{word-spacing:-22.605480px;}
.ws26{word-spacing:-22.605472px;}
.ws14{word-spacing:-22.605471px;}
.ws25{word-spacing:-22.605470px;}
.wsc{word-spacing:-22.605468px;}
.ws38{word-spacing:-22.605466px;}
.ws3f{word-spacing:-22.605458px;}
.wsd{word-spacing:-22.605457px;}
.ws57{word-spacing:-22.605446px;}
.ws56{word-spacing:-22.605435px;}
.ws9{word-spacing:-20.746364px;}
.ws35{word-spacing:-18.105503px;}
.ws34{word-spacing:-18.105492px;}
.ws20{word-spacing:-18.105480px;}
.ws6b{word-spacing:-18.105471px;}
.ws2d{word-spacing:-18.105469px;}
.ws72{word-spacing:-18.105467px;}
.ws31{word-spacing:-18.105457px;}
.ws5a{word-spacing:-18.105446px;}
.ws69{word-spacing:-18.105435px;}
.ws48{word-spacing:-13.605502px;}
.wsae{word-spacing:-13.605492px;}
.ws30{word-spacing:-13.605491px;}
.ws32{word-spacing:-13.605480px;}
.wsa2{word-spacing:-13.605479px;}
.ws78{word-spacing:-13.605471px;}
.ws28{word-spacing:-13.605469px;}
.ws43{word-spacing:-13.605467px;}
.ws40{word-spacing:-13.605466px;}
.ws3a{word-spacing:-13.605458px;}
.ws44{word-spacing:-13.605447px;}
.ws7d{word-spacing:-9.105503px;}
.ws49{word-spacing:-9.105491px;}
.ws33{word-spacing:-9.105480px;}
.ws46{word-spacing:-9.105471px;}
.ws96{word-spacing:-9.105470px;}
.ws2c{word-spacing:-9.105469px;}
.ws59{word-spacing:-9.105458px;}
.wsa1{word-spacing:-9.105446px;}
.ws5c{word-spacing:-4.605502px;}
.ws55{word-spacing:-4.605492px;}
.ws27{word-spacing:-4.605480px;}
.ws3b{word-spacing:-4.605472px;}
.ws42{word-spacing:-4.605471px;}
.ws2a{word-spacing:-4.605469px;}
.ws45{word-spacing:-4.605466px;}
.ws7f{word-spacing:-4.605447px;}
.ws9e{word-spacing:-4.605435px;}
.ws97{word-spacing:-0.105503px;}
.ws47{word-spacing:-0.105492px;}
.ws36{word-spacing:-0.105480px;}
.ws9b{word-spacing:-0.105471px;}
.ws29{word-spacing:-0.105469px;}
.ws2f{word-spacing:-0.105458px;}
.ws94{word-spacing:-0.105446px;}
.wsa{word-spacing:-0.084000px;}
.ws93{word-spacing:-0.072000px;}
.ws6{word-spacing:-0.066000px;}
.ws4c{word-spacing:-0.060000px;}
.wse{word-spacing:0.000000px;}
.ws66{word-spacing:4.394497px;}
.ws2e{word-spacing:4.394509px;}
.ws22{word-spacing:4.394520px;}
.wsa3{word-spacing:4.394529px;}
.ws23{word-spacing:4.394531px;}
.ws68{word-spacing:4.394542px;}
.wsb6{word-spacing:4.394543px;}
.ws3e{word-spacing:4.394554px;}
.ws95{word-spacing:4.394565px;}
.ws71{word-spacing:8.894509px;}
.ws2b{word-spacing:8.894520px;}
.ws58{word-spacing:8.894531px;}
.ws64{word-spacing:8.894554px;}
.ws37{word-spacing:13.394509px;}
.ws41{word-spacing:13.394520px;}
.ws6e{word-spacing:13.394531px;}
.ws62{word-spacing:13.394542px;}
.ws4a{word-spacing:13.394565px;}
.ws8d{word-spacing:13.600353px;}
.ws88{word-spacing:13.603592px;}
.wsc8{word-spacing:13.604587px;}
.wsc1{word-spacing:13.604590px;}
.ws89{word-spacing:13.605466px;}
.wsc9{word-spacing:13.605504px;}
.ws61{word-spacing:13.605544px;}
.ws7b{word-spacing:13.605559px;}
.ws7c{word-spacing:13.605569px;}
.ws81{word-spacing:13.605577px;}
.wscb{word-spacing:13.605592px;}
.ws83{word-spacing:13.605609px;}
.ws82{word-spacing:13.605632px;}
.ws5f{word-spacing:13.605638px;}
.ws4e{word-spacing:13.605641px;}
.ws7a{word-spacing:13.605643px;}
.ws84{word-spacing:13.605646px;}
.wsc2{word-spacing:13.605650px;}
.wsc6{word-spacing:13.605655px;}
.ws5e{word-spacing:13.605656px;}
.ws52{word-spacing:13.605677px;}
.ws8c{word-spacing:13.611021px;}
.wsbf{word-spacing:13.612097px;}
.ws53{word-spacing:13.612111px;}
.ws87{word-spacing:16.589162px;}
.ws5b{word-spacing:17.894520px;}
.ws85{word-spacing:17.894531px;}
.ws6f{word-spacing:17.927966px;}
.ws1b{word-spacing:17.927974px;}
.ws70{word-spacing:17.927977px;}
.ws15{word-spacing:17.927984px;}
.ws16{word-spacing:17.927987px;}
.ws19{word-spacing:17.927988px;}
.ws10{word-spacing:17.927997px;}
.ws77{word-spacing:17.927999px;}
.ws12{word-spacing:17.928000px;}
.ws17{word-spacing:17.928002px;}
.ws1e{word-spacing:17.928011px;}
.ws86{word-spacing:18.103525px;}
.ws99{word-spacing:18.104536px;}
.ws80{word-spacing:18.104592px;}
.ws51{word-spacing:18.105497px;}
.wsd0{word-spacing:18.105530px;}
.wscd{word-spacing:18.105553px;}
.ws9a{word-spacing:18.105566px;}
.wsc4{word-spacing:18.105632px;}
.ws8b{word-spacing:18.105641px;}
.wsc3{word-spacing:18.105643px;}
.ws8a{word-spacing:18.106719px;}
.ws5d{word-spacing:18.111021px;}
.ws1{word-spacing:18.231795px;}
.ws90{word-spacing:18.231819px;}
.wsa0{word-spacing:18.231824px;}
.wsb7{word-spacing:20.867823px;}
.ws76{word-spacing:20.870433px;}
.ws1f{word-spacing:20.873016px;}
.ws3c{word-spacing:20.892563px;}
.ws63{word-spacing:22.394497px;}
.ws24{word-spacing:22.394520px;}
.ws98{word-spacing:22.394531px;}
.ws39{word-spacing:22.394565px;}
.ws8e{word-spacing:22.427974px;}
.wsc0{word-spacing:22.604434px;}
.ws4b{word-spacing:22.604581px;}
.wsba{word-spacing:22.605497px;}
.wsca{word-spacing:22.605559px;}
.ws4d{word-spacing:22.605587px;}
.wsc5{word-spacing:22.605627px;}
.wscc{word-spacing:22.605629px;}
.wsbc{word-spacing:22.605632px;}
.wsbe{word-spacing:22.605641px;}
.wscf{word-spacing:22.605674px;}
.wsbb{word-spacing:22.611021px;}
.ws9f{word-spacing:22.716188px;}
.ws91{word-spacing:22.731905px;}
.ws7{word-spacing:23.209637px;}
.ws0{word-spacing:23.214741px;}
.ws6c{word-spacing:26.894520px;}
.ws54{word-spacing:26.894532px;}
.ws74{word-spacing:26.928000px;}
.ws7e{word-spacing:26.928002px;}
.ws79{word-spacing:26.928009px;}
.wsce{word-spacing:27.104604px;}
.wsc7{word-spacing:27.104671px;}
.wsbd{word-spacing:27.105497px;}
.ws4f{word-spacing:27.105629px;}
.wsb9{word-spacing:27.105767px;}
.ws67{word-spacing:31.394531px;}
.ws6d{word-spacing:31.427984px;}
.ws75{word-spacing:31.427989px;}
.wsb8{word-spacing:31.604591px;}
.ws60{word-spacing:31.605532px;}
.ws50{word-spacing:31.605641px;}
.ws2{word-spacing:33.178119px;}
.ws4{word-spacing:33.178210px;}
.ws5{word-spacing:33.178253px;}
.ws3{word-spacing:33.180697px;}
.ws9d{word-spacing:35.928000px;}
.ws8f{word-spacing:36.234453px;}
.wsa4{word-spacing:40.394531px;}
.wsaf{word-spacing:44.894531px;}
.ws73{word-spacing:49.394532px;}
.wsb4{word-spacing:58.394532px;}
.wsad{word-spacing:67.394509px;}
.wsb5{word-spacing:80.894531px;}
.ws92{word-spacing:85.428011px;}
.ws9c{word-spacing:89.927974px;}
.wsaa{word-spacing:98.894531px;}
.wsb1{word-spacing:161.894531px;}
.wsa6{word-spacing:179.894531px;}
.wsb2{word-spacing:184.394531px;}
.wsab{word-spacing:211.394527px;}
.wsa9{word-spacing:229.394531px;}
.wsb3{word-spacing:238.394532px;}
.wsb0{word-spacing:247.394509px;}
.wsa5{word-spacing:296.894510px;}
.wsa7{word-spacing:404.894521px;}
.wsa8{word-spacing:872.894531px;}
.ws1c{word-spacing:1498.908079px;}
.wsf{word-spacing:1755.294928px;}
.ws1d{word-spacing:1776.361206px;}
.wsac{word-spacing:2015.894531px;}
.ws1a{word-spacing:2044.392458px;}
.ws11{word-spacing:2049.330003px;}
._6{margin-left:-9.281247px;}
._9{margin-left:-7.980299px;}
._2{margin-left:-6.263029px;}
._3{margin-left:-5.241674px;}
._0{margin-left:-3.145796px;}
._1{margin-left:-1.621713px;}
._55{width:13.095637px;}
._56{width:14.170762px;}
._4f{width:16.488289px;}
._46{width:17.999999px;}
._4b{width:19.017948px;}
._42{width:22.500020px;}
._4a{width:23.538085px;}
._3f{width:27.000000px;}
._44{width:31.499999px;}
._63{width:32.500795px;}
._43{width:35.080724px;}
._2e{width:36.919297px;}
._48{width:40.500042px;}
._47{width:45.000000px;}
._40{width:49.500003px;}
._45{width:54.000002px;}
._49{width:58.500000px;}
._4d{width:63.000002px;}
._41{width:67.500000px;}
._4c{width:72.000001px;}
._5b{width:76.500000px;}
._4e{width:81.000078px;}
._53{width:84.023438px;}
._50{width:85.500010px;}
._57{width:90.000000px;}
._1c{width:91.152652px;}
._54{width:94.500002px;}
._51{width:98.999997px;}
._52{width:106.523438px;}
._2a{width:117.269367px;}
._62{width:126.000000px;}
._1b{width:133.054402px;}
._5d{width:135.000000px;}
._60{width:207.000002px;}
._61{width:220.500023px;}
._59{width:225.000000px;}
._5e{width:256.500000px;}
._5c{width:274.500000px;}
._30{width:290.976298px;}
._5f{width:292.500002px;}
._1d{width:296.122796px;}
._1f{width:304.968419px;}
._8{width:318.343130px;}
._58{width:342.000002px;}
._33{width:385.124612px;}
._1a{width:401.788671px;}
._32{width:424.991630px;}
._29{width:489.046578px;}
._2f{width:700.968397px;}
._2b{width:719.887652px;}
._17{width:742.733987px;}
._34{width:765.690971px;}
._22{width:771.605930px;}
._d{width:796.382423px;}
._2c{width:835.985252px;}
._e{width:880.757425px;}
._5a{width:918.000000px;}
._20{width:944.741913px;}
._21{width:972.831642px;}
._1e{width:1012.769142px;}
._a{width:1078.827739px;}
._15{width:1122.773051px;}
._18{width:1126.816041px;}
._36{width:1200.573832px;}
._26{width:1208.202745px;}
._25{width:1228.206651px;}
._27{width:1230.567363px;}
._16{width:1232.601176px;}
._f{width:1260.761331px;}
._c{width:1280.765247px;}
._37{width:1292.683207px;}
._11{width:1306.710549px;}
._10{width:1322.706643px;}
._b{width:1328.507302px;}
._7{width:1391.718359px;}
._4{width:1443.524410px;}
._24{width:1474.622023px;}
._12{width:1500.667582px;}
._2d{width:1562.612901px;}
._19{width:1571.085551px;}
._35{width:1588.558207px;}
._14{width:1666.534770px;}
._5{width:1776.398050px;}
._39{width:1804.347269px;}
._38{width:1832.366801px;}
._28{width:1844.822546px;}
._13{width:1862.495707px;}
._23{width:1909.926013px;}
._31{width:1920.327738px;}
._3c{width:1922.366800px;}
._3d{width:1929.555565px;}
._3e{width:1960.476176px;}
._3b{width:1986.386332px;}
._3a{width:2014.405863px;}
.fc3{color:rgb(17,85,204);}
.fc1{color:rgb(0,89,150);}
.fc4{color:rgb(32,33,36);}
.fc2{color:rgb(102,102,102);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:43.200002px;}
.fs4{font-size:59.999999px;}
.fs1{font-size:66.000002px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:83.999997px;}
.fs2{font-size:119.999997px;}
.y0{bottom:0.000000px;}
.y28c{bottom:19.658203px;}
.y26b{bottom:19.658204px;}
.y26d{bottom:19.661133px;}
.y26a{bottom:45.474609px;}
.y80{bottom:56.753907px;}
.y19{bottom:56.754273px;}
.yd{bottom:56.754456px;}
.y156{bottom:56.755371px;}
.yb{bottom:57.194098px;}
.y204{bottom:120.166988px;}
.y25b{bottom:124.828117px;}
.ya{bottom:124.830146px;}
.y111{bottom:126.975592px;}
.yd3{bottom:127.135252px;}
.y19d{bottom:127.356442px;}
.y40{bottom:127.579462px;}
.y2c6{bottom:128.261722px;}
.y34d{bottom:132.087892px;}
.y173{bottom:132.309082px;}
.y2ee{bottom:133.095698px;}
.y33d{bottom:133.212892px;}
.y1e3{bottom:136.356442px;}
.y2d2{bottom:137.144528px;}
.y1d1{bottom:140.953117px;}
.y1ba{bottom:141.071783px;}
.y30c{bottom:141.837892px;}
.y154{bottom:146.261722px;}
.y9{bottom:148.395630px;}
.y203{bottom:151.212892px;}
.y27f{bottom:151.259762px;}
.y7e{bottom:151.352048px;}
.y3f{bottom:152.777707px;}
.y25a{bottom:155.876947px;}
.y110{bottom:158.022952px;}
.yd2{bottom:158.182613px;}
.y1ef{bottom:158.402347px;}
.y2c5{bottom:159.310552px;}
.y2b7{bottom:163.136723px;}
.y172{bottom:163.356442px;}
.y2ed{bottom:164.144528px;}
.y33c{bottom:164.261722px;}
.y243{bottom:166.277348px;}
.y1e2{bottom:167.402347px;}
.y2d1{bottom:168.190433px;}
.y349{bottom:168.310552px;}
.y1d0{bottom:172.001947px;}
.y1b9{bottom:172.119142px;}
.y30b{bottom:172.883783px;}
.y319{bottom:173.261722px;}
.y138{bottom:175.038577px;}
.yed{bottom:176.049323px;}
.y19c{bottom:176.403802px;}
.y218{bottom:177.070312px;}
.y27e{bottom:177.079097px;}
.y153{bottom:177.309082px;}
.y339{bottom:177.310552px;}
.y3e{bottom:177.975953px;}
.y330{bottom:178.638434px;}
.y202{bottom:182.261722px;}
.y7d{bottom:182.399408px;}
.y363{bottom:186.310552px;}
.y259{bottom:186.925777px;}
.y10f{bottom:189.070312px;}
.yd1{bottom:189.229987px;}
.y1ee{bottom:189.451178px;}
.ya5{bottom:190.135252px;}
.y323{bottom:190.359367px;}
.y2b6{bottom:194.185553px;}
.y188{bottom:194.403802px;}
.y8{bottom:194.475584px;}
.y2ec{bottom:195.190433px;}
.y33b{bottom:195.310552px;}
.y242{bottom:197.323238px;}
.y1e1{bottom:198.451178px;}
.y2d0{bottom:199.236323px;}
.y2c4{bottom:199.356442px;}
.y348{bottom:199.359367px;}
.y29d{bottom:199.445069px;}
.y27d{bottom:202.898431px;}
.y1cf{bottom:203.047853px;}
.y3d{bottom:203.174198px;}
.y22b{bottom:203.182613px;}
.y35c{bottom:203.185553px;}
.y171{bottom:203.403802px;}
.y30a{bottom:203.929688px;}
.y318{bottom:204.310552px;}
.y137{bottom:206.085938px;}
.yec{bottom:207.096683px;}
.y217{bottom:208.119142px;}
.y152{bottom:208.356442px;}
.y32f{bottom:208.359367px;}
.y1b8{bottom:212.166503px;}
.y201{bottom:213.310552px;}
.y362{bottom:217.359367px;}
.y7{bottom:218.595615px;}
.y10e{bottom:220.117673px;}
.ya4{bottom:221.182613px;}
.y322{bottom:221.402347px;}
.y7c{bottom:222.446407px;}
.y2b5{bottom:225.231443px;}
.y34c{bottom:225.234367px;}
.y187{bottom:225.451178px;}
.y2eb{bottom:226.236323px;}
.y364{bottom:226.359367px;}
.y258{bottom:226.971683px;}
.y29c{bottom:227.909909px;}
.y241{bottom:228.372067px;}
.y3c{bottom:228.372443px;}
.yd0{bottom:229.277348px;}
.y1e0{bottom:229.499992px;}
.y2c3{bottom:230.402347px;}
.y1ce{bottom:234.093742px;}
.y22a{bottom:234.228517px;}
.y35b{bottom:234.234367px;}
.y170{bottom:234.451178px;}
.y309{bottom:234.978517px;}
.y317{bottom:235.359367px;}
.y38c{bottom:236.537102px;}
.y136{bottom:237.133297px;}
.yeb{bottom:238.144043px;}
.y2cf{bottom:239.285152px;}
.y32e{bottom:239.402347px;}
.y200{bottom:244.356443px;}
.y64{bottom:244.724483px;}
.y216{bottom:248.167973px;}
.y361{bottom:248.402347px;}
.y151{bottom:248.403802px;}
.y3b{bottom:249.070673px;}
.y10d{bottom:251.165033px;}
.y1b7{bottom:252.213863px;}
.ya3{bottom:252.229987px;}
.y321{bottom:252.451178px;}
.y7b{bottom:253.493768px;}
.y2b4{bottom:256.277348px;}
.y29b{bottom:256.368899px;}
.y186{bottom:256.498537px;}
.y2ea{bottom:257.285152px;}
.y368{bottom:257.402347px;}
.ycf{bottom:260.324707px;}
.y1df{bottom:260.545898px;}
.y2c2{bottom:261.451178px;}
.y38b{bottom:262.353512px;}
.y1cd{bottom:265.142573px;}
.y229{bottom:265.277348px;}
.y16f{bottom:265.498537px;}
.y267{bottom:265.499992px;}
.y308{bottom:266.027348px;}
.y316{bottom:266.402347px;}
.y257{bottom:267.017572px;}
.y135{bottom:268.180657px;}
.y240{bottom:268.417973px;}
.yea{bottom:269.230951px;}
.y63{bottom:269.922728px;}
.y2ce{bottom:270.333983px;}
.y338{bottom:270.451178px;}
.y3a{bottom:274.268918px;}
.y1ff{bottom:275.402347px;}
.y37f{bottom:276.193352px;}
.y34b{bottom:276.650397px;}
.y215{bottom:279.213863px;}
.y150{bottom:279.451178px;}
.y1b6{bottom:283.261238px;}
.ya2{bottom:283.277348px;}
.y29a{bottom:284.827873px;}
.y2b3{bottom:287.326178px;}
.y19b{bottom:287.545898px;}
.y38a{bottom:288.169922px;}
.y32d{bottom:288.451178px;}
.y10c{bottom:291.212408px;}
.yce{bottom:291.372067px;}
.y1ed{bottom:291.591803px;}
.y2c1{bottom:292.499992px;}
.y7a{bottom:293.541142px;}
.y62{bottom:295.120973px;}
.y1cc{bottom:296.191403px;}
.y228{bottom:296.323238px;}
.y35a{bottom:296.326178px;}
.y16e{bottom:296.545898px;}
.y307{bottom:297.073238px;}
.y2e9{bottom:297.333983px;}
.y315{bottom:297.451178px;}
.y256{bottom:298.066402px;}
.y23f{bottom:299.466803px;}
.y39{bottom:299.467163px;}
.y2cd{bottom:301.379887px;}
.y347{bottom:301.499992px;}
.y37e{bottom:302.009762px;}
.y367{bottom:306.451178px;}
.ye9{bottom:309.357428px;}
.y1de{bottom:309.591803px;}
.y214{bottom:310.259768px;}
.y14f{bottom:310.498537px;}
.y337{bottom:310.499992px;}
.y389{bottom:313.992182px;}
.y1b5{bottom:314.308598px;}
.ya1{bottom:314.324707px;}
.y1fe{bottom:315.451178px;}
.y134{bottom:317.228033px;}
.y19a{bottom:318.593257px;}
.y32c{bottom:319.499992px;}
.y27c{bottom:320.267572px;}
.y61{bottom:320.319217px;}
.y10b{bottom:322.259768px;}
.ycd{bottom:322.419428px;}
.y320{bottom:323.542973px;}
.y299{bottom:323.545898px;}
.y38{bottom:324.665408px;}
.y28f{bottom:325.640623px;}
.y1cb{bottom:327.237307px;}
.y227{bottom:327.372067px;}
.y2b2{bottom:327.374992px;}
.y185{bottom:327.593257px;}
.y37d{bottom:327.826172px;}
.y306{bottom:328.119142px;}
.y2e8{bottom:328.379887px;}
.y2f8{bottom:328.499992px;}
.y255{bottom:329.115233px;}
.y23e{bottom:330.512693px;}
.y1ec{bottom:331.640617px;}
.y2cc{bottom:332.425777px;}
.y346{bottom:332.542973px;}
.y79{bottom:333.588503px;}
.y266{bottom:336.591803px;}
.y16d{bottom:336.593257px;}
.y366{bottom:337.499992px;}
.y388{bottom:339.808592px;}
.ye8{bottom:340.404788px;}
.y213{bottom:341.308598px;}
.y336{bottom:341.542973px;}
.y1b4{bottom:345.355957px;}
.ya0{bottom:345.372067px;}
.y60{bottom:345.517463px;}
.y1fd{bottom:346.499992px;}
.y37{bottom:349.863652px;}
.y360{bottom:350.542973px;}
.y14e{bottom:350.545898px;}
.y27b{bottom:351.316402px;}
.y10a{bottom:353.307127px;}
.ycc{bottom:353.466803px;}
.y37c{bottom:353.648432px;}
.y298{bottom:354.591803px;}
.y226{bottom:358.417973px;}
.y2b1{bottom:358.420898px;}
.y199{bottom:358.640617px;}
.y305{bottom:359.167973px;}
.y2e7{bottom:359.425777px;}
.y314{bottom:359.542973px;}
.y2f7{bottom:359.545898px;}
.y254{bottom:360.161137px;}
.y23d{bottom:361.561523px;}
.y2cb{bottom:363.512701px;}
.y345{bottom:363.591803px;}
.y387{bottom:365.625002px;}
.y133{bottom:366.275392px;}
.y1ca{bottom:367.283198px;}
.y359{bottom:367.417973px;}
.y16c{bottom:367.640617px;}
.y32b{bottom:368.542973px;}
.yba{bottom:368.547367px;}
.y5f{bottom:370.715692px;}
.y1eb{bottom:371.689447px;}
.y212{bottom:372.357428px;}
.y335{bottom:372.591803px;}
.y78{bottom:373.635862px;}
.y36{bottom:375.061883px;}
.y9f{bottom:376.419428px;}
.y265{bottom:376.640617px;}
.y28e{bottom:377.334958px;}
.y1fc{bottom:377.545898px;}
.y37b{bottom:379.464842px;}
.ye7{bottom:380.452148px;}
.y35f{bottom:381.591803px;}
.y14d{bottom:381.593257px;}
.y27a{bottom:382.362307px;}
.y109{bottom:384.354488px;}
.ycb{bottom:384.514163px;}
.y297{bottom:385.640617px;}
.y2b0{bottom:389.466803px;}
.y198{bottom:389.687992px;}
.y1dd{bottom:389.689447px;}
.y304{bottom:390.216803px;}
.y2e6{bottom:390.474607px;}
.y2f6{bottom:390.591803px;}
.y386{bottom:391.447262px;}
.y1b3{bottom:394.403318px;}
.y344{bottom:394.640617px;}
.y35{bottom:395.760128px;}
.y5e{bottom:395.913938px;}
.y132{bottom:397.322752px;}
.y1c9{bottom:398.332028px;}
.y225{bottom:398.466803px;}
.y16b{bottom:398.687992px;}
.y313{bottom:399.591803px;}
.yb9{bottom:399.594727px;}
.y211{bottom:403.403318px;}
.y2ca{bottom:403.640617px;}
.y37a{bottom:405.281252px;}
.y9e{bottom:407.466803px;}
.y264{bottom:407.689447px;}
.y1fb{bottom:408.591803px;}
.y253{bottom:409.207028px;}
.y23c{bottom:410.607428px;}
.ye6{bottom:411.499507px;}
.y1ea{bottom:411.735353px;}
.y14c{bottom:412.640617px;}
.y279{bottom:413.408197px;}
.y77{bottom:413.683223px;}
.y108{bottom:415.401863px;}
.y296{bottom:416.689447px;}
.y385{bottom:417.263672px;}
.y2af{bottom:420.515617px;}
.y197{bottom:420.735353px;}
.y34{bottom:420.958373px;}
.y5d{bottom:421.112183px;}
.y303{bottom:421.262693px;}
.y2f5{bottom:421.640617px;}
.yca{bottom:424.561523px;}
.y31f{bottom:425.689447px;}
.y131{bottom:428.370113px;}
.y28d{bottom:429.029298px;}
.y1c8{bottom:429.380858px;}
.y224{bottom:429.512693px;}
.y358{bottom:429.515617px;}
.y16a{bottom:429.735353px;}
.y2e5{bottom:430.523438px;}
.y312{bottom:430.640617px;}
.yb8{bottom:430.642088px;}
.y379{bottom:431.103512px;}
.y374{bottom:433.189457px;}
.y210{bottom:434.449223px;}
.y2c9{bottom:434.689447px;}
.y9d{bottom:438.514163px;}
.y263{bottom:438.735353px;}
.y365{bottom:439.640617px;}
.y38f{bottom:439.716797px;}
.y33{bottom:441.656618px;}
.ye5{bottom:442.546867px;}
.y1e9{bottom:442.781242px;}
.y384{bottom:443.080082px;}
.y1b2{bottom:443.450677px;}
.y14b{bottom:443.687992px;}
.y334{bottom:443.689447px;}
.y5c{bottom:446.310428px;}
.y1fa{bottom:448.640617px;}
.y2ae{bottom:451.564447px;}
.y196{bottom:451.782712px;}
.y302{bottom:452.308598px;}
.y2f4{bottom:452.689447px;}
.y278{bottom:453.457028px;}
.y76{bottom:453.730598px;}
.y24d{bottom:455.607428px;}
.yc9{bottom:455.608883px;}
.y295{bottom:456.735353px;}
.y31e{bottom:456.738278px;}
.y378{bottom:456.919922px;}
.y373{bottom:459.011717px;}
.y130{bottom:459.417487px;}
.y23b{bottom:459.656242px;}
.y1c7{bottom:460.426762px;}
.y223{bottom:460.561523px;}
.y357{bottom:460.564447px;}
.y1dc{bottom:460.781242px;}
.y169{bottom:460.782712px;}
.y2e4{bottom:461.569342px;}
.yb7{bottom:461.689447px;}
.y107{bottom:464.449222px;}
.y38e{bottom:465.527342px;}
.y20f{bottom:465.536131px;}
.y2c0{bottom:465.735352px;}
.y343{bottom:465.738278px;}
.y32{bottom:466.854863px;}
.y5b{bottom:467.008673px;}
.y383{bottom:468.896477px;}
.y9c{bottom:469.561523px;}
.y262{bottom:469.781242px;}
.y184{bottom:469.782712px;}
.y33a{bottom:470.689447px;}
.ye4{bottom:473.594243px;}
.y1b1{bottom:474.498053px;}
.y14a{bottom:474.735353px;}
.y333{bottom:474.738277px;}
.y1f9{bottom:479.689448px;}
.y28b{bottom:480.720708px;}
.y2ad{bottom:482.610352px;}
.y377{bottom:482.736332px;}
.y301{bottom:483.357428px;}
.y2f3{bottom:483.735352px;}
.y35e{bottom:483.738277px;}
.y277{bottom:484.505858px;}
.y372{bottom:484.828127px;}
.yc8{bottom:486.656242px;}
.y294{bottom:487.781242px;}
.y12f{bottom:490.464848px;}
.y23a{bottom:490.702148px;}
.y38d{bottom:491.349602px;}
.y1c6{bottom:491.472652px;}
.y222{bottom:491.607428px;}
.y356{bottom:491.613277px;}
.y168{bottom:491.830073px;}
.y31{bottom:492.053108px;}
.y5a{bottom:492.206902px;}
.y2e3{bottom:492.615233px;}
.yb6{bottom:492.736822px;}
.y311{bottom:492.738277px;}
.y75{bottom:493.777958px;}
.y382{bottom:494.712887px;}
.y342{bottom:496.781242px;}
.y9b{bottom:500.608882px;}
.y183{bottom:500.830073px;}
.yff{bottom:501.499508px;}
.y32a{bottom:501.738277px;}
.ye3{bottom:504.641602px;}
.y1b0{bottom:505.545412px;}
.y20e{bottom:505.664062px;}
.y2c8{bottom:505.781242px;}
.y371{bottom:510.644537px;}
.y1f8{bottom:510.735352px;}
.y376{bottom:511.013678px;}
.y59{bottom:512.905148px;}
.y300{bottom:514.406242px;}
.y2bf{bottom:514.781242px;}
.y276{bottom:515.551762px;}
.y30{bottom:517.251337px;}
.y24c{bottom:517.702148px;}
.y293{bottom:518.830073px;}
.y381{bottom:520.535162px;}
.y239{bottom:521.750977px;}
.y36d{bottom:521.953127px;}
.y1c5{bottom:522.521482px;}
.y2e2{bottom:523.664062px;}
.y310{bottom:523.781242px;}
.y149{bottom:523.782713px;}
.yb5{bottom:523.784182px;}
.y12e{bottom:530.512207px;}
.y9a{bottom:531.656242px;}
.y167{bottom:531.877448px;}
.y1db{bottom:531.878902px;}
.yfe{bottom:532.546867px;}
.y329{bottom:532.781242px;}
.y74{bottom:533.825318px;}
.yc7{bottom:535.703618px;}
.y252{bottom:535.892582px;}
.y370{bottom:536.466797px;}
.y1af{bottom:536.592773px;}
.y20d{bottom:536.712893px;}
.y341{bottom:536.830073px;}
.y58{bottom:538.103392px;}
.y375{bottom:539.601557px;}
.y1e8{bottom:540.878902px;}
.y1f7{bottom:541.781242px;}
.y2f{bottom:542.449582px;}
.y221{bottom:543.029292px;}
.y6{bottom:544.035660px;}
.y2be{bottom:545.830073px;}
.y380{bottom:546.351557px;}
.y36c{bottom:547.769537px;}
.y195{bottom:549.877448px;}
.y261{bottom:549.878902px;}
.ye2{bottom:553.688963px;}
.y2ff{bottom:554.452148px;}
.y2e1{bottom:554.712893px;}
.y30f{bottom:554.830073px;}
.yb4{bottom:554.831543px;}
.y275{bottom:555.597652px;}
.y24b{bottom:557.750977px;}
.y57{bottom:558.801637px;}
.y12d{bottom:561.559568px;}
.y251{bottom:561.708977px;}
.y36f{bottom:562.283207px;}
.y99{bottom:562.703618px;}
.y2ac{bottom:562.705072px;}
.y166{bottom:562.924808px;}
.yfd{bottom:563.594242px;}
.y328{bottom:563.830073px;}
.y11e{bottom:567.522952px;}
.y1ae{bottom:567.640133px;}
.y2e{bottom:567.647827px;}
.y20c{bottom:567.758783px;}
.y340{bottom:567.878902px;}
.y238{bottom:570.796867px;}
.y1c4{bottom:571.570312px;}
.y182{bottom:571.924808px;}
.y148{bottom:572.830073px;}
.y36b{bottom:573.591797px;}
.y73{bottom:573.872678px;}
.y2bd{bottom:576.878902px;}
.y5{bottom:580.035660px;}
.y194{bottom:580.924808px;}
.y56{bottom:583.999883px;}
.y28a{bottom:584.244137px;}
.yc6{bottom:584.750977px;}
.y2fe{bottom:585.498052px;}
.y2e0{bottom:585.758783px;}
.yb3{bottom:585.878902px;}
.y274{bottom:586.646482px;}
.y250{bottom:587.528327px;}
.y36e{bottom:588.099601px;}
.y24a{bottom:588.796867px;}
.y31d{bottom:589.921867px;}
.y106{bottom:591.133307px;}
.y12c{bottom:592.646491px;}
.y2d{bottom:592.846072px;}
.y355{bottom:593.753902px;}
.y165{bottom:593.972168px;}
.y220{bottom:594.878902px;}
.y11d{bottom:598.570312px;}
.y1ad{bottom:598.687492px;}
.y20b{bottom:598.845706px;}
.y33f{bottom:598.921867px;}
.y260{bottom:598.924808px;}
.y36a{bottom:599.408207px;}
.y1c3{bottom:602.616217px;}
.ye1{bottom:602.736322px;}
.y98{bottom:602.750977px;}
.y1da{bottom:602.970698px;}
.y181{bottom:602.972168px;}
.yfc{bottom:603.641602px;}
.y147{bottom:603.877448px;}
.y1f6{bottom:603.878902px;}
.y2c7{bottom:607.924808px;}
.y55{bottom:609.198127px;}
.y289{bottom:610.063472px;}
.y2ab{bottom:611.753902px;}
.y193{bottom:611.972168px;}
.y24f{bottom:613.347662px;}
.y72{bottom:613.920038px;}
.yc5{bottom:615.798338px;}
.y4{bottom:616.035660px;}
.y2fd{bottom:616.546867px;}
.y2df{bottom:616.804688px;}
.y332{bottom:616.921867px;}
.y2bc{bottom:616.924808px;}
.yb2{bottom:616.926263px;}
.y105{bottom:616.951172px;}
.y2c{bottom:618.044318px;}
.y237{bottom:619.845698px;}
.y292{bottom:620.970698px;}
.y354{bottom:624.796867px;}
.y369{bottom:625.224602px;}
.y34a{bottom:625.921867px;}
.y21f{bottom:625.924808px;}
.y273{bottom:626.695312px;}
.y11c{bottom:629.657221px;}
.y25f{bottom:629.970698px;}
.y12b{bottom:632.812501px;}
.ye0{bottom:633.783698px;}
.y97{bottom:633.798338px;}
.y180{bottom:634.019527px;}
.y54{bottom:634.396358px;}
.yfb{bottom:634.688963px;}
.y327{bottom:634.921867px;}
.y146{bottom:634.924808px;}
.y288{bottom:635.882807px;}
.y1ac{bottom:638.734868px;}
.y20a{bottom:638.970698px;}
.y24e{bottom:639.164056px;}
.y104{bottom:642.769037px;}
.y2aa{bottom:642.799808px;}
.y164{bottom:643.019527px;}
.y2b{bottom:643.242548px;}
.y1f5{bottom:643.924808px;}
.yc4{bottom:646.845698px;}
.y2fc{bottom:647.595698px;}
.y2de{bottom:647.853518px;}
.y2bb{bottom:647.970698px;}
.yb1{bottom:647.973637px;}
.y236{bottom:650.891602px;}
.y1c2{bottom:651.662107px;}
.y192{bottom:652.019527px;}
.y3{bottom:652.035660px;}
.y71{bottom:653.967413px;}
.y53{bottom:655.094603px;}
.y21e{bottom:656.970698px;}
.y272{bottom:657.741217px;}
.y25e{bottom:661.019527px;}
.y287{bottom:661.699217px;}
.y96{bottom:664.845698px;}
.ydf{bottom:664.870606px;}
.y17f{bottom:665.066888px;}
.yfa{bottom:665.736322px;}
.y326{bottom:665.970698px;}
.y2a{bottom:668.440792px;}
.y103{bottom:668.586917px;}
.y1ab{bottom:669.782228px;}
.y11b{bottom:669.783698px;}
.y209{bottom:670.019527px;}
.y12a{bottom:672.938963px;}
.y2a9{bottom:673.845698px;}
.y1f4{bottom:674.970698px;}
.y145{bottom:674.973637px;}
.yc3{bottom:677.893073px;}
.y2ba{bottom:679.019527px;}
.y52{bottom:680.292848px;}
.y235{bottom:681.940432px;}
.y1c1{bottom:682.710938px;}
.y191{bottom:683.066888px;}
.y291{bottom:683.068358px;}
.y70{bottom:685.014772px;}
.y286{bottom:687.515626px;}
.y2dd{bottom:687.902348px;}
.y21d{bottom:688.019527px;}
.yb0{bottom:688.020998px;}
.y271{bottom:688.787107px;}
.y249{bottom:690.940432px;}
.y163{bottom:692.066888px;}
.y25d{bottom:692.068358px;}
.y29{bottom:693.639037px;}
.y102{bottom:694.404782px;}
.y95{bottom:695.893073px;}
.y353{bottom:695.894527px;}
.yf9{bottom:696.783698px;}
.y30e{bottom:697.019527px;}
.y1aa{bottom:700.829588px;}
.y11a{bottom:700.831058px;}
.y51{bottom:700.991092px;}
.y1d9{bottom:701.068358px;}
.y129{bottom:703.986322px;}
.y2a8{bottom:704.894527px;}
.yde{bottom:704.997068px;}
.y17e{bottom:705.114262px;}
.y1f3{bottom:706.019527px;}
.y144{bottom:706.020998px;}
.yc2{bottom:708.940432px;}
.y190{bottom:714.114262px;}
.y28{bottom:718.837283px;}
.y2dc{bottom:718.948238px;}
.yaf{bottom:719.068358px;}
.y270{bottom:719.835938px;}
.y101{bottom:720.222662px;}
.y234{bottom:721.986322px;}
.y1c0{bottom:722.797846px;}
.y162{bottom:723.114262px;}
.y6f{bottom:725.062133px;}
.y50{bottom:726.189337px;}
.y94{bottom:726.940432px;}
.y352{bottom:726.943357px;}
.yf8{bottom:727.831058px;}
.y30d{bottom:728.068358px;}
.y1a9{bottom:731.876948px;}
.y119{bottom:731.878418px;}
.y1d8{bottom:732.114262px;}
.y31c{bottom:732.117188px;}
.y2a7{bottom:735.943357px;}
.ydd{bottom:736.083991px;}
.y17d{bottom:736.161623px;}
.y143{bottom:737.068358px;}
.yc1{bottom:739.987793px;}
.y27{bottom:744.035528px;}
.y18f{bottom:745.161623px;}
.y100{bottom:746.040526px;}
.y2b9{bottom:750.114262px;}
.yae{bottom:750.115718px;}
.y35d{bottom:750.117188px;}
.y4f{bottom:751.387568px;}
.y128{bottom:753.033698px;}
.y233{bottom:753.035152px;}
.y25c{bottom:754.160152px;}
.y161{bottom:754.161623px;}
.y351{bottom:757.992188px;}
.yf7{bottom:758.878418px;}
.y2db{bottom:758.994142px;}
.y21c{bottom:759.114262px;}
.y325{bottom:759.117188px;}
.y1a8{bottom:762.924322px;}
.y118{bottom:762.925777px;}
.y1d7{bottom:763.160152px;}
.y6e{bottom:765.109492px;}
.y2fb{bottom:765.278327px;}
.y93{bottom:766.987793px;}
.y2a6{bottom:766.989262px;}
.y17c{bottom:767.208982px;}
.y1f2{bottom:768.114262px;}
.y142{bottom:768.115718px;}
.y331{bottom:768.117188px;}
.y26f{bottom:768.884768px;}
.y26{bottom:769.233758px;}
.ydc{bottom:776.210452px;}
.y4e{bottom:776.585812px;}
.yc0{bottom:780.035152px;}
.y2b8{bottom:781.160152px;}
.yad{bottom:781.163092px;}
.y232{bottom:784.081058px;}
.y18e{bottom:785.208982px;}
.yf6{bottom:789.925777px;}
.y2da{bottom:790.042973px;}
.y21b{bottom:790.160152px;}
.y2fa{bottom:791.097662px;}
.y1bf{bottom:793.971683px;}
.y117{bottom:793.973138px;}
.y1d6{bottom:794.208982px;}
.y25{bottom:794.432002px;}
.y4d{bottom:797.284058px;}
.y92{bottom:798.035152px;}
.y1f1{bottom:799.160152px;}
.y141{bottom:799.163092px;}
.y127{bottom:802.081058px;}
.y160{bottom:803.208982px;}
.y285{bottom:804.887692px;}
.y6d{bottom:805.156868px;}
.y2a5{bottom:807.035152px;}
.ydb{bottom:807.257812px;}
.ybf{bottom:811.082513px;}
.y1a7{bottom:811.971683px;}
.y1e7{bottom:812.208982px;}
.yac{bottom:812.210452px;}
.y17{bottom:816.035333px;}
.y17b{bottom:816.256342px;}
.y290{bottom:816.257812px;}
.y2f9{bottom:816.914056px;}
.y24{bottom:819.630248px;}
.yf5{bottom:821.012701px;}
.y2d9{bottom:821.091803px;}
.y21a{bottom:821.208982px;}
.y4c{bottom:822.482303px;}
.y248{bottom:824.129887px;}
.y1be{bottom:825.058591px;}
.y116{bottom:825.060061px;}
.y91{bottom:829.082513px;}
.y350{bottom:829.083982px;}
.y1f0{bottom:830.208982px;}
.y140{bottom:830.210452px;}
.y126{bottom:833.128418px;}
.y231{bottom:833.129887px;}
.y1d5{bottom:834.257812px;}
.y284{bottom:835.933598px;}
.y2a4{bottom:838.083982px;}
.y88{bottom:838.305173px;}
.ybe{bottom:842.129887px;}
.yab{bottom:843.257812px;}
.y23{bottom:844.828492px;}
.y6c{bottom:845.204228px;}
.y16{bottom:847.082707px;}
.y18d{bottom:847.303718px;}
.y4b{bottom:847.680548px;}
.y2d8{bottom:852.137692px;}
.y15f{bottom:852.256342px;}
.y219{bottom:852.257812px;}
.y247{bottom:855.175777px;}
.y90{bottom:860.129887px;}
.y34f{bottom:860.132812px;}
.y1a6{bottom:861.019043px;}
.yf4{bottom:861.139162px;}
.y13f{bottom:861.257812px;}
.y125{bottom:864.175778px;}
.y115{bottom:865.186523px;}
.y1bd{bottom:865.224616px;}
.y17a{bottom:865.303717px;}
.y283{bottom:866.982427px;}
.y2a3{bottom:869.132812px;}
.y22{bottom:870.026738px;}
.y2f2{bottom:870.257812px;}
.y4a{bottom:872.878778px;}
.ybd{bottom:873.177248px;}
.yaa{bottom:874.305173px;}
.y6b{bottom:876.251588px;}
.y15{bottom:878.130067px;}
.y18c{bottom:878.351077px;}
.y87{bottom:878.352533px;}
.y230{bottom:882.175778px;}
.y2d7{bottom:883.183598px;}
.y33e{bottom:883.300777px;}
.y15e{bottom:883.303717px;}
.y246{bottom:886.224607px;}
.yda{bottom:887.352533px;}
.y8f{bottom:891.177248px;}
.y1a5{bottom:892.066402px;}
.yf3{bottom:892.186523px;}
.y31b{bottom:892.300777px;}
.y1e6{bottom:892.303717px;}
.y13e{bottom:892.305173px;}
.y124{bottom:895.223137px;}
.y21{bottom:895.224982px;}
.y114{bottom:896.233882px;}
.y1d4{bottom:896.349608px;}
.y179{bottom:896.351077px;}
.y49{bottom:898.077022px;}
.y2a2{bottom:900.178717px;}
.y2f1{bottom:901.303717px;}
.y26e{bottom:902.906248px;}
.y1bc{bottom:905.351077px;}
.ya9{bottom:905.352533px;}
.y14{bottom:909.177428px;}
.y18b{bottom:909.398438px;}
.y34e{bottom:911.548827px;}
.ybc{bottom:913.224607px;}
.y208{bottom:914.349608px;}
.y15d{bottom:914.351077px;}
.y282{bottom:916.031242px;}
.y6a{bottom:916.298947px;}
.y86{bottom:918.399907px;}
.y48{bottom:918.775267px;}
.y20{bottom:920.423212px;}
.y8e{bottom:922.224607px;}
.y1a4{bottom:923.113762px;}
.y2d6{bottom:923.232427px;}
.yf2{bottom:923.233882px;}
.y1e5{bottom:923.349608px;}
.y13d{bottom:923.352533px;}
.y123{bottom:926.270512px;}
.y113{bottom:927.320806px;}
.y1d3{bottom:927.398438px;}
.y2a1{bottom:931.224607px;}
.y2f0{bottom:932.349608px;}
.y245{bottom:935.270512px;}
.y178{bottom:936.398438px;}
.yd9{bottom:936.399907px;}
.y2{bottom:936.795630px;}
.y13{bottom:940.224788px;}
.y18a{bottom:940.445798px;}
.y47{bottom:943.973512px;}
.ybb{bottom:944.271967px;}
.y207{bottom:945.398438px;}
.ya8{bottom:945.399907px;}
.y1f{bottom:945.621457px;}
.y22f{bottom:953.270512px;}
.y8d{bottom:953.271967px;}
.y1a3{bottom:954.161137px;}
.yf1{bottom:954.281242px;}
.y15c{bottom:954.398438px;}
.y26c{bottom:954.600583px;}
.y69{bottom:956.346307px;}
.y1{bottom:957.675644px;}
.y85{bottom:958.447267px;}
.y2ef{bottom:963.398438px;}
.y13c{bottom:963.399907px;}
.y177{bottom:967.445798px;}
.y112{bottom:967.447267px;}
.y46{bottom:969.171758px;}
.y1e{bottom:970.819702px;}
.y12{bottom:971.272162px;}
.y2a0{bottom:971.273438px;}
.ya7{bottom:976.447267px;}
.y8c{bottom:984.319342px;}
.y1a2{bottom:985.208498px;}
.y2d5{bottom:985.327147px;}
.yf0{bottom:985.328617px;}
.y15b{bottom:985.445798px;}
.yd8{bottom:985.447267px;}
.y189{bottom:989.493158px;}
.y45{bottom:994.370003px;}
.y13b{bottom:994.447267px;}
.y1d{bottom:996.017944px;}
.y68{bottom:996.393676px;}
.y176{bottom:998.493164px;}
.y84{bottom:998.494629px;}
.y11{bottom:1002.319520px;}
.y29f{bottom:1002.322266px;}
.y269{bottom:1006.294921px;}
.y1bb{bottom:1007.493164px;}
.ya6{bottom:1007.494629px;}
.y44{bottom:1015.068237px;}
.y22e{bottom:1015.365234px;}
.y8b{bottom:1015.366699px;}
.y1a1{bottom:1016.295410px;}
.y2d4{bottom:1016.373047px;}
.yef{bottom:1016.375976px;}
.y15a{bottom:1016.493164px;}
.yd7{bottom:1016.494629px;}
.y31a{bottom:1016.496093px;}
.y1c{bottom:1021.216187px;}
.y206{bottom:1025.493164px;}
.y13a{bottom:1025.494629px;}
.y324{bottom:1025.496093px;}
.y281{bottom:1032.052734px;}
.y10{bottom:1033.366882px;}
.y29e{bottom:1033.368164px;}
.y244{bottom:1035.738282px;}
.y67{bottom:1036.441039px;}
.y1d2{bottom:1038.539062px;}
.y175{bottom:1038.540528px;}
.y83{bottom:1038.541992px;}
.y43{bottom:1040.266479px;}
.y122{bottom:1043.954590px;}
.y8a{bottom:1046.414062px;}
.y1b{bottom:1046.414428px;}
.y2d3{bottom:1047.459961px;}
.yee{bottom:1047.462890px;}
.y1e4{bottom:1047.539062px;}
.y159{bottom:1047.540528px;}
.yd6{bottom:1047.541992px;}
.y1a0{bottom:1056.421875px;}
.y205{bottom:1056.539062px;}
.y139{bottom:1056.541992px;}
.y22d{bottom:1064.414062px;}
.yf{bottom:1064.414246px;}
.y42{bottom:1065.464721px;}
.y174{bottom:1069.587891px;}
.y82{bottom:1069.589355px;}
.y121{bottom:1069.772461px;}
.y66{bottom:1076.488404px;}
.y280{bottom:1083.747069px;}
.y19f{bottom:1087.469238px;}
.y158{bottom:1087.587891px;}
.yd5{bottom:1087.589355px;}
.y41{bottom:1090.662965px;}
.y268{bottom:1095.588868px;}
.y120{bottom:1095.590332px;}
.y1a{bottom:1097.835572px;}
.y89{bottom:1097.835938px;}
.y81{bottom:1109.636718px;}
.ye{bottom:1115.835387px;}
.y65{bottom:1115.835570px;}
.y22c{bottom:1115.835936px;}
.y19e{bottom:1118.556152px;}
.y157{bottom:1118.635254px;}
.yd4{bottom:1118.636718px;}
.y11f{bottom:1121.408203px;}
.y155{bottom:1135.439942px;}
.yc{bottom:1135.440856px;}
.y18{bottom:1135.441039px;}
.y7f{bottom:1135.441405px;}
.h10{height:50.566407px;}
.hf{height:50.569336px;}
.hc{height:54.082030px;}
.hb{height:54.580077px;}
.h2{height:59.167970px;}
.h9{height:63.949219px;}
.h6{height:64.546875px;}
.h7{height:74.607419px;}
.h1{height:75.304685px;}
.he{height:76.382812px;}
.h3{height:108.339841px;}
.h4{height:115.278435px;}
.ha{height:127.558595px;}
.h8{height:127.558961px;}
.h5{height:127.559144px;}
.hd{height:127.560058px;}
.h0{height:1263.000000px;}
.w4{width:125.999978px;}
.w7{width:128.249978px;}
.w8{width:151.874977px;}
.w9{width:151.875000px;}
.w3{width:202.500000px;}
.w5{width:223.874977px;}
.w6{width:255.375000px;}
.w2{width:278.999970px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x28{left:20.835039px;}
.x31{left:25.600900px;}
.x18{left:28.330084px;}
.x1b{left:30.076678px;}
.x2f{left:32.775839px;}
.x1e{left:38.855399px;}
.x21{left:44.324461px;}
.x1c{left:46.337380px;}
.x23{left:57.634226px;}
.x2e{left:62.387169px;}
.x20{left:65.482730px;}
.x30{left:68.536852px;}
.x25{left:71.404026px;}
.x27{left:79.979087px;}
.x22{left:92.465152px;}
.x29{left:99.408237px;}
.x1f{left:103.732730px;}
.x2a{left:115.158237px;}
.x19{left:117.745818px;}
.xd{left:170.078751px;}
.x1d{left:171.203751px;}
.xf{left:197.078751px;}
.x5{left:220.663681px;}
.x10{left:224.078751px;}
.x3{left:245.622194px;}
.x11{left:251.078751px;}
.x4{left:260.689548px;}
.x17{left:298.328730px;}
.x24{left:300.578730px;}
.x2b{left:324.203730px;}
.x6{left:343.948020px;}
.x1{left:378.777940px;}
.xb{left:382.215220px;}
.x2{left:408.477321px;}
.x2c{left:477.203700px;}
.xa{left:484.781267px;}
.x26{left:525.578700px;}
.x8{left:533.910512px;}
.x1a{left:578.453700px;}
.x2d{left:630.203700px;}
.x9{left:723.890972px;}
.x7{left:742.198761px;}
.x15{left:767.187059px;}
.x16{left:768.189006px;}
.x12{left:771.186085px;}
.x13{left:772.188032px;}
.xe{left:776.187059px;}
.x14{left:777.189006px;}
.xc{left:781.188032px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.285938pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:1.599998pt;}
.ls1{letter-spacing:16.000000pt;}
.ls5{letter-spacing:17.599998pt;}
.ls2{letter-spacing:24.000000pt;}
.ls3{letter-spacing:28.000000pt;}
.ls9{letter-spacing:28.152022pt;}
.ls7{letter-spacing:33.599998pt;}
.ls6{letter-spacing:33.600018pt;}
.ls4{letter-spacing:57.343750pt;}
.ws3d{word-spacing:-36.093750pt;}
.ws6a{word-spacing:-33.085938pt;}
.ws8{word-spacing:-23.483192pt;}
.ws13{word-spacing:-20.093780pt;}
.ws21{word-spacing:-20.093779pt;}
.ws18{word-spacing:-20.093770pt;}
.ws65{word-spacing:-20.093762pt;}
.wsb{word-spacing:-20.093760pt;}
.ws26{word-spacing:-20.093753pt;}
.ws14{word-spacing:-20.093752pt;}
.ws25{word-spacing:-20.093751pt;}
.wsc{word-spacing:-20.093750pt;}
.ws38{word-spacing:-20.093748pt;}
.ws3f{word-spacing:-20.093740pt;}
.wsd{word-spacing:-20.093740pt;}
.ws57{word-spacing:-20.093730pt;}
.ws56{word-spacing:-20.093720pt;}
.ws9{word-spacing:-18.441212pt;}
.ws35{word-spacing:-16.093780pt;}
.ws34{word-spacing:-16.093770pt;}
.ws20{word-spacing:-16.093760pt;}
.ws6b{word-spacing:-16.093752pt;}
.ws2d{word-spacing:-16.093750pt;}
.ws72{word-spacing:-16.093748pt;}
.ws31{word-spacing:-16.093740pt;}
.ws5a{word-spacing:-16.093730pt;}
.ws69{word-spacing:-16.093720pt;}
.ws48{word-spacing:-12.093780pt;}
.wsae{word-spacing:-12.093771pt;}
.ws30{word-spacing:-12.093770pt;}
.ws32{word-spacing:-12.093760pt;}
.wsa2{word-spacing:-12.093759pt;}
.ws78{word-spacing:-12.093752pt;}
.ws28{word-spacing:-12.093750pt;}
.ws43{word-spacing:-12.093748pt;}
.ws40{word-spacing:-12.093747pt;}
.ws3a{word-spacing:-12.093740pt;}
.ws44{word-spacing:-12.093731pt;}
.ws7d{word-spacing:-8.093780pt;}
.ws49{word-spacing:-8.093770pt;}
.ws33{word-spacing:-8.093760pt;}
.ws46{word-spacing:-8.093752pt;}
.ws96{word-spacing:-8.093751pt;}
.ws2c{word-spacing:-8.093750pt;}
.ws59{word-spacing:-8.093740pt;}
.wsa1{word-spacing:-8.093730pt;}
.ws5c{word-spacing:-4.093780pt;}
.ws55{word-spacing:-4.093770pt;}
.ws27{word-spacing:-4.093760pt;}
.ws3b{word-spacing:-4.093753pt;}
.ws42{word-spacing:-4.093752pt;}
.ws2a{word-spacing:-4.093750pt;}
.ws45{word-spacing:-4.093747pt;}
.ws7f{word-spacing:-4.093731pt;}
.ws9e{word-spacing:-4.093720pt;}
.ws97{word-spacing:-0.093780pt;}
.ws47{word-spacing:-0.093770pt;}
.ws36{word-spacing:-0.093760pt;}
.ws9b{word-spacing:-0.093752pt;}
.ws29{word-spacing:-0.093750pt;}
.ws2f{word-spacing:-0.093740pt;}
.ws94{word-spacing:-0.093730pt;}
.wsa{word-spacing:-0.074667pt;}
.ws93{word-spacing:-0.064000pt;}
.ws6{word-spacing:-0.058667pt;}
.ws4c{word-spacing:-0.053333pt;}
.wse{word-spacing:0.000000pt;}
.ws66{word-spacing:3.906220pt;}
.ws2e{word-spacing:3.906230pt;}
.ws22{word-spacing:3.906240pt;}
.wsa3{word-spacing:3.906248pt;}
.ws23{word-spacing:3.906250pt;}
.ws68{word-spacing:3.906260pt;}
.wsb6{word-spacing:3.906261pt;}
.ws3e{word-spacing:3.906270pt;}
.ws95{word-spacing:3.906280pt;}
.ws71{word-spacing:7.906230pt;}
.ws2b{word-spacing:7.906240pt;}
.ws58{word-spacing:7.906250pt;}
.ws64{word-spacing:7.906270pt;}
.ws37{word-spacing:11.906230pt;}
.ws41{word-spacing:11.906240pt;}
.ws6e{word-spacing:11.906250pt;}
.ws62{word-spacing:11.906260pt;}
.ws4a{word-spacing:11.906280pt;}
.ws8d{word-spacing:12.089203pt;}
.ws88{word-spacing:12.092082pt;}
.wsc8{word-spacing:12.092966pt;}
.wsc1{word-spacing:12.092969pt;}
.ws89{word-spacing:12.093748pt;}
.wsc9{word-spacing:12.093781pt;}
.ws61{word-spacing:12.093816pt;}
.ws7b{word-spacing:12.093830pt;}
.ws7c{word-spacing:12.093839pt;}
.ws81{word-spacing:12.093846pt;}
.wscb{word-spacing:12.093860pt;}
.ws83{word-spacing:12.093875pt;}
.ws82{word-spacing:12.093895pt;}
.ws5f{word-spacing:12.093901pt;}
.ws4e{word-spacing:12.093903pt;}
.ws7a{word-spacing:12.093904pt;}
.ws84{word-spacing:12.093907pt;}
.wsc2{word-spacing:12.093911pt;}
.wsc6{word-spacing:12.093915pt;}
.ws5e{word-spacing:12.093917pt;}
.ws52{word-spacing:12.093935pt;}
.ws8c{word-spacing:12.098685pt;}
.wsbf{word-spacing:12.099641pt;}
.ws53{word-spacing:12.099654pt;}
.ws87{word-spacing:14.745921pt;}
.ws5b{word-spacing:15.906240pt;}
.ws85{word-spacing:15.906250pt;}
.ws6f{word-spacing:15.935970pt;}
.ws1b{word-spacing:15.935977pt;}
.ws70{word-spacing:15.935980pt;}
.ws15{word-spacing:15.935985pt;}
.ws16{word-spacing:15.935988pt;}
.ws19{word-spacing:15.935990pt;}
.ws10{word-spacing:15.935998pt;}
.ws77{word-spacing:15.935999pt;}
.ws12{word-spacing:15.936000pt;}
.ws17{word-spacing:15.936002pt;}
.ws1e{word-spacing:15.936010pt;}
.ws86{word-spacing:16.092022pt;}
.ws99{word-spacing:16.092921pt;}
.ws80{word-spacing:16.092970pt;}
.ws51{word-spacing:16.093775pt;}
.wsd0{word-spacing:16.093805pt;}
.wscd{word-spacing:16.093825pt;}
.ws9a{word-spacing:16.093837pt;}
.wsc4{word-spacing:16.093895pt;}
.ws8b{word-spacing:16.093903pt;}
.wsc3{word-spacing:16.093905pt;}
.ws8a{word-spacing:16.094862pt;}
.ws5d{word-spacing:16.098685pt;}
.ws1{word-spacing:16.206040pt;}
.ws90{word-spacing:16.206061pt;}
.wsa0{word-spacing:16.206065pt;}
.wsb7{word-spacing:18.549176pt;}
.ws76{word-spacing:18.551496pt;}
.ws1f{word-spacing:18.553792pt;}
.ws3c{word-spacing:18.571167pt;}
.ws63{word-spacing:19.906220pt;}
.ws24{word-spacing:19.906240pt;}
.ws98{word-spacing:19.906250pt;}
.ws39{word-spacing:19.906280pt;}
.ws8e{word-spacing:19.935977pt;}
.wsc0{word-spacing:20.092830pt;}
.ws4b{word-spacing:20.092961pt;}
.wsba{word-spacing:20.093775pt;}
.wsca{word-spacing:20.093830pt;}
.ws4d{word-spacing:20.093855pt;}
.wsc5{word-spacing:20.093890pt;}
.wscc{word-spacing:20.093893pt;}
.wsbc{word-spacing:20.093895pt;}
.wsbe{word-spacing:20.093903pt;}
.wscf{word-spacing:20.093932pt;}
.wsbb{word-spacing:20.098685pt;}
.ws9f{word-spacing:20.192167pt;}
.ws91{word-spacing:20.206137pt;}
.ws7{word-spacing:20.630788pt;}
.ws0{word-spacing:20.635325pt;}
.ws6c{word-spacing:23.906240pt;}
.ws54{word-spacing:23.906250pt;}
.ws74{word-spacing:23.936000pt;}
.ws7e{word-spacing:23.936002pt;}
.ws79{word-spacing:23.936008pt;}
.wsce{word-spacing:24.092981pt;}
.wsc7{word-spacing:24.093041pt;}
.wsbd{word-spacing:24.093775pt;}
.ws4f{word-spacing:24.093892pt;}
.wsb9{word-spacing:24.094015pt;}
.ws67{word-spacing:27.906250pt;}
.ws6d{word-spacing:27.935985pt;}
.ws75{word-spacing:27.935990pt;}
.wsb8{word-spacing:28.092969pt;}
.ws60{word-spacing:28.093806pt;}
.ws50{word-spacing:28.093903pt;}
.ws2{word-spacing:29.491662pt;}
.ws4{word-spacing:29.491742pt;}
.ws5{word-spacing:29.491781pt;}
.ws3{word-spacing:29.493953pt;}
.ws9d{word-spacing:31.936000pt;}
.ws8f{word-spacing:32.208403pt;}
.wsa4{word-spacing:35.906250pt;}
.wsaf{word-spacing:39.906250pt;}
.ws73{word-spacing:43.906250pt;}
.wsb4{word-spacing:51.906250pt;}
.wsad{word-spacing:59.906230pt;}
.wsb5{word-spacing:71.906250pt;}
.ws92{word-spacing:75.936010pt;}
.ws9c{word-spacing:79.935977pt;}
.wsaa{word-spacing:87.906250pt;}
.wsb1{word-spacing:143.906250pt;}
.wsa6{word-spacing:159.906250pt;}
.wsb2{word-spacing:163.906250pt;}
.wsab{word-spacing:187.906246pt;}
.wsa9{word-spacing:203.906250pt;}
.wsb3{word-spacing:211.906250pt;}
.wsb0{word-spacing:219.906230pt;}
.wsa5{word-spacing:263.906231pt;}
.wsa7{word-spacing:359.906241pt;}
.wsa8{word-spacing:775.906250pt;}
.ws1c{word-spacing:1332.362737pt;}
.wsf{word-spacing:1560.262158pt;}
.ws1d{word-spacing:1578.987739pt;}
.wsac{word-spacing:1791.906250pt;}
.ws1a{word-spacing:1817.237740pt;}
.ws11{word-spacing:1821.626669pt;}
._6{margin-left:-8.249997pt;}
._9{margin-left:-7.093599pt;}
._2{margin-left:-5.567137pt;}
._3{margin-left:-4.659265pt;}
._0{margin-left:-2.796263pt;}
._1{margin-left:-1.441522pt;}
._55{width:11.640566pt;}
._56{width:12.596233pt;}
._4f{width:14.656256pt;}
._46{width:15.999999pt;}
._4b{width:16.904842pt;}
._42{width:20.000017pt;}
._4a{width:20.922742pt;}
._3f{width:24.000000pt;}
._44{width:27.999999pt;}
._63{width:28.889596pt;}
._43{width:31.182866pt;}
._2e{width:32.817153pt;}
._48{width:36.000037pt;}
._47{width:40.000000pt;}
._40{width:44.000002pt;}
._45{width:48.000002pt;}
._49{width:52.000000pt;}
._4d{width:56.000002pt;}
._41{width:60.000000pt;}
._4c{width:64.000001pt;}
._5b{width:68.000000pt;}
._4e{width:72.000069pt;}
._53{width:74.687500pt;}
._50{width:76.000009pt;}
._57{width:80.000000pt;}
._1c{width:81.024580pt;}
._54{width:84.000002pt;}
._51{width:87.999997pt;}
._52{width:94.687500pt;}
._2a{width:104.239437pt;}
._62{width:112.000000pt;}
._1b{width:118.270579pt;}
._5d{width:120.000000pt;}
._60{width:184.000002pt;}
._61{width:196.000020pt;}
._59{width:200.000000pt;}
._5e{width:228.000000pt;}
._5c{width:244.000000pt;}
._30{width:258.645598pt;}
._5f{width:260.000002pt;}
._1d{width:263.220263pt;}
._1f{width:271.083039pt;}
._8{width:282.971671pt;}
._58{width:304.000002pt;}
._33{width:342.332988pt;}
._1a{width:357.145486pt;}
._32{width:377.770338pt;}
._29{width:434.708069pt;}
._2f{width:623.083020pt;}
._2b{width:639.900135pt;}
._17{width:660.207988pt;}
._34{width:680.614196pt;}
._22{width:685.871938pt;}
._d{width:707.895487pt;}
._2c{width:743.098002pt;}
._e{width:782.895489pt;}
._5a{width:816.000000pt;}
._20{width:839.770590pt;}
._21{width:864.739238pt;}
._1e{width:900.239238pt;}
._a{width:958.957990pt;}
._15{width:998.020490pt;}
._18{width:1001.614259pt;}
._36{width:1067.176739pt;}
._26{width:1073.957995pt;}
._25{width:1091.739245pt;}
._27{width:1093.837656pt;}
._16{width:1095.645490pt;}
._f{width:1120.676739pt;}
._c{width:1138.457997pt;}
._37{width:1149.051740pt;}
._11{width:1161.520488pt;}
._10{width:1175.739238pt;}
._b{width:1180.895380pt;}
._7{width:1237.082986pt;}
._4{width:1283.132809pt;}
._24{width:1310.775132pt;}
._12{width:1333.926739pt;}
._2d{width:1388.989246pt;}
._19{width:1396.520490pt;}
._35{width:1412.051740pt;}
._14{width:1481.364240pt;}
._5{width:1579.020489pt;}
._39{width:1603.864239pt;}
._38{width:1628.770490pt;}
._28{width:1639.842263pt;}
._13{width:1655.551740pt;}
._23{width:1697.712012pt;}
._31{width:1706.957990pt;}
._3c{width:1708.770489pt;}
._3d{width:1715.160502pt;}
._3e{width:1742.645490pt;}
._3b{width:1765.676739pt;}
._3a{width:1790.582989pt;}
.fs5{font-size:38.400002pt;}
.fs4{font-size:53.333332pt;}
.fs1{font-size:58.666668pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:74.666664pt;}
.fs2{font-size:106.666664pt;}
.y0{bottom:0.000000pt;}
.y28c{bottom:17.473958pt;}
.y26b{bottom:17.473959pt;}
.y26d{bottom:17.476562pt;}
.y26a{bottom:40.421874pt;}
.y80{bottom:50.447917pt;}
.y19{bottom:50.448243pt;}
.yd{bottom:50.448405pt;}
.y156{bottom:50.449219pt;}
.yb{bottom:50.839199pt;}
.y204{bottom:106.815100pt;}
.y25b{bottom:110.958327pt;}
.ya{bottom:110.960129pt;}
.y111{bottom:112.867193pt;}
.yd3{bottom:113.009113pt;}
.y19d{bottom:113.205727pt;}
.y40{bottom:113.403967pt;}
.y2c6{bottom:114.010420pt;}
.y34d{bottom:117.411460pt;}
.y173{bottom:117.608073pt;}
.y2ee{bottom:118.307287pt;}
.y33d{bottom:118.411460pt;}
.y1e3{bottom:121.205727pt;}
.y2d2{bottom:121.906247pt;}
.y1d1{bottom:125.291660pt;}
.y1ba{bottom:125.397140pt;}
.y30c{bottom:126.078127pt;}
.y154{bottom:130.010420pt;}
.y9{bottom:131.907227pt;}
.y203{bottom:134.411460pt;}
.y27f{bottom:134.453122pt;}
.y7e{bottom:134.535153pt;}
.y3f{bottom:135.802407pt;}
.y25a{bottom:138.557287pt;}
.y110{bottom:140.464847pt;}
.yd2{bottom:140.606767pt;}
.y1ef{bottom:140.802087pt;}
.y2c5{bottom:141.609380pt;}
.y2b7{bottom:145.010420pt;}
.y172{bottom:145.205727pt;}
.y2ed{bottom:145.906247pt;}
.y33c{bottom:146.010420pt;}
.y243{bottom:147.802087pt;}
.y1e2{bottom:148.802087pt;}
.y2d1{bottom:149.502607pt;}
.y349{bottom:149.609380pt;}
.y1d0{bottom:152.890620pt;}
.y1b9{bottom:152.994793pt;}
.y30b{bottom:153.674473pt;}
.y319{bottom:154.010420pt;}
.y138{bottom:155.589847pt;}
.yed{bottom:156.488287pt;}
.y19c{bottom:156.803380pt;}
.y218{bottom:157.395833pt;}
.y27e{bottom:157.403642pt;}
.y153{bottom:157.608073pt;}
.y339{bottom:157.609380pt;}
.y3e{bottom:158.200847pt;}
.y330{bottom:158.789719pt;}
.y202{bottom:162.010420pt;}
.y7d{bottom:162.132807pt;}
.y363{bottom:165.609380pt;}
.y259{bottom:166.156247pt;}
.y10f{bottom:168.062500pt;}
.yd1{bottom:168.204433pt;}
.y1ee{bottom:168.401047pt;}
.ya5{bottom:169.009113pt;}
.y323{bottom:169.208327pt;}
.y2b6{bottom:172.609380pt;}
.y188{bottom:172.803380pt;}
.y8{bottom:172.867186pt;}
.y2ec{bottom:173.502607pt;}
.y33b{bottom:173.609380pt;}
.y242{bottom:175.398433pt;}
.y1e1{bottom:176.401047pt;}
.y2d0{bottom:177.098953pt;}
.y2c4{bottom:177.205727pt;}
.y348{bottom:177.208327pt;}
.y29d{bottom:177.284505pt;}
.y27d{bottom:180.354161pt;}
.y1cf{bottom:180.486980pt;}
.y3d{bottom:180.599287pt;}
.y22b{bottom:180.606767pt;}
.y35c{bottom:180.609380pt;}
.y171{bottom:180.803380pt;}
.y30a{bottom:181.270833pt;}
.y318{bottom:181.609380pt;}
.y137{bottom:183.187500pt;}
.yec{bottom:184.085940pt;}
.y217{bottom:184.994793pt;}
.y152{bottom:185.205727pt;}
.y32f{bottom:185.208327pt;}
.y1b8{bottom:188.592447pt;}
.y201{bottom:189.609380pt;}
.y362{bottom:193.208327pt;}
.y7{bottom:194.307213pt;}
.y10e{bottom:195.660153pt;}
.ya4{bottom:196.606767pt;}
.y322{bottom:196.802087pt;}
.y7c{bottom:197.730140pt;}
.y2b5{bottom:200.205727pt;}
.y34c{bottom:200.208327pt;}
.y187{bottom:200.401047pt;}
.y2eb{bottom:201.098953pt;}
.y364{bottom:201.208327pt;}
.y258{bottom:201.752607pt;}
.y29c{bottom:202.586585pt;}
.y241{bottom:202.997393pt;}
.y3c{bottom:202.997727pt;}
.yd0{bottom:203.802087pt;}
.y1e0{bottom:203.999993pt;}
.y2c3{bottom:204.802087pt;}
.y1ce{bottom:208.083327pt;}
.y22a{bottom:208.203127pt;}
.y35b{bottom:208.208327pt;}
.y170{bottom:208.401047pt;}
.y309{bottom:208.869793pt;}
.y317{bottom:209.208327pt;}
.y38c{bottom:210.255202pt;}
.y136{bottom:210.785153pt;}
.yeb{bottom:211.683593pt;}
.y2cf{bottom:212.697913pt;}
.y32e{bottom:212.802087pt;}
.y200{bottom:217.205727pt;}
.y64{bottom:217.532873pt;}
.y216{bottom:220.593753pt;}
.y361{bottom:220.802087pt;}
.y151{bottom:220.803380pt;}
.y3b{bottom:221.396153pt;}
.y10d{bottom:223.257807pt;}
.y1b7{bottom:224.190100pt;}
.ya3{bottom:224.204433pt;}
.y321{bottom:224.401047pt;}
.y7b{bottom:225.327793pt;}
.y2b4{bottom:227.802087pt;}
.y29b{bottom:227.883465pt;}
.y186{bottom:227.998700pt;}
.y2ea{bottom:228.697913pt;}
.y368{bottom:228.802087pt;}
.ycf{bottom:231.399740pt;}
.y1df{bottom:231.596353pt;}
.y2c2{bottom:232.401047pt;}
.y38b{bottom:233.203122pt;}
.y1cd{bottom:235.682287pt;}
.y229{bottom:235.802087pt;}
.y16f{bottom:235.998700pt;}
.y267{bottom:235.999993pt;}
.y308{bottom:236.468753pt;}
.y316{bottom:236.802087pt;}
.y257{bottom:237.348953pt;}
.y135{bottom:238.382807pt;}
.y240{bottom:238.593753pt;}
.yea{bottom:239.316401pt;}
.y63{bottom:239.931313pt;}
.y2ce{bottom:240.296873pt;}
.y338{bottom:240.401047pt;}
.y3a{bottom:243.794593pt;}
.y1ff{bottom:244.802087pt;}
.y37f{bottom:245.505202pt;}
.y34b{bottom:245.911464pt;}
.y215{bottom:248.190100pt;}
.y150{bottom:248.401047pt;}
.y1b6{bottom:251.787767pt;}
.ya2{bottom:251.802087pt;}
.y29a{bottom:253.180331pt;}
.y2b3{bottom:255.401047pt;}
.y19b{bottom:255.596353pt;}
.y38a{bottom:256.151042pt;}
.y32d{bottom:256.401047pt;}
.y10c{bottom:258.855473pt;}
.yce{bottom:258.997393pt;}
.y1ed{bottom:259.192713pt;}
.y2c1{bottom:259.999993pt;}
.y7a{bottom:260.925460pt;}
.y62{bottom:262.329753pt;}
.y1cc{bottom:263.281247pt;}
.y228{bottom:263.398433pt;}
.y35a{bottom:263.401047pt;}
.y16e{bottom:263.596353pt;}
.y307{bottom:264.065100pt;}
.y2e9{bottom:264.296873pt;}
.y315{bottom:264.401047pt;}
.y256{bottom:264.947913pt;}
.y23f{bottom:266.192713pt;}
.y39{bottom:266.193033pt;}
.y2cd{bottom:267.893233pt;}
.y347{bottom:267.999993pt;}
.y37e{bottom:268.453122pt;}
.y367{bottom:272.401047pt;}
.ye9{bottom:274.984380pt;}
.y1de{bottom:275.192713pt;}
.y214{bottom:275.786460pt;}
.y14f{bottom:275.998700pt;}
.y337{bottom:275.999993pt;}
.y389{bottom:279.104162pt;}
.y1b5{bottom:279.385420pt;}
.ya1{bottom:279.399740pt;}
.y1fe{bottom:280.401047pt;}
.y134{bottom:281.980473pt;}
.y19a{bottom:283.194007pt;}
.y32c{bottom:283.999993pt;}
.y27c{bottom:284.682287pt;}
.y61{bottom:284.728193pt;}
.y10b{bottom:286.453127pt;}
.ycd{bottom:286.595047pt;}
.y320{bottom:287.593753pt;}
.y299{bottom:287.596353pt;}
.y38{bottom:288.591473pt;}
.y28f{bottom:289.458332pt;}
.y1cb{bottom:290.877607pt;}
.y227{bottom:290.997393pt;}
.y2b2{bottom:290.999993pt;}
.y185{bottom:291.194007pt;}
.y37d{bottom:291.401042pt;}
.y306{bottom:291.661460pt;}
.y2e8{bottom:291.893233pt;}
.y2f8{bottom:291.999993pt;}
.y255{bottom:292.546873pt;}
.y23e{bottom:293.789060pt;}
.y1ec{bottom:294.791660pt;}
.y2cc{bottom:295.489580pt;}
.y346{bottom:295.593753pt;}
.y79{bottom:296.523113pt;}
.y266{bottom:299.192713pt;}
.y16d{bottom:299.194007pt;}
.y366{bottom:299.999993pt;}
.y388{bottom:302.052082pt;}
.ye8{bottom:302.582033pt;}
.y213{bottom:303.385420pt;}
.y336{bottom:303.593753pt;}
.y1b4{bottom:306.983073pt;}
.ya0{bottom:306.997393pt;}
.y60{bottom:307.126633pt;}
.y1fd{bottom:307.999993pt;}
.y37{bottom:310.989913pt;}
.y360{bottom:311.593753pt;}
.y14e{bottom:311.596353pt;}
.y27b{bottom:312.281247pt;}
.y10a{bottom:314.050780pt;}
.ycc{bottom:314.192713pt;}
.y37c{bottom:314.354162pt;}
.y298{bottom:315.192713pt;}
.y226{bottom:318.593753pt;}
.y2b1{bottom:318.596353pt;}
.y199{bottom:318.791660pt;}
.y305{bottom:319.260420pt;}
.y2e7{bottom:319.489580pt;}
.y314{bottom:319.593753pt;}
.y2f7{bottom:319.596353pt;}
.y254{bottom:320.143233pt;}
.y23d{bottom:321.388020pt;}
.y2cb{bottom:323.122401pt;}
.y345{bottom:323.192713pt;}
.y387{bottom:325.000002pt;}
.y133{bottom:325.578127pt;}
.y1ca{bottom:326.473953pt;}
.y359{bottom:326.593753pt;}
.y16c{bottom:326.791660pt;}
.y32b{bottom:327.593753pt;}
.yba{bottom:327.597660pt;}
.y5f{bottom:329.525060pt;}
.y1eb{bottom:330.390620pt;}
.y212{bottom:330.984380pt;}
.y335{bottom:331.192713pt;}
.y78{bottom:332.120767pt;}
.y36{bottom:333.388340pt;}
.y9f{bottom:334.595047pt;}
.y265{bottom:334.791660pt;}
.y28e{bottom:335.408852pt;}
.y1fc{bottom:335.596353pt;}
.y37b{bottom:337.302082pt;}
.ye7{bottom:338.179687pt;}
.y35f{bottom:339.192713pt;}
.y14d{bottom:339.194007pt;}
.y27a{bottom:339.877607pt;}
.y109{bottom:341.648433pt;}
.ycb{bottom:341.790367pt;}
.y297{bottom:342.791660pt;}
.y2b0{bottom:346.192713pt;}
.y198{bottom:346.389327pt;}
.y1dd{bottom:346.390620pt;}
.y304{bottom:346.859380pt;}
.y2e6{bottom:347.088540pt;}
.y2f6{bottom:347.192713pt;}
.y386{bottom:347.953122pt;}
.y1b3{bottom:350.580727pt;}
.y344{bottom:350.791660pt;}
.y35{bottom:351.786780pt;}
.y5e{bottom:351.923500pt;}
.y132{bottom:353.175780pt;}
.y1c9{bottom:354.072913pt;}
.y225{bottom:354.192713pt;}
.y16b{bottom:354.389327pt;}
.y313{bottom:355.192713pt;}
.yb9{bottom:355.195313pt;}
.y211{bottom:358.580727pt;}
.y2ca{bottom:358.791660pt;}
.y37a{bottom:360.250002pt;}
.y9e{bottom:362.192713pt;}
.y264{bottom:362.390620pt;}
.y1fb{bottom:363.192713pt;}
.y253{bottom:363.739580pt;}
.y23c{bottom:364.984380pt;}
.ye6{bottom:365.777340pt;}
.y1ea{bottom:365.986980pt;}
.y14c{bottom:366.791660pt;}
.y279{bottom:367.473953pt;}
.y77{bottom:367.718420pt;}
.y108{bottom:369.246100pt;}
.y296{bottom:370.390620pt;}
.y385{bottom:370.901042pt;}
.y2af{bottom:373.791660pt;}
.y197{bottom:373.986980pt;}
.y34{bottom:374.185220pt;}
.y5d{bottom:374.321940pt;}
.y303{bottom:374.455727pt;}
.y2f5{bottom:374.791660pt;}
.yca{bottom:377.388020pt;}
.y31f{bottom:378.390620pt;}
.y131{bottom:380.773433pt;}
.y28d{bottom:381.359376pt;}
.y1c8{bottom:381.671873pt;}
.y224{bottom:381.789060pt;}
.y358{bottom:381.791660pt;}
.y16a{bottom:381.986980pt;}
.y2e5{bottom:382.687500pt;}
.y312{bottom:382.791660pt;}
.yb8{bottom:382.792967pt;}
.y379{bottom:383.203122pt;}
.y374{bottom:385.057295pt;}
.y210{bottom:386.177087pt;}
.y2c9{bottom:386.390620pt;}
.y9d{bottom:389.790367pt;}
.y263{bottom:389.986980pt;}
.y365{bottom:390.791660pt;}
.y38f{bottom:390.859375pt;}
.y33{bottom:392.583660pt;}
.ye5{bottom:393.374993pt;}
.y1e9{bottom:393.583327pt;}
.y384{bottom:393.848962pt;}
.y1b2{bottom:394.178380pt;}
.y14b{bottom:394.389327pt;}
.y334{bottom:394.390620pt;}
.y5c{bottom:396.720380pt;}
.y1fa{bottom:398.791660pt;}
.y2ae{bottom:401.390620pt;}
.y196{bottom:401.584633pt;}
.y302{bottom:402.052087pt;}
.y2f4{bottom:402.390620pt;}
.y278{bottom:403.072913pt;}
.y76{bottom:403.316087pt;}
.y24d{bottom:404.984380pt;}
.yc9{bottom:404.985673pt;}
.y295{bottom:405.986980pt;}
.y31e{bottom:405.989580pt;}
.y378{bottom:406.151042pt;}
.y373{bottom:408.010415pt;}
.y130{bottom:408.371100pt;}
.y23b{bottom:408.583327pt;}
.y1c7{bottom:409.268233pt;}
.y223{bottom:409.388020pt;}
.y357{bottom:409.390620pt;}
.y1dc{bottom:409.583327pt;}
.y169{bottom:409.584633pt;}
.y2e4{bottom:410.283860pt;}
.yb7{bottom:410.390620pt;}
.y107{bottom:412.843753pt;}
.y38e{bottom:413.802082pt;}
.y20f{bottom:413.809894pt;}
.y2c0{bottom:413.986980pt;}
.y343{bottom:413.989580pt;}
.y32{bottom:414.982100pt;}
.y5b{bottom:415.118820pt;}
.y383{bottom:416.796869pt;}
.y9c{bottom:417.388020pt;}
.y262{bottom:417.583327pt;}
.y184{bottom:417.584633pt;}
.y33a{bottom:418.390620pt;}
.ye4{bottom:420.972660pt;}
.y1b1{bottom:421.776047pt;}
.y14a{bottom:421.986980pt;}
.y333{bottom:421.989580pt;}
.y1f9{bottom:426.390620pt;}
.y28b{bottom:427.307296pt;}
.y2ad{bottom:428.986980pt;}
.y377{bottom:429.098962pt;}
.y301{bottom:429.651047pt;}
.y2f3{bottom:429.986980pt;}
.y35e{bottom:429.989580pt;}
.y277{bottom:430.671873pt;}
.y372{bottom:430.958335pt;}
.yc8{bottom:432.583327pt;}
.y294{bottom:433.583327pt;}
.y12f{bottom:435.968753pt;}
.y23a{bottom:436.179687pt;}
.y38d{bottom:436.755202pt;}
.y1c6{bottom:436.864580pt;}
.y222{bottom:436.984380pt;}
.y356{bottom:436.989580pt;}
.y168{bottom:437.182287pt;}
.y31{bottom:437.380540pt;}
.y5a{bottom:437.517247pt;}
.y2e3{bottom:437.880207pt;}
.yb6{bottom:437.988287pt;}
.y311{bottom:437.989580pt;}
.y75{bottom:438.913740pt;}
.y382{bottom:439.744789pt;}
.y342{bottom:441.583327pt;}
.y9b{bottom:444.985673pt;}
.y183{bottom:445.182287pt;}
.yff{bottom:445.777340pt;}
.y32a{bottom:445.989580pt;}
.ye3{bottom:448.570313pt;}
.y1b0{bottom:449.373700pt;}
.y20e{bottom:449.479167pt;}
.y2c8{bottom:449.583327pt;}
.y371{bottom:453.906255pt;}
.y1f8{bottom:453.986980pt;}
.y376{bottom:454.234380pt;}
.y59{bottom:455.915687pt;}
.y300{bottom:457.249993pt;}
.y2bf{bottom:457.583327pt;}
.y276{bottom:458.268233pt;}
.y30{bottom:459.778967pt;}
.y24c{bottom:460.179687pt;}
.y293{bottom:461.182287pt;}
.y381{bottom:462.697922pt;}
.y239{bottom:463.778647pt;}
.y36d{bottom:463.958335pt;}
.y1c5{bottom:464.463540pt;}
.y2e2{bottom:465.479167pt;}
.y310{bottom:465.583327pt;}
.y149{bottom:465.584633pt;}
.yb5{bottom:465.585940pt;}
.y12e{bottom:471.566407pt;}
.y9a{bottom:472.583327pt;}
.y167{bottom:472.779953pt;}
.y1db{bottom:472.781247pt;}
.yfe{bottom:473.374993pt;}
.y329{bottom:473.583327pt;}
.y74{bottom:474.511393pt;}
.yc7{bottom:476.180993pt;}
.y252{bottom:476.348962pt;}
.y370{bottom:476.859375pt;}
.y1af{bottom:476.971353pt;}
.y20d{bottom:477.078127pt;}
.y341{bottom:477.182287pt;}
.y58{bottom:478.314127pt;}
.y375{bottom:479.645829pt;}
.y1e8{bottom:480.781247pt;}
.y1f7{bottom:481.583327pt;}
.y2f{bottom:482.177407pt;}
.y221{bottom:482.692704pt;}
.y6{bottom:483.587253pt;}
.y2be{bottom:485.182287pt;}
.y380{bottom:485.645829pt;}
.y36c{bottom:486.906255pt;}
.y195{bottom:488.779953pt;}
.y261{bottom:488.781247pt;}
.ye2{bottom:492.167967pt;}
.y2ff{bottom:492.846353pt;}
.y2e1{bottom:493.078127pt;}
.y30f{bottom:493.182287pt;}
.yb4{bottom:493.183593pt;}
.y275{bottom:493.864580pt;}
.y24b{bottom:495.778647pt;}
.y57{bottom:496.712567pt;}
.y12d{bottom:499.164060pt;}
.y251{bottom:499.296869pt;}
.y36f{bottom:499.807295pt;}
.y99{bottom:500.180993pt;}
.y2ac{bottom:500.182287pt;}
.y166{bottom:500.377607pt;}
.yfd{bottom:500.972660pt;}
.y328{bottom:501.182287pt;}
.y11e{bottom:504.464847pt;}
.y1ae{bottom:504.569007pt;}
.y2e{bottom:504.575847pt;}
.y20c{bottom:504.674473pt;}
.y340{bottom:504.781247pt;}
.y238{bottom:507.374993pt;}
.y1c4{bottom:508.062500pt;}
.y182{bottom:508.377607pt;}
.y148{bottom:509.182287pt;}
.y36b{bottom:509.859375pt;}
.y73{bottom:510.109047pt;}
.y2bd{bottom:512.781247pt;}
.y5{bottom:515.587253pt;}
.y194{bottom:516.377607pt;}
.y56{bottom:519.111007pt;}
.y28a{bottom:519.328122pt;}
.yc6{bottom:519.778647pt;}
.y2fe{bottom:520.442713pt;}
.y2e0{bottom:520.674473pt;}
.yb3{bottom:520.781247pt;}
.y274{bottom:521.463540pt;}
.y250{bottom:522.247402pt;}
.y36e{bottom:522.755201pt;}
.y24a{bottom:523.374993pt;}
.y31d{bottom:524.374993pt;}
.y106{bottom:525.451829pt;}
.y12c{bottom:526.796881pt;}
.y2d{bottom:526.974287pt;}
.y355{bottom:527.781247pt;}
.y165{bottom:527.975260pt;}
.y220{bottom:528.781247pt;}
.y11d{bottom:532.062500pt;}
.y1ad{bottom:532.166660pt;}
.y20b{bottom:532.307294pt;}
.y33f{bottom:532.374993pt;}
.y260{bottom:532.377607pt;}
.y36a{bottom:532.807295pt;}
.y1c3{bottom:535.658860pt;}
.ye1{bottom:535.765620pt;}
.y98{bottom:535.778647pt;}
.y1da{bottom:535.973953pt;}
.y181{bottom:535.975260pt;}
.yfc{bottom:536.570313pt;}
.y147{bottom:536.779953pt;}
.y1f6{bottom:536.781247pt;}
.y2c7{bottom:540.377607pt;}
.y55{bottom:541.509447pt;}
.y289{bottom:542.278642pt;}
.y2ab{bottom:543.781247pt;}
.y193{bottom:543.975260pt;}
.y24f{bottom:545.197922pt;}
.y72{bottom:545.706700pt;}
.yc5{bottom:547.376300pt;}
.y4{bottom:547.587253pt;}
.y2fd{bottom:548.041660pt;}
.y2df{bottom:548.270833pt;}
.y332{bottom:548.374993pt;}
.y2bc{bottom:548.377607pt;}
.yb2{bottom:548.378900pt;}
.y105{bottom:548.401042pt;}
.y2c{bottom:549.372727pt;}
.y237{bottom:550.973953pt;}
.y292{bottom:551.973953pt;}
.y354{bottom:555.374993pt;}
.y369{bottom:555.755202pt;}
.y34a{bottom:556.374993pt;}
.y21f{bottom:556.377607pt;}
.y273{bottom:557.062500pt;}
.y11c{bottom:559.695307pt;}
.y25f{bottom:559.973953pt;}
.y12b{bottom:562.500001pt;}
.ye0{bottom:563.363287pt;}
.y97{bottom:563.376300pt;}
.y180{bottom:563.572913pt;}
.y54{bottom:563.907873pt;}
.yfb{bottom:564.167967pt;}
.y327{bottom:564.374993pt;}
.y146{bottom:564.377607pt;}
.y288{bottom:565.229162pt;}
.y1ac{bottom:567.764327pt;}
.y20a{bottom:567.973953pt;}
.y24e{bottom:568.145828pt;}
.y104{bottom:571.350255pt;}
.y2aa{bottom:571.377607pt;}
.y164{bottom:571.572913pt;}
.y2b{bottom:571.771153pt;}
.y1f5{bottom:572.377607pt;}
.yc4{bottom:574.973953pt;}
.y2fc{bottom:575.640620pt;}
.y2de{bottom:575.869793pt;}
.y2bb{bottom:575.973953pt;}
.yb1{bottom:575.976567pt;}
.y236{bottom:578.570313pt;}
.y1c2{bottom:579.255207pt;}
.y192{bottom:579.572913pt;}
.y3{bottom:579.587253pt;}
.y71{bottom:581.304367pt;}
.y53{bottom:582.306313pt;}
.y21e{bottom:583.973953pt;}
.y272{bottom:584.658860pt;}
.y25e{bottom:587.572913pt;}
.y287{bottom:588.177082pt;}
.y96{bottom:590.973953pt;}
.ydf{bottom:590.996094pt;}
.y17f{bottom:591.170567pt;}
.yfa{bottom:591.765620pt;}
.y326{bottom:591.973953pt;}
.y2a{bottom:594.169593pt;}
.y103{bottom:594.299482pt;}
.y1ab{bottom:595.361980pt;}
.y11b{bottom:595.363287pt;}
.y209{bottom:595.572913pt;}
.y12a{bottom:598.167967pt;}
.y2a9{bottom:598.973953pt;}
.y1f4{bottom:599.973953pt;}
.y145{bottom:599.976567pt;}
.yc3{bottom:602.571620pt;}
.y2ba{bottom:603.572913pt;}
.y52{bottom:604.704753pt;}
.y235{bottom:606.169273pt;}
.y1c1{bottom:606.854167pt;}
.y191{bottom:607.170567pt;}
.y291{bottom:607.171873pt;}
.y70{bottom:608.902020pt;}
.y286{bottom:611.125001pt;}
.y2dd{bottom:611.468753pt;}
.y21d{bottom:611.572913pt;}
.yb0{bottom:611.574220pt;}
.y271{bottom:612.255207pt;}
.y249{bottom:614.169273pt;}
.y163{bottom:615.170567pt;}
.y25d{bottom:615.171873pt;}
.y29{bottom:616.568033pt;}
.y102{bottom:617.248695pt;}
.y95{bottom:618.571620pt;}
.y353{bottom:618.572913pt;}
.yf9{bottom:619.363287pt;}
.y30e{bottom:619.572913pt;}
.y1aa{bottom:622.959633pt;}
.y11a{bottom:622.960940pt;}
.y51{bottom:623.103193pt;}
.y1d9{bottom:623.171873pt;}
.y129{bottom:625.765620pt;}
.y2a8{bottom:626.572913pt;}
.yde{bottom:626.664060pt;}
.y17e{bottom:626.768233pt;}
.y1f3{bottom:627.572913pt;}
.y144{bottom:627.574220pt;}
.yc2{bottom:630.169273pt;}
.y190{bottom:634.768233pt;}
.y28{bottom:638.966473pt;}
.y2dc{bottom:639.065100pt;}
.yaf{bottom:639.171873pt;}
.y270{bottom:639.854167pt;}
.y101{bottom:640.197922pt;}
.y234{bottom:641.765620pt;}
.y1c0{bottom:642.486974pt;}
.y162{bottom:642.768233pt;}
.y6f{bottom:644.499673pt;}
.y50{bottom:645.501633pt;}
.y94{bottom:646.169273pt;}
.y352{bottom:646.171873pt;}
.yf8{bottom:646.960940pt;}
.y30d{bottom:647.171873pt;}
.y1a9{bottom:650.557287pt;}
.y119{bottom:650.558593pt;}
.y1d8{bottom:650.768233pt;}
.y31c{bottom:650.770833pt;}
.y2a7{bottom:654.171873pt;}
.ydd{bottom:654.296881pt;}
.y17d{bottom:654.365887pt;}
.y143{bottom:655.171873pt;}
.yc1{bottom:657.766927pt;}
.y27{bottom:661.364913pt;}
.y18f{bottom:662.365887pt;}
.y100{bottom:663.147134pt;}
.y2b9{bottom:666.768233pt;}
.yae{bottom:666.769527pt;}
.y35d{bottom:666.770833pt;}
.y4f{bottom:667.900060pt;}
.y128{bottom:669.363287pt;}
.y233{bottom:669.364580pt;}
.y25c{bottom:670.364580pt;}
.y161{bottom:670.365887pt;}
.y351{bottom:673.770833pt;}
.yf7{bottom:674.558593pt;}
.y2db{bottom:674.661460pt;}
.y21c{bottom:674.768233pt;}
.y325{bottom:674.770833pt;}
.y1a8{bottom:678.154953pt;}
.y118{bottom:678.156247pt;}
.y1d7{bottom:678.364580pt;}
.y6e{bottom:680.097327pt;}
.y2fb{bottom:680.247402pt;}
.y93{bottom:681.766927pt;}
.y2a6{bottom:681.768233pt;}
.y17c{bottom:681.963540pt;}
.y1f2{bottom:682.768233pt;}
.y142{bottom:682.769527pt;}
.y331{bottom:682.770833pt;}
.y26f{bottom:683.453127pt;}
.y26{bottom:683.763340pt;}
.ydc{bottom:689.964847pt;}
.y4e{bottom:690.298500pt;}
.yc0{bottom:693.364580pt;}
.y2b8{bottom:694.364580pt;}
.yad{bottom:694.367193pt;}
.y232{bottom:696.960940pt;}
.y18e{bottom:697.963540pt;}
.yf6{bottom:702.156247pt;}
.y2da{bottom:702.260420pt;}
.y21b{bottom:702.364580pt;}
.y2fa{bottom:703.197922pt;}
.y1bf{bottom:705.752607pt;}
.y117{bottom:705.753900pt;}
.y1d6{bottom:705.963540pt;}
.y25{bottom:706.161780pt;}
.y4d{bottom:708.696940pt;}
.y92{bottom:709.364580pt;}
.y1f1{bottom:710.364580pt;}
.y141{bottom:710.367193pt;}
.y127{bottom:712.960940pt;}
.y160{bottom:713.963540pt;}
.y285{bottom:715.455727pt;}
.y6d{bottom:715.694993pt;}
.y2a5{bottom:717.364580pt;}
.ydb{bottom:717.562500pt;}
.ybf{bottom:720.962233pt;}
.y1a7{bottom:721.752607pt;}
.y1e7{bottom:721.963540pt;}
.yac{bottom:721.964847pt;}
.y17{bottom:725.364740pt;}
.y17b{bottom:725.561193pt;}
.y290{bottom:725.562500pt;}
.y2f9{bottom:726.145828pt;}
.y24{bottom:728.560220pt;}
.yf5{bottom:729.789067pt;}
.y2d9{bottom:729.859380pt;}
.y21a{bottom:729.963540pt;}
.y4c{bottom:731.095380pt;}
.y248{bottom:732.559900pt;}
.y1be{bottom:733.385414pt;}
.y116{bottom:733.386721pt;}
.y91{bottom:736.962233pt;}
.y350{bottom:736.963540pt;}
.y1f0{bottom:737.963540pt;}
.y140{bottom:737.964847pt;}
.y126{bottom:740.558593pt;}
.y231{bottom:740.559900pt;}
.y1d5{bottom:741.562500pt;}
.y284{bottom:743.052087pt;}
.y2a4{bottom:744.963540pt;}
.y88{bottom:745.160153pt;}
.ybe{bottom:748.559900pt;}
.yab{bottom:749.562500pt;}
.y23{bottom:750.958660pt;}
.y6c{bottom:751.292647pt;}
.y16{bottom:752.962407pt;}
.y18d{bottom:753.158860pt;}
.y4b{bottom:753.493820pt;}
.y2d8{bottom:757.455727pt;}
.y15f{bottom:757.561193pt;}
.y219{bottom:757.562500pt;}
.y247{bottom:760.156247pt;}
.y90{bottom:764.559900pt;}
.y34f{bottom:764.562500pt;}
.y1a6{bottom:765.350260pt;}
.yf4{bottom:765.457033pt;}
.y13f{bottom:765.562500pt;}
.y125{bottom:768.156247pt;}
.y115{bottom:769.054687pt;}
.y1bd{bottom:769.088547pt;}
.y17a{bottom:769.158860pt;}
.y283{bottom:770.651047pt;}
.y2a3{bottom:772.562500pt;}
.y22{bottom:773.357100pt;}
.y2f2{bottom:773.562500pt;}
.y4a{bottom:775.892247pt;}
.ybd{bottom:776.157553pt;}
.yaa{bottom:777.160153pt;}
.y6b{bottom:778.890300pt;}
.y15{bottom:780.560060pt;}
.y18c{bottom:780.756513pt;}
.y87{bottom:780.757807pt;}
.y230{bottom:784.156247pt;}
.y2d7{bottom:785.052087pt;}
.y33e{bottom:785.156247pt;}
.y15e{bottom:785.158860pt;}
.y246{bottom:787.755207pt;}
.yda{bottom:788.757807pt;}
.y8f{bottom:792.157553pt;}
.y1a5{bottom:792.947913pt;}
.yf3{bottom:793.054687pt;}
.y31b{bottom:793.156247pt;}
.y1e6{bottom:793.158860pt;}
.y13e{bottom:793.160153pt;}
.y124{bottom:795.753900pt;}
.y21{bottom:795.755540pt;}
.y114{bottom:796.652340pt;}
.y1d4{bottom:796.755207pt;}
.y179{bottom:796.756513pt;}
.y49{bottom:798.290687pt;}
.y2a2{bottom:800.158860pt;}
.y2f1{bottom:801.158860pt;}
.y26e{bottom:802.583332pt;}
.y1bc{bottom:804.756513pt;}
.ya9{bottom:804.757807pt;}
.y14{bottom:808.157713pt;}
.y18b{bottom:808.354167pt;}
.y34e{bottom:810.265624pt;}
.ybc{bottom:811.755207pt;}
.y208{bottom:812.755207pt;}
.y15d{bottom:812.756513pt;}
.y282{bottom:814.249993pt;}
.y6a{bottom:814.487953pt;}
.y86{bottom:816.355473pt;}
.y48{bottom:816.689127pt;}
.y20{bottom:818.153967pt;}
.y8e{bottom:819.755207pt;}
.y1a4{bottom:820.545567pt;}
.y2d6{bottom:820.651047pt;}
.yf2{bottom:820.652340pt;}
.y1e5{bottom:820.755207pt;}
.y13d{bottom:820.757807pt;}
.y123{bottom:823.351567pt;}
.y113{bottom:824.285161pt;}
.y1d3{bottom:824.354167pt;}
.y2a1{bottom:827.755207pt;}
.y2f0{bottom:828.755207pt;}
.y245{bottom:831.351567pt;}
.y178{bottom:832.354167pt;}
.yd9{bottom:832.355473pt;}
.y2{bottom:832.707227pt;}
.y13{bottom:835.755367pt;}
.y18a{bottom:835.951820pt;}
.y47{bottom:839.087567pt;}
.ybb{bottom:839.352860pt;}
.y207{bottom:840.354167pt;}
.ya8{bottom:840.355473pt;}
.y1f{bottom:840.552407pt;}
.y22f{bottom:847.351567pt;}
.y8d{bottom:847.352860pt;}
.y1a3{bottom:848.143233pt;}
.yf1{bottom:848.249993pt;}
.y15c{bottom:848.354167pt;}
.y26c{bottom:848.533852pt;}
.y69{bottom:850.085607pt;}
.y1{bottom:851.267239pt;}
.y85{bottom:851.953127pt;}
.y2ef{bottom:856.354167pt;}
.y13c{bottom:856.355473pt;}
.y177{bottom:859.951820pt;}
.y112{bottom:859.953127pt;}
.y46{bottom:861.486007pt;}
.y1e{bottom:862.950847pt;}
.y12{bottom:863.353033pt;}
.y2a0{bottom:863.354167pt;}
.ya7{bottom:867.953127pt;}
.y8c{bottom:874.950527pt;}
.y1a2{bottom:875.740887pt;}
.y2d5{bottom:875.846353pt;}
.yf0{bottom:875.847660pt;}
.y15b{bottom:875.951820pt;}
.yd8{bottom:875.953127pt;}
.y189{bottom:879.549473pt;}
.y45{bottom:883.884447pt;}
.y13b{bottom:883.953127pt;}
.y1d{bottom:885.349284pt;}
.y68{bottom:885.683268pt;}
.y176{bottom:887.549479pt;}
.y84{bottom:887.550781pt;}
.y11{bottom:890.950684pt;}
.y29f{bottom:890.953125pt;}
.y269{bottom:894.484375pt;}
.y1bb{bottom:895.549479pt;}
.ya6{bottom:895.550781pt;}
.y44{bottom:902.282877pt;}
.y22e{bottom:902.546875pt;}
.y8b{bottom:902.548177pt;}
.y1a1{bottom:903.373698pt;}
.y2d4{bottom:903.442708pt;}
.yef{bottom:903.445312pt;}
.y15a{bottom:903.549479pt;}
.yd7{bottom:903.550781pt;}
.y31a{bottom:903.552083pt;}
.y1c{bottom:907.747721pt;}
.y206{bottom:911.549479pt;}
.y13a{bottom:911.550781pt;}
.y324{bottom:911.552083pt;}
.y281{bottom:917.380208pt;}
.y10{bottom:918.548340pt;}
.y29e{bottom:918.549479pt;}
.y244{bottom:920.656251pt;}
.y67{bottom:921.280924pt;}
.y1d2{bottom:923.145833pt;}
.y175{bottom:923.147136pt;}
.y83{bottom:923.148437pt;}
.y43{bottom:924.681315pt;}
.y122{bottom:927.959635pt;}
.y8a{bottom:930.145833pt;}
.y1b{bottom:930.146159pt;}
.y2d3{bottom:931.075521pt;}
.yee{bottom:931.078125pt;}
.y1e4{bottom:931.145833pt;}
.y159{bottom:931.147136pt;}
.yd6{bottom:931.148437pt;}
.y1a0{bottom:939.041667pt;}
.y205{bottom:939.145833pt;}
.y139{bottom:939.148437pt;}
.y22d{bottom:946.145833pt;}
.yf{bottom:946.145996pt;}
.y42{bottom:947.079752pt;}
.y174{bottom:950.744792pt;}
.y82{bottom:950.746093pt;}
.y121{bottom:950.908854pt;}
.y66{bottom:956.878581pt;}
.y280{bottom:963.330728pt;}
.y19f{bottom:966.639323pt;}
.y158{bottom:966.744792pt;}
.yd5{bottom:966.746093pt;}
.y41{bottom:969.478191pt;}
.y268{bottom:973.856771pt;}
.y120{bottom:973.858073pt;}
.y1a{bottom:975.853842pt;}
.y89{bottom:975.854167pt;}
.y81{bottom:986.343749pt;}
.ye{bottom:991.853677pt;}
.y65{bottom:991.853840pt;}
.y22c{bottom:991.854165pt;}
.y19e{bottom:994.272135pt;}
.y157{bottom:994.342448pt;}
.yd4{bottom:994.343749pt;}
.y11f{bottom:996.807291pt;}
.y155{bottom:1009.279948pt;}
.yc{bottom:1009.280761pt;}
.y18{bottom:1009.280924pt;}
.y7f{bottom:1009.281249pt;}
.h10{height:44.947917pt;}
.hf{height:44.950521pt;}
.hc{height:48.072915pt;}
.hb{height:48.515624pt;}
.h2{height:52.593751pt;}
.h9{height:56.843750pt;}
.h6{height:57.375000pt;}
.h7{height:66.317706pt;}
.h1{height:66.937498pt;}
.he{height:67.895833pt;}
.h3{height:96.302081pt;}
.h4{height:102.469720pt;}
.ha{height:113.385417pt;}
.h8{height:113.385743pt;}
.h5{height:113.385905pt;}
.hd{height:113.386719pt;}
.h0{height:1122.666667pt;}
.w4{width:111.999980pt;}
.w7{width:113.999980pt;}
.w8{width:134.999980pt;}
.w9{width:135.000000pt;}
.w3{width:180.000000pt;}
.w5{width:198.999980pt;}
.w6{width:227.000000pt;}
.w2{width:247.999973pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x28{left:18.520035pt;}
.x31{left:22.756355pt;}
.x18{left:25.182297pt;}
.x1b{left:26.734825pt;}
.x2f{left:29.134079pt;}
.x1e{left:34.538132pt;}
.x21{left:39.399521pt;}
.x1c{left:41.188782pt;}
.x23{left:51.230423pt;}
.x2e{left:55.455261pt;}
.x20{left:58.206871pt;}
.x30{left:60.921646pt;}
.x25{left:63.470245pt;}
.x27{left:71.092522pt;}
.x22{left:82.191246pt;}
.x29{left:88.362877pt;}
.x1f{left:92.206871pt;}
.x2a{left:102.362877pt;}
.x19{left:104.662949pt;}
.xd{left:151.181112pt;}
.x1d{left:152.181112pt;}
.xf{left:175.181112pt;}
.x5{left:196.145494pt;}
.x10{left:199.181112pt;}
.x3{left:218.330839pt;}
.x11{left:223.181112pt;}
.x4{left:231.724043pt;}
.x17{left:265.181093pt;}
.x24{left:267.181093pt;}
.x2b{left:288.181093pt;}
.x6{left:305.731573pt;}
.x1{left:336.691502pt;}
.xb{left:339.746862pt;}
.x2{left:363.090952pt;}
.x2c{left:424.181067pt;}
.xa{left:430.916682pt;}
.x26{left:467.181067pt;}
.x8{left:474.587122pt;}
.x1a{left:514.181067pt;}
.x2d{left:560.181067pt;}
.x9{left:643.458642pt;}
.x7{left:659.732232pt;}
.x15{left:681.944052pt;}
.x16{left:682.834672pt;}
.x12{left:685.498742pt;}
.x13{left:686.389362pt;}
.xe{left:689.944052pt;}
.x14{left:690.834672pt;}
.xc{left:694.389362pt;}
}




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