
    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_1789e0a58a1d556845ab48cb.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c3c3503e4a77b15951e26da6.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_446567a5525386c3d071eff0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_21b3aac42a54b89fe032e8a8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.734375;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_8f83968f66bea7163422d280.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.872000;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_9777935cf3b0b4c79703b438.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;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_e1dad978384d4d28dbf54eeb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.878418;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);}
.v2{vertical-align:-23.760001px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:28.511998px;}
.ls1{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000023px;}
.ls9{letter-spacing:14.994139px;}
.lse{letter-spacing:17.999988px;}
.ls11{letter-spacing:18.000000px;}
.lsd{letter-spacing:18.000045px;}
.lsf{letter-spacing:18.000135px;}
.lsa{letter-spacing:22.499988px;}
.ls5{letter-spacing:22.500002px;}
.ls8{letter-spacing:27.000002px;}
.ls0{letter-spacing:29.976541px;}
.ls3{letter-spacing:29.988283px;}
.lsb{letter-spacing:31.499988px;}
.ls4{letter-spacing:31.500002px;}
.ls7{letter-spacing:36.000002px;}
.ls6{letter-spacing:40.500002px;}
.ls2{letter-spacing:49.489075px;}
.ls10{letter-spacing:157.500000px;}
.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;}
}
.ws0{word-spacing:-33.000001px;}
.ws1{word-spacing:-29.999999px;}
.ws6{word-spacing:-18.000000px;}
.ws76{word-spacing:-16.500000px;}
.ws57{word-spacing:-15.000000px;}
.ws4e{word-spacing:-0.072000px;}
.ws96{word-spacing:-0.024743px;}
.wsbd{word-spacing:-0.000147px;}
.ws6b{word-spacing:-0.000035px;}
.ws4a{word-spacing:-0.000034px;}
.ws56{word-spacing:-0.000024px;}
.ws3e{word-spacing:-0.000023px;}
.wsc5{word-spacing:-0.000013px;}
.wsb{word-spacing:-0.000012px;}
.ws6d{word-spacing:-0.000010px;}
.wsb4{word-spacing:-0.000003px;}
.ws44{word-spacing:-0.000001px;}
.ws5{word-spacing:0.000000px;}
.ws14{word-spacing:0.000002px;}
.ws28{word-spacing:0.000011px;}
.wsba{word-spacing:0.000012px;}
.ws16{word-spacing:0.000022px;}
.ws17{word-spacing:0.000033px;}
.ws7c{word-spacing:4.476561px;}
.wsb9{word-spacing:4.499965px;}
.ws70{word-spacing:4.499966px;}
.ws18{word-spacing:4.499977px;}
.ws6e{word-spacing:4.499983px;}
.wsb8{word-spacing:4.499986px;}
.ws1b{word-spacing:4.499988px;}
.wsd{word-spacing:4.499989px;}
.ws5a{word-spacing:4.499997px;}
.wsbb{word-spacing:4.499999px;}
.wsc{word-spacing:4.500000px;}
.ws69{word-spacing:4.500001px;}
.ws48{word-spacing:4.500002px;}
.ws55{word-spacing:4.500010px;}
.ws6c{word-spacing:4.500012px;}
.ws2b{word-spacing:4.500022px;}
.ws40{word-spacing:4.500033px;}
.ws4{word-spacing:8.954362px;}
.ws2{word-spacing:8.954419px;}
.ws83{word-spacing:8.954428px;}
.ws3{word-spacing:8.954522px;}
.ws93{word-spacing:8.972671px;}
.ws9d{word-spacing:8.999964px;}
.ws4d{word-spacing:8.999965px;}
.ws54{word-spacing:8.999967px;}
.ws8{word-spacing:8.999977px;}
.ws6f{word-spacing:8.999978px;}
.ws9e{word-spacing:8.999986px;}
.ws9c{word-spacing:8.999987px;}
.ws2f{word-spacing:8.999988px;}
.ws74{word-spacing:8.999997px;}
.ws10{word-spacing:8.999998px;}
.wsf{word-spacing:9.000000px;}
.wsac{word-spacing:9.000002px;}
.ws2e{word-spacing:9.000011px;}
.wsaf{word-spacing:9.000022px;}
.wsa3{word-spacing:9.000023px;}
.ws4c{word-spacing:9.000033px;}
.ws8b{word-spacing:13.464843px;}
.ws77{word-spacing:13.475257px;}
.ws51{word-spacing:13.499966px;}
.ws12{word-spacing:13.499977px;}
.wsb0{word-spacing:13.499986px;}
.ws9{word-spacing:13.499987px;}
.ws31{word-spacing:13.499988px;}
.ws5c{word-spacing:13.499998px;}
.ws22{word-spacing:13.499999px;}
.ws19{word-spacing:13.500000px;}
.ws75{word-spacing:13.500002px;}
.ws20{word-spacing:13.500011px;}
.ws9f{word-spacing:13.500020px;}
.ws46{word-spacing:13.500022px;}
.ws65{word-spacing:13.500033px;}
.ws79{word-spacing:17.976564px;}
.ws41{word-spacing:17.999965px;}
.ws1c{word-spacing:17.999977px;}
.wsb2{word-spacing:17.999987px;}
.wse{word-spacing:17.999988px;}
.wsa2{word-spacing:17.999990px;}
.ws66{word-spacing:17.999998px;}
.wsa{word-spacing:18.000000px;}
.wsc8{word-spacing:18.000002px;}
.ws21{word-spacing:18.000011px;}
.wsa4{word-spacing:18.000022px;}
.ws4b{word-spacing:18.000033px;}
.ws89{word-spacing:22.464844px;}
.ws91{word-spacing:22.475255px;}
.ws92{word-spacing:22.476563px;}
.ws5d{word-spacing:22.499966px;}
.ws35{word-spacing:22.499977px;}
.ws26{word-spacing:22.499978px;}
.ws32{word-spacing:22.499988px;}
.wsbc{word-spacing:22.499997px;}
.ws11{word-spacing:22.500000px;}
.wsa0{word-spacing:22.500002px;}
.ws23{word-spacing:22.500011px;}
.ws63{word-spacing:22.500034px;}
.ws82{word-spacing:26.976560px;}
.wsb3{word-spacing:26.999965px;}
.ws5b{word-spacing:26.999976px;}
.ws4f{word-spacing:26.999977px;}
.ws61{word-spacing:26.999987px;}
.ws47{word-spacing:26.999988px;}
.ws64{word-spacing:26.999997px;}
.ws71{word-spacing:26.999999px;}
.ws15{word-spacing:27.000000px;}
.ws53{word-spacing:27.000011px;}
.wsa9{word-spacing:27.000022px;}
.ws9a{word-spacing:31.454427px;}
.ws99{word-spacing:31.454429px;}
.ws7d{word-spacing:31.457014px;}
.ws86{word-spacing:31.464843px;}
.ws81{word-spacing:31.475256px;}
.wsb7{word-spacing:31.499966px;}
.ws49{word-spacing:31.499976px;}
.wsae{word-spacing:31.499977px;}
.ws30{word-spacing:31.499988px;}
.wsa6{word-spacing:31.499997px;}
.ws13{word-spacing:31.499999px;}
.ws43{word-spacing:31.500000px;}
.ws52{word-spacing:31.500002px;}
.wsa7{word-spacing:31.500011px;}
.ws60{word-spacing:31.500022px;}
.wscd{word-spacing:31.500023px;}
.ws9b{word-spacing:31.500033px;}
.ws94{word-spacing:35.975257px;}
.wsa8{word-spacing:35.999965px;}
.wsa5{word-spacing:35.999977px;}
.ws42{word-spacing:35.999988px;}
.wsaa{word-spacing:35.999999px;}
.ws58{word-spacing:36.000000px;}
.ws59{word-spacing:40.499977px;}
.wscc{word-spacing:40.499979px;}
.ws73{word-spacing:40.499987px;}
.ws5f{word-spacing:40.499988px;}
.wsad{word-spacing:40.499997px;}
.wsa1{word-spacing:40.499999px;}
.ws1a{word-spacing:40.500000px;}
.wsc9{word-spacing:40.500002px;}
.ws3b{word-spacing:40.500011px;}
.wsb5{word-spacing:44.999964px;}
.ws45{word-spacing:44.999988px;}
.wsb6{word-spacing:44.999997px;}
.ws29{word-spacing:45.000000px;}
.ws37{word-spacing:49.499988px;}
.ws7{word-spacing:49.500000px;}
.ws97{word-spacing:53.964842px;}
.ws8c{word-spacing:53.975257px;}
.ws50{word-spacing:53.999977px;}
.ws33{word-spacing:53.999989px;}
.ws72{word-spacing:53.999999px;}
.wsab{word-spacing:54.000000px;}
.ws8d{word-spacing:58.475257px;}
.ws1e{word-spacing:58.499977px;}
.ws5e{word-spacing:58.500000px;}
.wsc3{word-spacing:58.500002px;}
.wsc4{word-spacing:58.500012px;}
.ws88{word-spacing:62.975257px;}
.ws98{word-spacing:62.976560px;}
.ws7a{word-spacing:62.976562px;}
.ws67{word-spacing:63.000000px;}
.ws8a{word-spacing:71.975257px;}
.wsb1{word-spacing:72.000000px;}
.ws62{word-spacing:72.000033px;}
.ws85{word-spacing:74.963536px;}
.ws8f{word-spacing:76.472671px;}
.ws24{word-spacing:76.500000px;}
.ws7b{word-spacing:80.975257px;}
.ws6a{word-spacing:80.999978px;}
.ws95{word-spacing:85.467474px;}
.ws84{word-spacing:89.967475px;}
.ws7f{word-spacing:89.975257px;}
.wscb{word-spacing:90.000000px;}
.ws78{word-spacing:94.464841px;}
.ws68{word-spacing:94.499988px;}
.wsca{word-spacing:94.499997px;}
.ws80{word-spacing:98.975257px;}
.wsc1{word-spacing:121.500000px;}
.wsbe{word-spacing:126.000000px;}
.wsc0{word-spacing:139.500000px;}
.ws90{word-spacing:143.975258px;}
.ws7e{word-spacing:152.970038px;}
.wsbf{word-spacing:152.999978px;}
.ws87{word-spacing:157.467475px;}
.ws8e{word-spacing:188.970038px;}
.wsc7{word-spacing:202.500000px;}
.wsc6{word-spacing:206.999988px;}
.wsc2{word-spacing:224.999999px;}
.ws1f{word-spacing:1755.040904px;}
.ws27{word-spacing:1802.958873px;}
.ws2a{word-spacing:1811.044811px;}
.ws25{word-spacing:1851.017467px;}
.ws3c{word-spacing:1951.001842px;}
.ws38{word-spacing:1961.759655px;}
.ws34{word-spacing:2043.111217px;}
.ws2c{word-spacing:2090.747935px;}
.ws3a{word-spacing:2122.951061px;}
.ws3f{word-spacing:2162.958873px;}
.ws1d{word-spacing:2166.826060px;}
.ws2d{word-spacing:2214.779186px;}
.ws36{word-spacing:2221.564343px;}
.ws3d{word-spacing:2286.919810px;}
.ws39{word-spacing:2294.794811px;}
._66{margin-left:-18.000000px;}
._2{margin-left:-9.435577px;}
._42{margin-left:-8.263206px;}
._60{margin-left:-6.609375px;}
._6{margin-left:-5.450536px;}
._3{margin-left:-3.972657px;}
._0{margin-left:-2.633178px;}
._1{margin-left:-1.018042px;}
._40{width:1.728402px;}
._6f{width:3.446632px;}
._8{width:17.999998px;}
._6e{width:19.018065px;}
._6d{width:20.931011px;}
._7{width:22.499999px;}
._68{width:25.523438px;}
._c{width:27.000002px;}
._67{width:29.566406px;}
._5{width:31.500002px;}
._b{width:35.999999px;}
._9{width:40.500002px;}
._6c{width:43.355528px;}
._a{width:45.000002px;}
._e{width:49.500002px;}
._d{width:53.999986px;}
._3b{width:57.869819px;}
._62{width:59.130279px;}
._63{width:62.648440px;}
._64{width:63.703118px;}
._50{width:67.500055px;}
._4{width:72.000002px;}
._1f{width:75.486215px;}
._65{width:76.499999px;}
._19{width:81.000002px;}
._6a{width:85.499999px;}
._2f{width:89.999999px;}
._69{width:94.499988px;}
._52{width:103.115487px;}
._36{width:115.353402px;}
._6b{width:116.999999px;}
._12{width:121.681525px;}
._72{width:134.961300px;}
._70{width:139.383895px;}
._5d{width:159.474494px;}
._71{width:175.500002px;}
._73{width:246.970436px;}
._1e{width:248.029551px;}
._3e{width:267.228403px;}
._33{width:362.009654px;}
._1c{width:363.451058px;}
._51{width:370.447153px;}
._4d{width:375.790903px;}
._59{width:412.704964px;}
._5b{width:417.345590px;}
._20{width:424.763559px;}
._5a{width:481.329792px;}
._61{width:505.664058px;}
._55{width:548.091683px;}
._3a{width:557.232310px;}
._3c{width:580.716684px;}
._28{width:601.494027px;}
._11{width:611.232308px;}
._10{width:687.380745px;}
._53{width:802.375351px;}
._37{width:824.205160px;}
._58{width:836.583871px;}
._35{width:840.133166px;}
._f{width:855.566757px;}
._5e{width:910.337972px;}
._2a{width:941.138560px;}
._32{width:1017.076059px;}
._30{width:1053.111214px;}
._25{width:1101.204965px;}
._31{width:1159.072153px;}
._47{width:1185.017466px;}
._46{width:1193.103403px;}
._34{width:1234.130749px;}
._14{width:1239.826060px;}
._39{width:1246.296130px;}
._23{width:1263.626668px;}
._57{width:1317.099499px;}
._15{width:1336.365124px;}
._29{width:1341.251841px;}
._5c{width:1365.087779px;}
._13{width:1387.271371px;}
._56{width:1521.673718px;}
._16{width:1529.021373px;}
._21{width:1532.815269px;}
._41{width:1537.703477px;}
._1b{width:1541.783090px;}
._26{width:1549.201060px;}
._1a{width:1551.943246px;}
._4e{width:1615.154184px;}
._17{width:1620.990123px;}
._18{width:1628.900280px;}
._3f{width:1657.025278px;}
._2b{width:1670.034408px;}
._2d{width:1691.126841px;}
._24{width:1741.400108px;}
._4f{width:1747.306529px;}
._5f{width:1749.240122px;}
._4b{width:1758.661998px;}
._43{width:1776.275277px;}
._27{width:1851.017467px;}
._45{width:1876.892467px;}
._48{width:1880.970592px;}
._2e{width:1890.919809px;}
._1d{width:1961.545178px;}
._4c{width:1966.962777px;}
._2c{width:1996.915904px;}
._3d{width:1999.060435px;}
._38{width:2046.978405px;}
._22{width:2058.966686px;}
._49{width:2098.869029px;}
._4a{width:2122.880747px;}
._44{width:2190.872936px;}
._54{width:2195.021373px;}
.fc2{color:rgb(17,85,204);}
.fc1{color:rgb(102,102,102);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs7{font-size:43.200002px;}
.fs6{font-size:59.999999px;}
.fs9{font-size:66.000002px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:83.999997px;}
.fs5{font-size:96.000003px;}
.fs0{font-size:108.000000px;}
.fs2{font-size:119.999997px;}
.fs1{font-size:132.000003px;}
.fsa{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y22b{bottom:12.285000px;}
.y24d{bottom:12.285006px;}
.y22d{bottom:32.535000px;}
.y24c{bottom:32.535006px;}
.y30f{bottom:36.658594px;}
.y28d{bottom:36.670312px;}
.yf3{bottom:36.674707px;}
.y21a{bottom:36.676171px;}
.yff{bottom:36.676173px;}
.y1b8{bottom:36.679102px;}
.y232{bottom:52.785000px;}
.y24b{bottom:52.785006px;}
.y231{bottom:73.035000px;}
.y24a{bottom:73.035006px;}
.yfe{bottom:76.499415px;}
.yfb{bottom:76.500885px;}
.y219{bottom:76.502340px;}
.y30e{bottom:76.514055px;}
.y230{bottom:93.285000px;}
.y23f{bottom:113.535000px;}
.y19e{bottom:116.054655px;}
.y2e6{bottom:116.057580px;}
.y51{bottom:116.745149px;}
.y244{bottom:120.521490px;}
.y218{bottom:122.366490px;}
.y130{bottom:122.369415px;}
.y17d{bottom:123.494415px;}
.y16e{bottom:124.619415px;}
.y200{bottom:127.991490px;}
.yfa{bottom:127.994415px;}
.y2ad{bottom:127.997340px;}
.yd5{bottom:131.369415px;}
.y1a5{bottom:132.494415px;}
.y75{bottom:132.495149px;}
.y2cd{bottom:132.497340px;}
.y23e{bottom:133.785000px;}
.y25b{bottom:138.116490px;}
.y93{bottom:138.120150px;}
.yb7{bottom:139.244415px;}
.yfd{bottom:140.369415px;}
.y1e8{bottom:141.491490px;}
.y50{bottom:145.995149px;}
.y2e9{bottom:145.997340px;}
.y141{bottom:147.119415px;}
.y30c{bottom:148.247340px;}
.y18f{bottom:151.619415px;}
.y277{bottom:152.741490px;}
.y28b{bottom:152.747340px;}
.y1fe{bottom:153.866490px;}
.y23d{bottom:154.035000px;}
.y217{bottom:154.991490px;}
.y12f{bottom:154.994415px;}
.y2f8{bottom:154.997340px;}
.y17c{bottom:156.119415px;}
.y16d{bottom:157.244415px;}
.y1d6{bottom:160.616490px;}
.yf9{bottom:160.619415px;}
.y2ac{bottom:160.622340px;}
.y74{bottom:161.745149px;}
.y26f{bottom:162.866490px;}
.y92{bottom:162.870149px;}
.yb6{bottom:163.994414px;}
.yd4{bottom:163.994415px;}
.y229{bottom:165.116490px;}
.y1a4{bottom:165.119415px;}
.y19c{bottom:167.369415px;}
.y25a{bottom:170.741490px;}
.y23c{bottom:174.285000px;}
.y26c{bottom:175.241490px;}
.y4f{bottom:175.245149px;}
.y2b2{bottom:175.247340px;}
.y2e8{bottom:178.622340px;}
.y30b{bottom:180.872340px;}
.y1b6{bottom:181.994415px;}
.yfc{bottom:183.119415px;}
.y1e7{bottom:184.241490px;}
.y15d{bottom:184.244415px;}
.y273{bottom:185.366490px;}
.y1fd{bottom:186.491490px;}
.y216{bottom:187.616490px;}
.y12e{bottom:187.619415px;}
.y2f7{bottom:187.622340px;}
.y17b{bottom:188.744415px;}
.y140{bottom:189.869415px;}
.y73{bottom:190.995150px;}
.y91{bottom:192.120150px;}
.y1d5{bottom:193.241490px;}
.yb5{bottom:193.244414px;}
.yf8{bottom:193.244415px;}
.y2ab{bottom:193.247340px;}
.y23b{bottom:194.535000px;}
.y276{bottom:195.491490px;}
.yd3{bottom:196.619415px;}
.y228{bottom:197.741490px;}
.y19b{bottom:199.994415px;}
.yf1{bottom:201.119415px;}
.y259{bottom:203.366490px;}
.y4e{bottom:204.120151px;}
.y1b0{bottom:204.494415px;}
.y8{bottom:204.509925px;}
.y26e{bottom:205.616490px;}
.y26b{bottom:207.866490px;}
.y2cc{bottom:207.872340px;}
.y2e7{bottom:211.247340px;}
.y30a{bottom:213.497340px;}
.y1b5{bottom:214.619415px;}
.y23a{bottom:214.785000px;}
.y72{bottom:215.745149px;}
.y15c{bottom:216.869415px;}
.y90{bottom:216.870150px;}
.y28a{bottom:217.991490px;}
.y2b1{bottom:217.997340px;}
.y1fc{bottom:219.116490px;}
.y215{bottom:220.241490px;}
.y12d{bottom:220.244415px;}
.y2f6{bottom:220.247340px;}
.y17a{bottom:221.369415px;}
.yb4{bottom:222.494415px;}
.y1d4{bottom:225.866490px;}
.yf7{bottom:225.869415px;}
.y30{bottom:225.870150px;}
.y2aa{bottom:225.872340px;}
.y1e6{bottom:226.991490px;}
.y272{bottom:228.116490px;}
.yd2{bottom:229.244415px;}
.y227{bottom:230.366490px;}
.y13f{bottom:232.619415px;}
.yf0{bottom:233.744415px;}
.y11{bottom:234.734970px;}
.y239{bottom:235.035000px;}
.y258{bottom:235.991490px;}
.y275{bottom:238.241490px;}
.y26a{bottom:240.491490px;}
.y1a3{bottom:240.494415px;}
.y2cb{bottom:240.497340px;}
.y8f{bottom:241.620150px;}
.y4d{bottom:243.870149px;}
.y71{bottom:244.995149px;}
.y309{bottom:246.122340px;}
.yb3{bottom:247.244414px;}
.y1af{bottom:247.244415px;}
.y26d{bottom:248.366490px;}
.y15b{bottom:249.494415px;}
.y289{bottom:250.616490px;}
.y1fb{bottom:251.741490px;}
.y116{bottom:251.744415px;}
.y12c{bottom:252.869415px;}
.y2f5{bottom:252.872340px;}
.y179{bottom:253.994415px;}
.y16c{bottom:255.119415px;}
.y238{bottom:255.285000px;}
.y1d3{bottom:258.491490px;}
.yf6{bottom:258.494415px;}
.y2a9{bottom:258.497340px;}
.y2b0{bottom:260.747340px;}
.yd1{bottom:261.869415px;}
.y226{bottom:262.991490px;}
.y19a{bottom:265.244415px;}
.yef{bottom:266.369415px;}
.y8e{bottom:266.370149px;}
.y1e5{bottom:269.741490px;}
.y271{bottom:270.866490px;}
.y14f{bottom:271.994415px;}
.y269{bottom:273.116490px;}
.y4c{bottom:273.120149px;}
.y2ca{bottom:273.122340px;}
.y70{bottom:274.245150px;}
.y13e{bottom:275.369415px;}
.y237{bottom:275.535000px;}
.y255{bottom:275.771490px;}
.yb2{bottom:276.494415px;}
.y308{bottom:278.747340px;}
.y1b4{bottom:279.869415px;}
.y274{bottom:280.991490px;}
.y15a{bottom:282.119415px;}
.y288{bottom:283.241490px;}
.y1a2{bottom:283.244415px;}
.y214{bottom:285.491490px;}
.y12b{bottom:285.494415px;}
.y2f4{bottom:285.497340px;}
.y178{bottom:286.619415px;}
.y16b{bottom:287.744415px;}
.y1ae{bottom:289.994415px;}
.y1d2{bottom:291.116490px;}
.yf5{bottom:291.119415px;}
.y2f{bottom:291.120150px;}
.y2a8{bottom:291.122340px;}
.y18e{bottom:292.244415px;}
.yd0{bottom:294.494415px;}
.y225{bottom:295.616490px;}
.y8d{bottom:295.620150px;}
.y236{bottom:295.785000px;}
.y199{bottom:297.869415px;}
.y6f{bottom:298.995149px;}
.yb1{bottom:301.244414px;}
.y1e4{bottom:302.366490px;}
.y4b{bottom:302.370149px;}
.y248{bottom:302.771490px;}
.y2af{bottom:303.497340px;}
.y268{bottom:305.741490px;}
.y2c9{bottom:305.747340px;}
.y307{bottom:311.372340px;}
.y1b3{bottom:312.494415px;}
.y270{bottom:313.616490px;}
.y14e{bottom:314.744415px;}
.y235{bottom:316.035000px;}
.y213{bottom:318.116490px;}
.y12a{bottom:318.119415px;}
.y2f3{bottom:318.122340px;}
.y16a{bottom:320.369415px;}
.y8c{bottom:320.370150px;}
.y1d1{bottom:323.741490px;}
.yee{bottom:323.744415px;}
.y2e{bottom:323.745150px;}
.y2a7{bottom:323.747340px;}
.y1a1{bottom:325.994415px;}
.y1fa{bottom:327.116490px;}
.ycf{bottom:327.119415px;}
.y224{bottom:328.241490px;}
.y6e{bottom:328.245149px;}
.yb0{bottom:330.494414px;}
.y198{bottom:330.494415px;}
.y4a{bottom:331.620150px;}
.y1ad{bottom:332.744415px;}
.y1e3{bottom:334.991490px;}
.y18d{bottom:334.994415px;}
.y234{bottom:336.285000px;}
.y257{bottom:336.521490px;}
.y115{bottom:337.244415px;}
.y267{bottom:338.366490px;}
.y2c8{bottom:338.372340px;}
.y7{bottom:340.769925px;}
.y306{bottom:343.997340px;}
.y1b2{bottom:345.119415px;}
.y8b{bottom:345.120150px;}
.y10{bottom:346.244970px;}
.y2ae{bottom:346.247340px;}
.y287{bottom:348.491490px;}
.y2df{bottom:348.497340px;}
.y212{bottom:350.741490px;}
.y129{bottom:350.744415px;}
.y2f2{bottom:350.747340px;}
.y177{bottom:351.869415px;}
.y169{bottom:352.994415px;}
.y1d0{bottom:356.366490px;}
.yed{bottom:356.369415px;}
.y49{bottom:356.370149px;}
.y2d{bottom:356.370150px;}
.y2a6{bottom:356.372340px;}
.y247{bottom:356.535000px;}
.y14d{bottom:357.494415px;}
.y6d{bottom:357.495149px;}
.yaf{bottom:359.744415px;}
.y223{bottom:360.866490px;}
.y13d{bottom:360.869415px;}
.y197{bottom:363.119415px;}
.y1e2{bottom:367.616490px;}
.y1a0{bottom:368.744415px;}
.y1f9{bottom:369.866490px;}
.y114{bottom:369.869415px;}
.yf{bottom:369.869970px;}
.y8a{bottom:369.870149px;}
.y266{bottom:370.991490px;}
.y2c7{bottom:370.997340px;}
.y6{bottom:373.394925px;}
.y1ac{bottom:375.494415px;}
.y305{bottom:376.622340px;}
.y246{bottom:376.785000px;}
.y18c{bottom:377.744415px;}
.y286{bottom:381.116490px;}
.y2de{bottom:381.122340px;}
.y211{bottom:383.366490px;}
.y128{bottom:383.369415px;}
.y2f1{bottom:383.372340px;}
.yae{bottom:384.494414px;}
.y176{bottom:384.494415px;}
.y168{bottom:385.619415px;}
.y48{bottom:385.620150px;}
.y6c{bottom:386.745149px;}
.y1cf{bottom:388.991490px;}
.yec{bottom:388.994415px;}
.y2c{bottom:388.995150px;}
.y2a5{bottom:388.997340px;}
.y159{bottom:390.119415px;}
.yce{bottom:392.369415px;}
.ye{bottom:393.269971px;}
.y222{bottom:393.491490px;}
.y196{bottom:395.744415px;}
.y245{bottom:397.035000px;}
.y256{bottom:397.271490px;}
.y89{bottom:399.120150px;}
.y14c{bottom:400.244415px;}
.y113{bottom:402.494415px;}
.y265{bottom:403.616490px;}
.y13c{bottom:403.619415px;}
.y2c6{bottom:403.622340px;}
.y304{bottom:409.247340px;}
.y1b1{bottom:410.369415px;}
.y47{bottom:410.370149px;}
.y19f{bottom:411.494415px;}
.y1f8{bottom:412.616490px;}
.yad{bottom:413.369416px;}
.y285{bottom:413.741490px;}
.y2dd{bottom:413.747340px;}
.y210{bottom:415.991490px;}
.y127{bottom:415.994415px;}
.y6b{bottom:415.995150px;}
.y2f0{bottom:415.997340px;}
.y175{bottom:417.119415px;}
.y167{bottom:418.244415px;}
.y18b{bottom:420.494415px;}
.y1ce{bottom:421.616490px;}
.yeb{bottom:421.619415px;}
.y2b{bottom:421.620150px;}
.y2a4{bottom:421.622340px;}
.y88{bottom:423.870150px;}
.ycd{bottom:424.994415px;}
.y221{bottom:426.116490px;}
.y195{bottom:428.369415px;}
.y1e1{bottom:432.866490px;}
.y158{bottom:432.869415px;}
.y112{bottom:435.119415px;}
.y264{bottom:436.241490px;}
.y13b{bottom:436.244415px;}
.y2c5{bottom:436.247340px;}
.y46{bottom:439.620149px;}
.y6a{bottom:440.745149px;}
.y303{bottom:441.872340px;}
.y14b{bottom:442.994415px;}
.y242{bottom:444.521490px;}
.y284{bottom:446.366490px;}
.y2dc{bottom:446.372340px;}
.y5{bottom:448.499925px;}
.y20f{bottom:448.616490px;}
.y126{bottom:448.619415px;}
.y87{bottom:448.620149px;}
.y2ef{bottom:448.622340px;}
.y174{bottom:449.744415px;}
.y166{bottom:450.869415px;}
.yac{bottom:453.120149px;}
.y1cd{bottom:454.241490px;}
.yea{bottom:454.244415px;}
.y2a{bottom:454.245150px;}
.y2a3{bottom:454.247340px;}
.y1f7{bottom:455.366490px;}
.ycc{bottom:457.619415px;}
.y220{bottom:458.741490px;}
.y194{bottom:460.994415px;}
.y18a{bottom:463.244415px;}
.y243{bottom:464.771490px;}
.y1e0{bottom:465.491490px;}
.y111{bottom:467.744415px;}
.y263{bottom:468.866490px;}
.y13a{bottom:468.869415px;}
.y45{bottom:468.870150px;}
.y2c4{bottom:468.872340px;}
.y69{bottom:469.995149px;}
.y302{bottom:474.497340px;}
.y14a{bottom:475.619415px;}
.y86{bottom:477.870150px;}
.y283{bottom:478.991490px;}
.y2db{bottom:478.997340px;}
.y20e{bottom:481.241490px;}
.y125{bottom:481.244415px;}
.y2ee{bottom:481.247340px;}
.yab{bottom:482.370149px;}
.y1cc{bottom:486.866490px;}
.ye9{bottom:486.869415px;}
.y29{bottom:486.870150px;}
.y2a2{bottom:486.872340px;}
.ycb{bottom:490.244415px;}
.y193{bottom:493.619415px;}
.y44{bottom:493.620149px;}
.yd{bottom:497.069970px;}
.y1df{bottom:498.116490px;}
.y68{bottom:499.245150px;}
.y110{bottom:500.369415px;}
.y262{bottom:501.491490px;}
.y139{bottom:501.494415px;}
.y2c3{bottom:501.497340px;}
.y4{bottom:502.499969px;}
.y85{bottom:502.620149px;}
.y1ab{bottom:503.744415px;}
.y241{bottom:505.271490px;}
.y189{bottom:505.994415px;}
.y301{bottom:507.122340px;}
.y149{bottom:508.244415px;}
.y282{bottom:511.616490px;}
.yaa{bottom:511.620150px;}
.y2da{bottom:511.622340px;}
.y20d{bottom:513.866490px;}
.y124{bottom:513.869415px;}
.y2ed{bottom:513.872340px;}
.y157{bottom:518.369415px;}
.y1cb{bottom:519.491490px;}
.yf4{bottom:519.494415px;}
.y28{bottom:519.495150px;}
.y2a1{bottom:519.497340px;}
.yca{bottom:522.869415px;}
.y43{bottom:522.870150px;}
.y67{bottom:523.995149px;}
.y165{bottom:526.244415px;}
.y1de{bottom:530.741490px;}
.y84{bottom:531.870150px;}
.y10f{bottom:532.994415px;}
.y21f{bottom:534.116490px;}
.y138{bottom:534.119415px;}
.y2c2{bottom:534.122340px;}
.y30d{bottom:534.842341px;}
.ya9{bottom:536.370149px;}
.yc{bottom:539.474969px;}
.y300{bottom:539.747340px;}
.y1f6{bottom:540.866490px;}
.y233{bottom:542.396490px;}
.y281{bottom:544.241490px;}
.y2d9{bottom:544.247340px;}
.y20c{bottom:546.491490px;}
.y123{bottom:546.494415px;}
.y2ec{bottom:546.497340px;}
.y42{bottom:547.620149px;}
.y188{bottom:548.744415px;}
.y1ca{bottom:552.116490px;}
.ye8{bottom:552.119415px;}
.y27{bottom:552.120150px;}
.y2a0{bottom:552.122340px;}
.y66{bottom:553.245149px;}
.yc9{bottom:555.494415px;}
.y173{bottom:556.619415px;}
.y83{bottom:556.620150px;}
.y192{bottom:558.869415px;}
.y3{bottom:559.244970px;}
.y156{bottom:561.119415px;}
.y1dd{bottom:563.366490px;}
.y10e{bottom:565.619415px;}
.ya8{bottom:565.620149px;}
.y261{bottom:566.741490px;}
.y137{bottom:566.744415px;}
.y2c1{bottom:566.747340px;}
.y164{bottom:568.994415px;}
.y2ff{bottom:572.372340px;}
.y21e{bottom:576.866490px;}
.y41{bottom:576.870150px;}
.y2d8{bottom:576.872340px;}
.y20b{bottom:579.116490px;}
.y122{bottom:579.119415px;}
.y2eb{bottom:579.122340px;}
.y82{bottom:581.370149px;}
.y65{bottom:582.495149px;}
.y1f5{bottom:583.616490px;}
.y148{bottom:583.619415px;}
.yb{bottom:583.769969px;}
.y1c9{bottom:584.741490px;}
.ye7{bottom:584.744415px;}
.y26{bottom:584.745150px;}
.y29f{bottom:584.747340px;}
.yc8{bottom:588.119415px;}
.y1aa{bottom:589.244415px;}
.y187{bottom:591.494415px;}
.ya7{bottom:594.870149px;}
.y1dc{bottom:595.991490px;}
.y10d{bottom:598.244415px;}
.y260{bottom:599.366490px;}
.y136{bottom:599.369415px;}
.y2c0{bottom:599.372340px;}
.y254{bottom:599.771490px;}
.y40{bottom:601.620149px;}
.y155{bottom:603.869415px;}
.y2fe{bottom:604.997340px;}
.y280{bottom:609.491490px;}
.y2d7{bottom:609.497340px;}
.y81{bottom:610.620150px;}
.y20a{bottom:611.741490px;}
.y121{bottom:611.744415px;}
.y64{bottom:611.745149px;}
.y2ea{bottom:611.747340px;}
.y1ff{bottom:617.366490px;}
.ye6{bottom:617.369415px;}
.y25{bottom:617.370150px;}
.y29e{bottom:617.372340px;}
.y2{bottom:618.869970px;}
.y21d{bottom:619.616490px;}
.yc7{bottom:620.744415px;}
.y191{bottom:624.119415px;}
.ya6{bottom:624.120150px;}
.y1f4{bottom:626.366490px;}
.y147{bottom:626.369415px;}
.y1db{bottom:628.616490px;}
.y10c{bottom:630.869415px;}
.y3f{bottom:630.870149px;}
.ya{bottom:631.019969px;}
.y135{bottom:631.994415px;}
.y2bf{bottom:631.997340px;}
.y186{bottom:634.244415px;}
.y80{bottom:635.370150px;}
.y2fd{bottom:637.622340px;}
.y253{bottom:640.271490px;}
.y63{bottom:640.995149px;}
.y25f{bottom:642.116490px;}
.y172{bottom:642.119415px;}
.y2d6{bottom:642.122340px;}
.y209{bottom:644.366490px;}
.y120{bottom:644.369415px;}
.y154{bottom:646.619415px;}
.ya5{bottom:648.870149px;}
.y1c8{bottom:649.991490px;}
.ye5{bottom:649.994415px;}
.y24{bottom:649.995150px;}
.y29d{bottom:649.997340px;}
.yc6{bottom:653.369415px;}
.y163{bottom:654.494415px;}
.y190{bottom:656.744415px;}
.y3e{bottom:660.120149px;}
.y1da{bottom:661.241490px;}
.y21c{bottom:662.366490px;}
.y10b{bottom:663.494415px;}
.y2e4{bottom:663.497340px;}
.y240{bottom:663.896490px;}
.y2be{bottom:664.622340px;}
.y1f3{bottom:669.116490px;}
.y146{bottom:669.119415px;}
.y62{bottom:670.245149px;}
.y2fc{bottom:670.247340px;}
.y27f{bottom:674.741490px;}
.y1a9{bottom:674.744415px;}
.y2d5{bottom:674.747340px;}
.y208{bottom:676.991490px;}
.y11f{bottom:676.994415px;}
.y252{bottom:677.396490px;}
.ya4{bottom:678.120150px;}
.y1c7{bottom:682.616490px;}
.ye4{bottom:682.619415px;}
.y23{bottom:682.620150px;}
.y29c{bottom:682.622340px;}
.y25e{bottom:684.866490px;}
.y171{bottom:684.869415px;}
.yc5{bottom:685.994415px;}
.y153{bottom:689.369415px;}
.y3d{bottom:689.370150px;}
.y1d9{bottom:693.866490px;}
.y10a{bottom:696.119415px;}
.y2e3{bottom:696.122340px;}
.y162{bottom:697.244415px;}
.y2bd{bottom:697.247340px;}
.y61{bottom:699.495149px;}
.ya3{bottom:702.870149px;}
.y2fb{bottom:702.872340px;}
.y21b{bottom:705.116490px;}
.y1{bottom:705.630014px;}
.y27e{bottom:707.366490px;}
.y134{bottom:707.369415px;}
.y2d4{bottom:707.372340px;}
.y207{bottom:709.616490px;}
.y11e{bottom:709.619415px;}
.y1f2{bottom:711.866490px;}
.y145{bottom:711.869415px;}
.y3c{bottom:714.120149px;}
.y1c6{bottom:715.241490px;}
.ye3{bottom:715.244415px;}
.y22{bottom:715.245150px;}
.y29b{bottom:715.247340px;}
.y1a8{bottom:717.494415px;}
.y251{bottom:717.896490px;}
.yc4{bottom:718.619415px;}
.y185{bottom:719.744415px;}
.y1d8{bottom:726.491490px;}
.y25d{bottom:727.616490px;}
.y170{bottom:727.619415px;}
.y109{bottom:728.744415px;}
.y60{bottom:728.745149px;}
.y2e2{bottom:728.747340px;}
.y2bc{bottom:729.872340px;}
.y310{bottom:730.592341px;}
.y152{bottom:732.119415px;}
.ya2{bottom:732.120150px;}
.y2fa{bottom:735.497340px;}
.y250{bottom:738.146490px;}
.y27d{bottom:739.991490px;}
.y161{bottom:739.994415px;}
.y2d3{bottom:739.997340px;}
.y11d{bottom:742.244415px;}
.y7f{bottom:742.995151px;}
.y3b{bottom:743.370149px;}
.y1c5{bottom:747.866490px;}
.ye2{bottom:747.869415px;}
.y21{bottom:747.870150px;}
.y29a{bottom:747.872340px;}
.y133{bottom:750.119415px;}
.yc3{bottom:751.244415px;}
.y184{bottom:752.369415px;}
.y1f1{bottom:754.616490px;}
.y144{bottom:754.619415px;}
.ya1{bottom:756.870149px;}
.y5f{bottom:757.995150px;}
.y1d7{bottom:759.116490px;}
.y1a7{bottom:760.244415px;}
.y108{bottom:761.369415px;}
.y2e1{bottom:761.372340px;}
.y2bb{bottom:762.497340px;}
.y2f9{bottom:768.122340px;}
.y25c{bottom:770.366490px;}
.y16f{bottom:770.369415px;}
.y27c{bottom:772.616490px;}
.y3a{bottom:772.620149px;}
.y2d2{bottom:772.622340px;}
.y11c{bottom:774.869415px;}
.y1c4{bottom:780.491490px;}
.ye1{bottom:780.494415px;}
.y20{bottom:780.495150px;}
.y299{bottom:780.497340px;}
.y7e{bottom:782.370151px;}
.y160{bottom:782.744415px;}
.y5e{bottom:782.745149px;}
.yc2{bottom:783.869415px;}
.y206{bottom:784.991490px;}
.y183{bottom:784.994415px;}
.y22f{bottom:785.396490px;}
.ya0{bottom:786.120149px;}
.y132{bottom:792.869415px;}
.y2ba{bottom:795.122340px;}
.y9{bottom:795.779971px;}
.y1f0{bottom:797.366490px;}
.y143{bottom:797.369415px;}
.y39{bottom:801.870149px;}
.y1a6{bottom:802.994415px;}
.y27b{bottom:805.241490px;}
.y2d1{bottom:805.247340px;}
.y11b{bottom:807.494415px;}
.y5d{bottom:811.995150px;}
.y1c3{bottom:813.116490px;}
.ye0{bottom:813.119415px;}
.y1f{bottom:813.120150px;}
.y298{bottom:813.122340px;}
.y9f{bottom:815.370150px;}
.yc1{bottom:816.494415px;}
.y151{bottom:817.619415px;}
.y7d{bottom:821.745151px;}
.y15f{bottom:825.494415px;}
.y107{bottom:826.619415px;}
.y205{bottom:827.741490px;}
.y2b9{bottom:827.747340px;}
.y38{bottom:831.120149px;}
.y131{bottom:835.619415px;}
.y5c{bottom:836.745149px;}
.y27a{bottom:837.866490px;}
.y2d0{bottom:837.872340px;}
.y1ef{bottom:840.116490px;}
.y142{bottom:840.119415px;}
.y9e{bottom:840.120149px;}
.y1c2{bottom:845.741490px;}
.ydf{bottom:845.744415px;}
.y1e{bottom:845.745150px;}
.y297{bottom:845.747340px;}
.yc0{bottom:849.119415px;}
.y150{bottom:850.244415px;}
.y106{bottom:859.244415px;}
.y24f{bottom:859.646490px;}
.y182{bottom:860.369415px;}
.y37{bottom:860.370149px;}
.y2b8{bottom:860.372340px;}
.y7c{bottom:861.495149px;}
.y5b{bottom:865.995150px;}
.y22e{bottom:866.396490px;}
.y15e{bottom:868.244415px;}
.y9d{bottom:869.370150px;}
.y204{bottom:870.491490px;}
.y2cf{bottom:870.497340px;}
.y1c1{bottom:878.366490px;}
.yde{bottom:878.369415px;}
.y1d{bottom:878.370150px;}
.y296{bottom:878.372340px;}
.y24e{bottom:879.896490px;}
.ybf{bottom:881.744415px;}
.y1ee{bottom:882.866490px;}
.y11a{bottom:882.869415px;}
.y36{bottom:889.620149px;}
.y5a{bottom:890.745149px;}
.y105{bottom:891.869415px;}
.y9c{bottom:894.120149px;}
.y279{bottom:903.116490px;}
.y181{bottom:903.119415px;}
.y2ce{bottom:903.122340px;}
.y22c{bottom:903.521490px;}
.y1c0{bottom:910.991490px;}
.ydd{bottom:910.994415px;}
.y1c{bottom:910.995150px;}
.y295{bottom:910.997340px;}
.y203{bottom:913.241490px;}
.ybe{bottom:914.369415px;}
.y249{bottom:917.021484px;}
.y35{bottom:918.495151px;}
.y59{bottom:919.995149px;}
.y9b{bottom:923.370149px;}
.y22a{bottom:923.771490px;}
.y104{bottom:924.494415px;}
.y1ed{bottom:925.616490px;}
.y119{bottom:925.619415px;}
.y2b7{bottom:925.622340px;}
.y278{bottom:935.741490px;}
.y1bf{bottom:943.616490px;}
.ydc{bottom:943.619415px;}
.y1b{bottom:943.620150px;}
.y294{bottom:943.622340px;}
.y180{bottom:945.869415px;}
.ybd{bottom:946.994415px;}
.y58{bottom:948.870151px;}
.y7b{bottom:949.245149px;}
.y9a{bottom:952.620149px;}
.y202{bottom:955.991490px;}
.y103{bottom:957.119415px;}
.y34{bottom:957.870151px;}
.y1ec{bottom:968.366490px;}
.y118{bottom:968.369415px;}
.y2b6{bottom:968.372340px;}
.y1be{bottom:976.241490px;}
.ydb{bottom:976.244415px;}
.y1a{bottom:976.245150px;}
.y293{bottom:976.247340px;}
.y7a{bottom:978.495149px;}
.y99{bottom:981.870149px;}
.y2e5{bottom:983.376045px;}
.y17f{bottom:988.619415px;}
.y57{bottom:988.620149px;}
.y102{bottom:989.744415px;}
.y33{bottom:997.245148px;}
.y201{bottom:998.741484px;}
.y79{bottom:1007.745146px;}
.y1bd{bottom:1008.866484px;}
.yda{bottom:1008.869414px;}
.y15{bottom:1008.869781px;}
.y19{bottom:1008.870147px;}
.y292{bottom:1008.872343px;}
.y1eb{bottom:1011.116484px;}
.y117{bottom:1011.119414px;}
.y98{bottom:1011.120147px;}
.y2b5{bottom:1011.122343px;}
.y56{bottom:1017.870146px;}
.ybc{bottom:1026.869413px;}
.y17e{bottom:1031.369414px;}
.y97{bottom:1035.870147px;}
.y32{bottom:1036.620148px;}
.y78{bottom:1036.995146px;}
.y1bc{bottom:1041.491484px;}
.yd9{bottom:1041.494414px;}
.y14{bottom:1041.494781px;}
.y18{bottom:1041.495147px;}
.y291{bottom:1041.497343px;}
.y55{bottom:1047.120146px;}
.y1ea{bottom:1053.866484px;}
.y101{bottom:1053.869414px;}
.y2b4{bottom:1053.872343px;}
.ybb{bottom:1056.119414px;}
.y96{bottom:1060.620147px;}
.y77{bottom:1066.245146px;}
.y1bb{bottom:1074.116484px;}
.yd8{bottom:1074.119414px;}
.y13{bottom:1074.119781px;}
.y17{bottom:1074.120147px;}
.y290{bottom:1074.122343px;}
.y31{bottom:1075.995148px;}
.y54{bottom:1076.370146px;}
.yba{bottom:1080.869413px;}
.y95{bottom:1085.370146px;}
.y76{bottom:1095.120148px;}
.y1e9{bottom:1096.616484px;}
.y100{bottom:1096.619414px;}
.y2b3{bottom:1096.622343px;}
.y53{bottom:1105.620146px;}
.y313{bottom:1106.735625px;}
.y1ba{bottom:1106.741484px;}
.yd7{bottom:1106.744414px;}
.y28f{bottom:1106.747343px;}
.yb9{bottom:1110.119414px;}
.y94{bottom:1114.620147px;}
.y2e0{bottom:1114.622343px;}
.yb8{bottom:1134.869413px;}
.y52{bottom:1134.870146px;}
.y312{bottom:1139.360625px;}
.y1b9{bottom:1139.366484px;}
.yd6{bottom:1139.369414px;}
.y12{bottom:1139.369781px;}
.y16{bottom:1139.370147px;}
.y28e{bottom:1139.372343px;}
.y19d{bottom:1146.498117px;}
.y311{bottom:1156.640625px;}
.y1b7{bottom:1156.646484px;}
.yf2{bottom:1156.649414px;}
.y28c{bottom:1156.652343px;}
.hc{height:32.273438px;}
.h11{height:36.000000px;}
.hb{height:38.728127px;}
.h10{height:48.796875px;}
.hf{height:49.992188px;}
.h8{height:53.789061px;}
.h13{height:56.250000px;}
.h12{height:58.620119px;}
.h14{height:59.167970px;}
.h4{height:63.949219px;}
.h5{height:64.546875px;}
.ha{height:67.240124px;}
.h19{height:76.500000px;}
.h6{height:86.062503px;}
.h18{height:96.750000px;}
.h1{height:96.820313px;}
.h20{height:105.972660px;}
.h9{height:105.975585px;}
.he{height:105.978510px;}
.h23{height:105.984375px;}
.h21{height:106.347657px;}
.h7{height:106.350586px;}
.hd{height:106.353516px;}
.h24{height:106.359375px;}
.h3{height:107.578122px;}
.h15{height:117.000000px;}
.h2{height:117.240237px;}
.h22{height:127.898438px;}
.h1b{height:177.750000px;}
.h1c{height:198.000000px;}
.h17{height:238.500000px;}
.h1e{height:279.000000px;}
.h1f{height:339.750000px;}
.h16{height:360.000000px;}
.h1d{height:400.500000px;}
.h1a{height:420.750000px;}
.h0{height:1263.000000px;}
.w2{width:114.749988px;}
.w3{width:115.874978px;}
.w4{width:115.875000px;}
.w5{width:115.875047px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x20{left:7.875000px;}
.x25{left:61.875000px;}
.x12{left:106.350003px;}
.x1f{left:107.475003px;}
.x17{left:110.850003px;}
.xf{left:127.681794px;}
.xe{left:129.347320px;}
.x13{left:133.350003px;}
.xb{left:147.084180px;}
.x27{left:149.100003px;}
.x16{left:159.225003px;}
.x4{left:161.232724px;}
.x1b{left:164.850003px;}
.x10{left:172.079741px;}
.x1a{left:180.600003px;}
.x14{left:187.350003px;}
.xa{left:192.390307px;}
.x1e{left:212.100003px;}
.x6{left:214.719882px;}
.x21{left:222.225014px;}
.x1c{left:241.350003px;}
.x2{left:258.801459px;}
.x1d{left:268.350003px;}
.xc{left:283.251772px;}
.x5{left:311.622543px;}
.x3{left:317.202757px;}
.x9{left:320.845619px;}
.x22{left:338.099985px;}
.x28{left:353.088131px;}
.x1{left:355.720619px;}
.x11{left:357.841762px;}
.x2a{left:382.092037px;}
.xd{left:403.996721px;}
.x8{left:411.479613px;}
.x7{left:438.871721px;}
.x29{left:445.861087px;}
.x18{left:449.609621px;}
.x15{left:453.358154px;}
.x26{left:454.519920px;}
.x23{left:569.849985px;}
.x24{left:685.724985px;}
.x19{left:759.676170px;}
@media print{
.v2{vertical-align:-21.120001pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:25.343998pt;}
.ls1{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000020pt;}
.ls9{letter-spacing:13.328124pt;}
.lse{letter-spacing:15.999990pt;}
.ls11{letter-spacing:16.000000pt;}
.lsd{letter-spacing:16.000040pt;}
.lsf{letter-spacing:16.000120pt;}
.lsa{letter-spacing:19.999990pt;}
.ls5{letter-spacing:20.000002pt;}
.ls8{letter-spacing:24.000002pt;}
.ls0{letter-spacing:26.645814pt;}
.ls3{letter-spacing:26.656252pt;}
.lsb{letter-spacing:27.999990pt;}
.ls4{letter-spacing:28.000002pt;}
.ls7{letter-spacing:32.000002pt;}
.ls6{letter-spacing:36.000002pt;}
.ls2{letter-spacing:43.990289pt;}
.ls10{letter-spacing:140.000000pt;}
.ws0{word-spacing:-29.333334pt;}
.ws1{word-spacing:-26.666666pt;}
.ws6{word-spacing:-16.000000pt;}
.ws76{word-spacing:-14.666667pt;}
.ws57{word-spacing:-13.333333pt;}
.ws4e{word-spacing:-0.064000pt;}
.ws96{word-spacing:-0.021994pt;}
.wsbd{word-spacing:-0.000130pt;}
.ws6b{word-spacing:-0.000031pt;}
.ws4a{word-spacing:-0.000030pt;}
.ws56{word-spacing:-0.000021pt;}
.ws3e{word-spacing:-0.000020pt;}
.wsc5{word-spacing:-0.000012pt;}
.wsb{word-spacing:-0.000010pt;}
.ws6d{word-spacing:-0.000009pt;}
.wsb4{word-spacing:-0.000003pt;}
.ws44{word-spacing:0.000000pt;}
.ws5{word-spacing:0.000000pt;}
.ws14{word-spacing:0.000002pt;}
.ws28{word-spacing:0.000010pt;}
.wsba{word-spacing:0.000011pt;}
.ws16{word-spacing:0.000020pt;}
.ws17{word-spacing:0.000030pt;}
.ws7c{word-spacing:3.979166pt;}
.wsb9{word-spacing:3.999969pt;}
.ws70{word-spacing:3.999970pt;}
.ws18{word-spacing:3.999980pt;}
.ws6e{word-spacing:3.999985pt;}
.wsb8{word-spacing:3.999988pt;}
.ws1b{word-spacing:3.999989pt;}
.wsd{word-spacing:3.999990pt;}
.ws5a{word-spacing:3.999998pt;}
.wsbb{word-spacing:3.999999pt;}
.wsc{word-spacing:4.000000pt;}
.ws69{word-spacing:4.000001pt;}
.ws48{word-spacing:4.000002pt;}
.ws55{word-spacing:4.000009pt;}
.ws6c{word-spacing:4.000011pt;}
.ws2b{word-spacing:4.000020pt;}
.ws40{word-spacing:4.000030pt;}
.ws4{word-spacing:7.959433pt;}
.ws2{word-spacing:7.959483pt;}
.ws83{word-spacing:7.959491pt;}
.ws3{word-spacing:7.959575pt;}
.ws93{word-spacing:7.975708pt;}
.ws9d{word-spacing:7.999968pt;}
.ws4d{word-spacing:7.999969pt;}
.ws54{word-spacing:7.999970pt;}
.ws8{word-spacing:7.999980pt;}
.ws6f{word-spacing:7.999980pt;}
.ws9e{word-spacing:7.999987pt;}
.ws9c{word-spacing:7.999989pt;}
.ws2f{word-spacing:7.999990pt;}
.ws74{word-spacing:7.999998pt;}
.ws10{word-spacing:7.999999pt;}
.wsf{word-spacing:8.000000pt;}
.wsac{word-spacing:8.000001pt;}
.ws2e{word-spacing:8.000010pt;}
.wsaf{word-spacing:8.000019pt;}
.wsa3{word-spacing:8.000020pt;}
.ws4c{word-spacing:8.000029pt;}
.ws8b{word-spacing:11.968749pt;}
.ws77{word-spacing:11.978006pt;}
.ws51{word-spacing:11.999970pt;}
.ws12{word-spacing:11.999980pt;}
.wsb0{word-spacing:11.999988pt;}
.ws9{word-spacing:11.999989pt;}
.ws31{word-spacing:11.999990pt;}
.ws5c{word-spacing:11.999998pt;}
.ws22{word-spacing:11.999999pt;}
.ws19{word-spacing:12.000000pt;}
.ws75{word-spacing:12.000002pt;}
.ws20{word-spacing:12.000010pt;}
.ws9f{word-spacing:12.000018pt;}
.ws46{word-spacing:12.000020pt;}
.ws65{word-spacing:12.000030pt;}
.ws79{word-spacing:15.979168pt;}
.ws41{word-spacing:15.999969pt;}
.ws1c{word-spacing:15.999980pt;}
.wsb2{word-spacing:15.999988pt;}
.wse{word-spacing:15.999990pt;}
.wsa2{word-spacing:15.999991pt;}
.ws66{word-spacing:15.999998pt;}
.wsa{word-spacing:16.000000pt;}
.wsc8{word-spacing:16.000002pt;}
.ws21{word-spacing:16.000010pt;}
.wsa4{word-spacing:16.000020pt;}
.ws4b{word-spacing:16.000030pt;}
.ws89{word-spacing:19.968750pt;}
.ws91{word-spacing:19.978005pt;}
.ws92{word-spacing:19.979167pt;}
.ws5d{word-spacing:19.999970pt;}
.ws35{word-spacing:19.999980pt;}
.ws26{word-spacing:19.999980pt;}
.ws32{word-spacing:19.999990pt;}
.wsbc{word-spacing:19.999998pt;}
.ws11{word-spacing:20.000000pt;}
.wsa0{word-spacing:20.000002pt;}
.ws23{word-spacing:20.000010pt;}
.ws63{word-spacing:20.000030pt;}
.ws82{word-spacing:23.979165pt;}
.wsb3{word-spacing:23.999969pt;}
.ws5b{word-spacing:23.999979pt;}
.ws4f{word-spacing:23.999980pt;}
.ws61{word-spacing:23.999989pt;}
.ws47{word-spacing:23.999990pt;}
.ws64{word-spacing:23.999997pt;}
.ws71{word-spacing:23.999999pt;}
.ws15{word-spacing:24.000000pt;}
.ws53{word-spacing:24.000010pt;}
.wsa9{word-spacing:24.000020pt;}
.ws9a{word-spacing:27.959490pt;}
.ws99{word-spacing:27.959492pt;}
.ws7d{word-spacing:27.961790pt;}
.ws86{word-spacing:27.968749pt;}
.ws81{word-spacing:27.978006pt;}
.wsb7{word-spacing:27.999970pt;}
.ws49{word-spacing:27.999979pt;}
.wsae{word-spacing:27.999980pt;}
.ws30{word-spacing:27.999990pt;}
.wsa6{word-spacing:27.999997pt;}
.ws13{word-spacing:27.999999pt;}
.ws43{word-spacing:28.000000pt;}
.ws52{word-spacing:28.000002pt;}
.wsa7{word-spacing:28.000010pt;}
.ws60{word-spacing:28.000019pt;}
.wscd{word-spacing:28.000020pt;}
.ws9b{word-spacing:28.000030pt;}
.ws94{word-spacing:31.978006pt;}
.wsa8{word-spacing:31.999969pt;}
.wsa5{word-spacing:31.999980pt;}
.ws42{word-spacing:31.999989pt;}
.wsaa{word-spacing:31.999999pt;}
.ws58{word-spacing:32.000000pt;}
.ws59{word-spacing:35.999980pt;}
.wscc{word-spacing:35.999981pt;}
.ws73{word-spacing:35.999989pt;}
.ws5f{word-spacing:35.999990pt;}
.wsad{word-spacing:35.999998pt;}
.wsa1{word-spacing:35.999999pt;}
.ws1a{word-spacing:36.000000pt;}
.wsc9{word-spacing:36.000002pt;}
.ws3b{word-spacing:36.000010pt;}
.wsb5{word-spacing:39.999968pt;}
.ws45{word-spacing:39.999990pt;}
.wsb6{word-spacing:39.999997pt;}
.ws29{word-spacing:40.000000pt;}
.ws37{word-spacing:43.999990pt;}
.ws7{word-spacing:44.000000pt;}
.ws97{word-spacing:47.968749pt;}
.ws8c{word-spacing:47.978006pt;}
.ws50{word-spacing:47.999980pt;}
.ws33{word-spacing:47.999990pt;}
.ws72{word-spacing:47.999999pt;}
.wsab{word-spacing:48.000000pt;}
.ws8d{word-spacing:51.978006pt;}
.ws1e{word-spacing:51.999980pt;}
.ws5e{word-spacing:52.000000pt;}
.wsc3{word-spacing:52.000001pt;}
.wsc4{word-spacing:52.000010pt;}
.ws88{word-spacing:55.978006pt;}
.ws98{word-spacing:55.979164pt;}
.ws7a{word-spacing:55.979166pt;}
.ws67{word-spacing:56.000000pt;}
.ws8a{word-spacing:63.978006pt;}
.wsb1{word-spacing:64.000000pt;}
.ws62{word-spacing:64.000030pt;}
.ws85{word-spacing:66.634254pt;}
.ws8f{word-spacing:67.975707pt;}
.ws24{word-spacing:68.000000pt;}
.ws7b{word-spacing:71.978006pt;}
.ws6a{word-spacing:71.999980pt;}
.ws95{word-spacing:75.971088pt;}
.ws84{word-spacing:79.971089pt;}
.ws7f{word-spacing:79.978006pt;}
.wscb{word-spacing:80.000000pt;}
.ws78{word-spacing:83.968748pt;}
.ws68{word-spacing:83.999990pt;}
.wsca{word-spacing:83.999998pt;}
.ws80{word-spacing:87.978006pt;}
.wsc1{word-spacing:108.000000pt;}
.wsbe{word-spacing:112.000000pt;}
.wsc0{word-spacing:124.000000pt;}
.ws90{word-spacing:127.978007pt;}
.ws7e{word-spacing:135.973367pt;}
.wsbf{word-spacing:135.999981pt;}
.ws87{word-spacing:139.971089pt;}
.ws8e{word-spacing:167.973367pt;}
.wsc7{word-spacing:180.000000pt;}
.wsc6{word-spacing:183.999989pt;}
.wsc2{word-spacing:199.999999pt;}
.ws1f{word-spacing:1560.036359pt;}
.ws27{word-spacing:1602.630110pt;}
.ws2a{word-spacing:1609.817610pt;}
.ws25{word-spacing:1645.348860pt;}
.ws3c{word-spacing:1734.223860pt;}
.ws38{word-spacing:1743.786360pt;}
.ws34{word-spacing:1816.098860pt;}
.ws2c{word-spacing:1858.442609pt;}
.ws3a{word-spacing:1887.067610pt;}
.ws3f{word-spacing:1922.630109pt;}
.ws1d{word-spacing:1926.067609pt;}
.ws2d{word-spacing:1968.692610pt;}
.ws36{word-spacing:1974.723860pt;}
.ws3d{word-spacing:2032.817609pt;}
.ws39{word-spacing:2039.817610pt;}
._66{margin-left:-16.000000pt;}
._2{margin-left:-8.387180pt;}
._42{margin-left:-7.345072pt;}
._60{margin-left:-5.875000pt;}
._6{margin-left:-4.844921pt;}
._3{margin-left:-3.531250pt;}
._0{margin-left:-2.340603pt;}
._1{margin-left:-0.904926pt;}
._40{width:1.536357pt;}
._6f{width:3.063673pt;}
._8{width:15.999998pt;}
._6e{width:16.904947pt;}
._6d{width:18.605343pt;}
._7{width:19.999999pt;}
._68{width:22.687500pt;}
._c{width:24.000002pt;}
._67{width:26.281250pt;}
._5{width:28.000002pt;}
._b{width:31.999999pt;}
._9{width:36.000002pt;}
._6c{width:38.538247pt;}
._a{width:40.000001pt;}
._e{width:44.000002pt;}
._d{width:47.999988pt;}
._3b{width:51.439839pt;}
._62{width:52.560248pt;}
._63{width:55.687502pt;}
._64{width:56.624994pt;}
._50{width:60.000049pt;}
._4{width:64.000002pt;}
._1f{width:67.098858pt;}
._65{width:68.000000pt;}
._19{width:72.000002pt;}
._6a{width:76.000000pt;}
._2f{width:79.999999pt;}
._69{width:83.999989pt;}
._52{width:91.658211pt;}
._36{width:102.536358pt;}
._6b{width:103.999999pt;}
._12{width:108.161355pt;}
._72{width:119.965600pt;}
._70{width:123.896795pt;}
._5d{width:141.755105pt;}
._71{width:156.000002pt;}
._73{width:219.529276pt;}
._1e{width:220.470712pt;}
._3e{width:237.536358pt;}
._33{width:321.786359pt;}
._1c{width:323.067607pt;}
._51{width:329.286358pt;}
._4d{width:334.036358pt;}
._59{width:366.848857pt;}
._5b{width:370.973858pt;}
._20{width:377.567608pt;}
._5a{width:427.848704pt;}
._61{width:449.479163pt;}
._55{width:487.192607pt;}
._3a{width:495.317608pt;}
._3c{width:516.192608pt;}
._28{width:534.661358pt;}
._11{width:543.317607pt;}
._10{width:611.005107pt;}
._53{width:713.222534pt;}
._37{width:732.626809pt;}
._58{width:743.630107pt;}
._35{width:746.785036pt;}
._f{width:760.503784pt;}
._5e{width:809.189308pt;}
._2a{width:836.567609pt;}
._32{width:904.067608pt;}
._30{width:936.098857pt;}
._25{width:978.848858pt;}
._31{width:1030.286358pt;}
._47{width:1053.348858pt;}
._46{width:1060.536358pt;}
._34{width:1097.005110pt;}
._14{width:1102.067609pt;}
._39{width:1107.818782pt;}
._23{width:1123.223705pt;}
._57{width:1170.755110pt;}
._15{width:1187.880110pt;}
._29{width:1192.223859pt;}
._5c{width:1213.411359pt;}
._13{width:1233.130107pt;}
._56{width:1352.598860pt;}
._16{width:1359.130110pt;}
._21{width:1362.502461pt;}
._41{width:1366.847535pt;}
._1b{width:1370.473858pt;}
._26{width:1377.067609pt;}
._1a{width:1379.505108pt;}
._4e{width:1435.692608pt;}
._17{width:1440.880110pt;}
._18{width:1447.911360pt;}
._3f{width:1472.911358pt;}
._2b{width:1484.475030pt;}
._2d{width:1503.223859pt;}
._24{width:1547.911207pt;}
._4f{width:1553.161359pt;}
._5f{width:1554.880108pt;}
._4b{width:1563.255109pt;}
._43{width:1578.911357pt;}
._27{width:1645.348860pt;}
._45{width:1668.348860pt;}
._48{width:1671.973860pt;}
._2e{width:1680.817608pt;}
._1d{width:1743.595713pt;}
._4c{width:1748.411358pt;}
._2c{width:1775.036359pt;}
._3d{width:1776.942609pt;}
._38{width:1819.536360pt;}
._22{width:1830.192610pt;}
._49{width:1865.661359pt;}
._4a{width:1887.005109pt;}
._44{width:1947.442610pt;}
._54{width:1951.130110pt;}
.fs8{font-size:32.000000pt;}
.fs7{font-size:38.400002pt;}
.fs6{font-size:53.333332pt;}
.fs9{font-size:58.666668pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.666664pt;}
.fs5{font-size:85.333336pt;}
.fs0{font-size:96.000000pt;}
.fs2{font-size:106.666664pt;}
.fs1{font-size:117.333336pt;}
.fsa{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y22b{bottom:10.920000pt;}
.y24d{bottom:10.920005pt;}
.y22d{bottom:28.920000pt;}
.y24c{bottom:28.920005pt;}
.y30f{bottom:32.585417pt;}
.y28d{bottom:32.595833pt;}
.yf3{bottom:32.599740pt;}
.y21a{bottom:32.601041pt;}
.yff{bottom:32.601042pt;}
.y1b8{bottom:32.603646pt;}
.y232{bottom:46.920000pt;}
.y24b{bottom:46.920005pt;}
.y231{bottom:64.920000pt;}
.y24a{bottom:64.920005pt;}
.yfe{bottom:67.999480pt;}
.yfb{bottom:68.000786pt;}
.y219{bottom:68.002080pt;}
.y30e{bottom:68.012493pt;}
.y230{bottom:82.920000pt;}
.y23f{bottom:100.920000pt;}
.y19e{bottom:103.159693pt;}
.y2e6{bottom:103.162293pt;}
.y51{bottom:103.773466pt;}
.y244{bottom:107.130213pt;}
.y218{bottom:108.770214pt;}
.y130{bottom:108.772814pt;}
.y17d{bottom:109.772814pt;}
.y16e{bottom:110.772814pt;}
.y200{bottom:113.770214pt;}
.yfa{bottom:113.772814pt;}
.y2ad{bottom:113.775414pt;}
.yd5{bottom:116.772814pt;}
.y1a5{bottom:117.772814pt;}
.y75{bottom:117.773466pt;}
.y2cd{bottom:117.775414pt;}
.y23e{bottom:118.920000pt;}
.y25b{bottom:122.770214pt;}
.y93{bottom:122.773467pt;}
.yb7{bottom:123.772814pt;}
.yfd{bottom:124.772814pt;}
.y1e8{bottom:125.770214pt;}
.y50{bottom:129.773466pt;}
.y2e9{bottom:129.775414pt;}
.y141{bottom:130.772814pt;}
.y30c{bottom:131.775414pt;}
.y18f{bottom:134.772814pt;}
.y277{bottom:135.770214pt;}
.y28b{bottom:135.775414pt;}
.y1fe{bottom:136.770214pt;}
.y23d{bottom:136.920000pt;}
.y217{bottom:137.770214pt;}
.y12f{bottom:137.772814pt;}
.y2f8{bottom:137.775414pt;}
.y17c{bottom:138.772814pt;}
.y16d{bottom:139.772814pt;}
.y1d6{bottom:142.770214pt;}
.yf9{bottom:142.772814pt;}
.y2ac{bottom:142.775414pt;}
.y74{bottom:143.773466pt;}
.y26f{bottom:144.770214pt;}
.y92{bottom:144.773466pt;}
.yb6{bottom:145.772813pt;}
.yd4{bottom:145.772814pt;}
.y229{bottom:146.770214pt;}
.y1a4{bottom:146.772814pt;}
.y19c{bottom:148.772814pt;}
.y25a{bottom:151.770214pt;}
.y23c{bottom:154.920000pt;}
.y26c{bottom:155.770214pt;}
.y4f{bottom:155.773466pt;}
.y2b2{bottom:155.775414pt;}
.y2e8{bottom:158.775414pt;}
.y30b{bottom:160.775414pt;}
.y1b6{bottom:161.772814pt;}
.yfc{bottom:162.772814pt;}
.y1e7{bottom:163.770214pt;}
.y15d{bottom:163.772814pt;}
.y273{bottom:164.770214pt;}
.y1fd{bottom:165.770214pt;}
.y216{bottom:166.770214pt;}
.y12e{bottom:166.772814pt;}
.y2f7{bottom:166.775414pt;}
.y17b{bottom:167.772814pt;}
.y140{bottom:168.772814pt;}
.y73{bottom:169.773467pt;}
.y91{bottom:170.773467pt;}
.y1d5{bottom:171.770214pt;}
.yb5{bottom:171.772813pt;}
.yf8{bottom:171.772814pt;}
.y2ab{bottom:171.775414pt;}
.y23b{bottom:172.920000pt;}
.y276{bottom:173.770214pt;}
.yd3{bottom:174.772814pt;}
.y228{bottom:175.770214pt;}
.y19b{bottom:177.772814pt;}
.yf1{bottom:178.772814pt;}
.y259{bottom:180.770214pt;}
.y4e{bottom:181.440134pt;}
.y1b0{bottom:181.772814pt;}
.y8{bottom:181.786600pt;}
.y26e{bottom:182.770214pt;}
.y26b{bottom:184.770214pt;}
.y2cc{bottom:184.775414pt;}
.y2e7{bottom:187.775414pt;}
.y30a{bottom:189.775414pt;}
.y1b5{bottom:190.772814pt;}
.y23a{bottom:190.920000pt;}
.y72{bottom:191.773466pt;}
.y15c{bottom:192.772814pt;}
.y90{bottom:192.773467pt;}
.y28a{bottom:193.770214pt;}
.y2b1{bottom:193.775414pt;}
.y1fc{bottom:194.770214pt;}
.y215{bottom:195.770214pt;}
.y12d{bottom:195.772814pt;}
.y2f6{bottom:195.775414pt;}
.y17a{bottom:196.772814pt;}
.yb4{bottom:197.772814pt;}
.y1d4{bottom:200.770214pt;}
.yf7{bottom:200.772814pt;}
.y30{bottom:200.773467pt;}
.y2aa{bottom:200.775414pt;}
.y1e6{bottom:201.770214pt;}
.y272{bottom:202.770214pt;}
.yd2{bottom:203.772814pt;}
.y227{bottom:204.770214pt;}
.y13f{bottom:206.772814pt;}
.yf0{bottom:207.772814pt;}
.y11{bottom:208.653307pt;}
.y239{bottom:208.920000pt;}
.y258{bottom:209.770214pt;}
.y275{bottom:211.770214pt;}
.y26a{bottom:213.770214pt;}
.y1a3{bottom:213.772814pt;}
.y2cb{bottom:213.775414pt;}
.y8f{bottom:214.773467pt;}
.y4d{bottom:216.773466pt;}
.y71{bottom:217.773466pt;}
.y309{bottom:218.775414pt;}
.yb3{bottom:219.772813pt;}
.y1af{bottom:219.772814pt;}
.y26d{bottom:220.770214pt;}
.y15b{bottom:221.772814pt;}
.y289{bottom:222.770214pt;}
.y1fb{bottom:223.770214pt;}
.y116{bottom:223.772814pt;}
.y12c{bottom:224.772814pt;}
.y2f5{bottom:224.775414pt;}
.y179{bottom:225.772814pt;}
.y16c{bottom:226.772814pt;}
.y238{bottom:226.920000pt;}
.y1d3{bottom:229.770214pt;}
.yf6{bottom:229.772814pt;}
.y2a9{bottom:229.775414pt;}
.y2b0{bottom:231.775414pt;}
.yd1{bottom:232.772814pt;}
.y226{bottom:233.770214pt;}
.y19a{bottom:235.772814pt;}
.yef{bottom:236.772814pt;}
.y8e{bottom:236.773466pt;}
.y1e5{bottom:239.770214pt;}
.y271{bottom:240.770214pt;}
.y14f{bottom:241.772814pt;}
.y269{bottom:242.770214pt;}
.y4c{bottom:242.773466pt;}
.y2ca{bottom:242.775414pt;}
.y70{bottom:243.773467pt;}
.y13e{bottom:244.772814pt;}
.y237{bottom:244.920000pt;}
.y255{bottom:245.130213pt;}
.yb2{bottom:245.772814pt;}
.y308{bottom:247.775414pt;}
.y1b4{bottom:248.772814pt;}
.y274{bottom:249.770214pt;}
.y15a{bottom:250.772814pt;}
.y288{bottom:251.770214pt;}
.y1a2{bottom:251.772814pt;}
.y214{bottom:253.770214pt;}
.y12b{bottom:253.772814pt;}
.y2f4{bottom:253.775414pt;}
.y178{bottom:254.772814pt;}
.y16b{bottom:255.772814pt;}
.y1ae{bottom:257.772814pt;}
.y1d2{bottom:258.770214pt;}
.yf5{bottom:258.772814pt;}
.y2f{bottom:258.773467pt;}
.y2a8{bottom:258.775414pt;}
.y18e{bottom:259.772814pt;}
.yd0{bottom:261.772814pt;}
.y225{bottom:262.770214pt;}
.y8d{bottom:262.773467pt;}
.y236{bottom:262.920000pt;}
.y199{bottom:264.772814pt;}
.y6f{bottom:265.773466pt;}
.yb1{bottom:267.772813pt;}
.y1e4{bottom:268.770214pt;}
.y4b{bottom:268.773466pt;}
.y248{bottom:269.130213pt;}
.y2af{bottom:269.775414pt;}
.y268{bottom:271.770214pt;}
.y2c9{bottom:271.775414pt;}
.y307{bottom:276.775414pt;}
.y1b3{bottom:277.772814pt;}
.y270{bottom:278.770214pt;}
.y14e{bottom:279.772814pt;}
.y235{bottom:280.920000pt;}
.y213{bottom:282.770214pt;}
.y12a{bottom:282.772814pt;}
.y2f3{bottom:282.775414pt;}
.y16a{bottom:284.772814pt;}
.y8c{bottom:284.773467pt;}
.y1d1{bottom:287.770214pt;}
.yee{bottom:287.772814pt;}
.y2e{bottom:287.773467pt;}
.y2a7{bottom:287.775414pt;}
.y1a1{bottom:289.772814pt;}
.y1fa{bottom:290.770214pt;}
.ycf{bottom:290.772814pt;}
.y224{bottom:291.770214pt;}
.y6e{bottom:291.773466pt;}
.yb0{bottom:293.772813pt;}
.y198{bottom:293.772814pt;}
.y4a{bottom:294.773467pt;}
.y1ad{bottom:295.772814pt;}
.y1e3{bottom:297.770214pt;}
.y18d{bottom:297.772814pt;}
.y234{bottom:298.920000pt;}
.y257{bottom:299.130213pt;}
.y115{bottom:299.772814pt;}
.y267{bottom:300.770214pt;}
.y2c8{bottom:300.775414pt;}
.y7{bottom:302.906600pt;}
.y306{bottom:305.775414pt;}
.y1b2{bottom:306.772814pt;}
.y8b{bottom:306.773467pt;}
.y10{bottom:307.773307pt;}
.y2ae{bottom:307.775414pt;}
.y287{bottom:309.770214pt;}
.y2df{bottom:309.775414pt;}
.y212{bottom:311.770214pt;}
.y129{bottom:311.772814pt;}
.y2f2{bottom:311.775414pt;}
.y177{bottom:312.772814pt;}
.y169{bottom:313.772814pt;}
.y1d0{bottom:316.770214pt;}
.yed{bottom:316.772814pt;}
.y49{bottom:316.773466pt;}
.y2d{bottom:316.773467pt;}
.y2a6{bottom:316.775414pt;}
.y247{bottom:316.920000pt;}
.y14d{bottom:317.772814pt;}
.y6d{bottom:317.773466pt;}
.yaf{bottom:319.772814pt;}
.y223{bottom:320.770214pt;}
.y13d{bottom:320.772814pt;}
.y197{bottom:322.772814pt;}
.y1e2{bottom:326.770214pt;}
.y1a0{bottom:327.772814pt;}
.y1f9{bottom:328.770214pt;}
.y114{bottom:328.772814pt;}
.yf{bottom:328.773307pt;}
.y8a{bottom:328.773466pt;}
.y266{bottom:329.770214pt;}
.y2c7{bottom:329.775414pt;}
.y6{bottom:331.906600pt;}
.y1ac{bottom:333.772814pt;}
.y305{bottom:334.775414pt;}
.y246{bottom:334.920000pt;}
.y18c{bottom:335.772814pt;}
.y286{bottom:338.770214pt;}
.y2de{bottom:338.775414pt;}
.y211{bottom:340.770214pt;}
.y128{bottom:340.772814pt;}
.y2f1{bottom:340.775414pt;}
.yae{bottom:341.772813pt;}
.y176{bottom:341.772814pt;}
.y168{bottom:342.772814pt;}
.y48{bottom:342.773467pt;}
.y6c{bottom:343.773466pt;}
.y1cf{bottom:345.770214pt;}
.yec{bottom:345.772814pt;}
.y2c{bottom:345.773467pt;}
.y2a5{bottom:345.775414pt;}
.y159{bottom:346.772814pt;}
.yce{bottom:348.772814pt;}
.ye{bottom:349.573307pt;}
.y222{bottom:349.770214pt;}
.y196{bottom:351.772814pt;}
.y245{bottom:352.920000pt;}
.y256{bottom:353.130213pt;}
.y89{bottom:354.773467pt;}
.y14c{bottom:355.772814pt;}
.y113{bottom:357.772814pt;}
.y265{bottom:358.770214pt;}
.y13c{bottom:358.772814pt;}
.y2c6{bottom:358.775414pt;}
.y304{bottom:363.775414pt;}
.y1b1{bottom:364.772814pt;}
.y47{bottom:364.773466pt;}
.y19f{bottom:365.772814pt;}
.y1f8{bottom:366.770214pt;}
.yad{bottom:367.439481pt;}
.y285{bottom:367.770214pt;}
.y2dd{bottom:367.775414pt;}
.y210{bottom:369.770214pt;}
.y127{bottom:369.772814pt;}
.y6b{bottom:369.773467pt;}
.y2f0{bottom:369.775414pt;}
.y175{bottom:370.772814pt;}
.y167{bottom:371.772814pt;}
.y18b{bottom:373.772814pt;}
.y1ce{bottom:374.770214pt;}
.yeb{bottom:374.772814pt;}
.y2b{bottom:374.773467pt;}
.y2a4{bottom:374.775414pt;}
.y88{bottom:376.773467pt;}
.ycd{bottom:377.772814pt;}
.y221{bottom:378.770214pt;}
.y195{bottom:380.772814pt;}
.y1e1{bottom:384.770214pt;}
.y158{bottom:384.772814pt;}
.y112{bottom:386.772814pt;}
.y264{bottom:387.770214pt;}
.y13b{bottom:387.772814pt;}
.y2c5{bottom:387.775414pt;}
.y46{bottom:390.773466pt;}
.y6a{bottom:391.773466pt;}
.y303{bottom:392.775414pt;}
.y14b{bottom:393.772814pt;}
.y242{bottom:395.130213pt;}
.y284{bottom:396.770214pt;}
.y2dc{bottom:396.775414pt;}
.y5{bottom:398.666600pt;}
.y20f{bottom:398.770214pt;}
.y126{bottom:398.772814pt;}
.y87{bottom:398.773466pt;}
.y2ef{bottom:398.775414pt;}
.y174{bottom:399.772814pt;}
.y166{bottom:400.772814pt;}
.yac{bottom:402.773466pt;}
.y1cd{bottom:403.770214pt;}
.yea{bottom:403.772814pt;}
.y2a{bottom:403.773467pt;}
.y2a3{bottom:403.775414pt;}
.y1f7{bottom:404.770214pt;}
.ycc{bottom:406.772814pt;}
.y220{bottom:407.770214pt;}
.y194{bottom:409.772814pt;}
.y18a{bottom:411.772814pt;}
.y243{bottom:413.130213pt;}
.y1e0{bottom:413.770214pt;}
.y111{bottom:415.772814pt;}
.y263{bottom:416.770214pt;}
.y13a{bottom:416.772814pt;}
.y45{bottom:416.773467pt;}
.y2c4{bottom:416.775414pt;}
.y69{bottom:417.773466pt;}
.y302{bottom:421.775414pt;}
.y14a{bottom:422.772814pt;}
.y86{bottom:424.773467pt;}
.y283{bottom:425.770214pt;}
.y2db{bottom:425.775414pt;}
.y20e{bottom:427.770214pt;}
.y125{bottom:427.772814pt;}
.y2ee{bottom:427.775414pt;}
.yab{bottom:428.773466pt;}
.y1cc{bottom:432.770214pt;}
.ye9{bottom:432.772814pt;}
.y29{bottom:432.773467pt;}
.y2a2{bottom:432.775414pt;}
.ycb{bottom:435.772814pt;}
.y193{bottom:438.772814pt;}
.y44{bottom:438.773466pt;}
.yd{bottom:441.839974pt;}
.y1df{bottom:442.770214pt;}
.y68{bottom:443.773467pt;}
.y110{bottom:444.772814pt;}
.y262{bottom:445.770214pt;}
.y139{bottom:445.772814pt;}
.y2c3{bottom:445.775414pt;}
.y4{bottom:446.666639pt;}
.y85{bottom:446.773466pt;}
.y1ab{bottom:447.772814pt;}
.y241{bottom:449.130213pt;}
.y189{bottom:449.772814pt;}
.y301{bottom:450.775414pt;}
.y149{bottom:451.772814pt;}
.y282{bottom:454.770214pt;}
.yaa{bottom:454.773467pt;}
.y2da{bottom:454.775414pt;}
.y20d{bottom:456.770214pt;}
.y124{bottom:456.772814pt;}
.y2ed{bottom:456.775414pt;}
.y157{bottom:460.772814pt;}
.y1cb{bottom:461.770214pt;}
.yf4{bottom:461.772814pt;}
.y28{bottom:461.773467pt;}
.y2a1{bottom:461.775414pt;}
.yca{bottom:464.772814pt;}
.y43{bottom:464.773467pt;}
.y67{bottom:465.773466pt;}
.y165{bottom:467.772814pt;}
.y1de{bottom:471.770214pt;}
.y84{bottom:472.773467pt;}
.y10f{bottom:473.772814pt;}
.y21f{bottom:474.770214pt;}
.y138{bottom:474.772814pt;}
.y2c2{bottom:474.775414pt;}
.y30d{bottom:475.415414pt;}
.ya9{bottom:476.773466pt;}
.yc{bottom:479.533306pt;}
.y300{bottom:479.775414pt;}
.y1f6{bottom:480.770214pt;}
.y233{bottom:482.130213pt;}
.y281{bottom:483.770214pt;}
.y2d9{bottom:483.775414pt;}
.y20c{bottom:485.770214pt;}
.y123{bottom:485.772814pt;}
.y2ec{bottom:485.775414pt;}
.y42{bottom:486.773466pt;}
.y188{bottom:487.772814pt;}
.y1ca{bottom:490.770214pt;}
.ye8{bottom:490.772814pt;}
.y27{bottom:490.773467pt;}
.y2a0{bottom:490.775414pt;}
.y66{bottom:491.773466pt;}
.yc9{bottom:493.772814pt;}
.y173{bottom:494.772814pt;}
.y83{bottom:494.773467pt;}
.y192{bottom:496.772814pt;}
.y3{bottom:497.106640pt;}
.y156{bottom:498.772814pt;}
.y1dd{bottom:500.770214pt;}
.y10e{bottom:502.772814pt;}
.ya8{bottom:502.773466pt;}
.y261{bottom:503.770214pt;}
.y137{bottom:503.772814pt;}
.y2c1{bottom:503.775414pt;}
.y164{bottom:505.772814pt;}
.y2ff{bottom:508.775414pt;}
.y21e{bottom:512.770214pt;}
.y41{bottom:512.773467pt;}
.y2d8{bottom:512.775414pt;}
.y20b{bottom:514.770214pt;}
.y122{bottom:514.772814pt;}
.y2eb{bottom:514.775414pt;}
.y82{bottom:516.773466pt;}
.y65{bottom:517.773466pt;}
.y1f5{bottom:518.770214pt;}
.y148{bottom:518.772814pt;}
.yb{bottom:518.906639pt;}
.y1c9{bottom:519.770214pt;}
.ye7{bottom:519.772814pt;}
.y26{bottom:519.773467pt;}
.y29f{bottom:519.775414pt;}
.yc8{bottom:522.772814pt;}
.y1aa{bottom:523.772814pt;}
.y187{bottom:525.772814pt;}
.ya7{bottom:528.773466pt;}
.y1dc{bottom:529.770214pt;}
.y10d{bottom:531.772814pt;}
.y260{bottom:532.770214pt;}
.y136{bottom:532.772814pt;}
.y2c0{bottom:532.775414pt;}
.y254{bottom:533.130213pt;}
.y40{bottom:534.773466pt;}
.y155{bottom:536.772814pt;}
.y2fe{bottom:537.775414pt;}
.y280{bottom:541.770214pt;}
.y2d7{bottom:541.775414pt;}
.y81{bottom:542.773467pt;}
.y20a{bottom:543.770214pt;}
.y121{bottom:543.772814pt;}
.y64{bottom:543.773466pt;}
.y2ea{bottom:543.775414pt;}
.y1ff{bottom:548.770214pt;}
.ye6{bottom:548.772814pt;}
.y25{bottom:548.773467pt;}
.y29e{bottom:548.775414pt;}
.y2{bottom:550.106640pt;}
.y21d{bottom:550.770214pt;}
.yc7{bottom:551.772814pt;}
.y191{bottom:554.772814pt;}
.ya6{bottom:554.773467pt;}
.y1f4{bottom:556.770214pt;}
.y147{bottom:556.772814pt;}
.y1db{bottom:558.770214pt;}
.y10c{bottom:560.772814pt;}
.y3f{bottom:560.773466pt;}
.ya{bottom:560.906639pt;}
.y135{bottom:561.772814pt;}
.y2bf{bottom:561.775414pt;}
.y186{bottom:563.772814pt;}
.y80{bottom:564.773467pt;}
.y2fd{bottom:566.775414pt;}
.y253{bottom:569.130213pt;}
.y63{bottom:569.773466pt;}
.y25f{bottom:570.770214pt;}
.y172{bottom:570.772814pt;}
.y2d6{bottom:570.775414pt;}
.y209{bottom:572.770214pt;}
.y120{bottom:572.772814pt;}
.y154{bottom:574.772814pt;}
.ya5{bottom:576.773466pt;}
.y1c8{bottom:577.770214pt;}
.ye5{bottom:577.772814pt;}
.y24{bottom:577.773467pt;}
.y29d{bottom:577.775414pt;}
.yc6{bottom:580.772814pt;}
.y163{bottom:581.772814pt;}
.y190{bottom:583.772814pt;}
.y3e{bottom:586.773466pt;}
.y1da{bottom:587.770214pt;}
.y21c{bottom:588.770214pt;}
.y10b{bottom:589.772814pt;}
.y2e4{bottom:589.775414pt;}
.y240{bottom:590.130213pt;}
.y2be{bottom:590.775414pt;}
.y1f3{bottom:594.770214pt;}
.y146{bottom:594.772814pt;}
.y62{bottom:595.773466pt;}
.y2fc{bottom:595.775414pt;}
.y27f{bottom:599.770214pt;}
.y1a9{bottom:599.772814pt;}
.y2d5{bottom:599.775414pt;}
.y208{bottom:601.770214pt;}
.y11f{bottom:601.772814pt;}
.y252{bottom:602.130213pt;}
.ya4{bottom:602.773467pt;}
.y1c7{bottom:606.770214pt;}
.ye4{bottom:606.772814pt;}
.y23{bottom:606.773467pt;}
.y29c{bottom:606.775414pt;}
.y25e{bottom:608.770214pt;}
.y171{bottom:608.772814pt;}
.yc5{bottom:609.772814pt;}
.y153{bottom:612.772814pt;}
.y3d{bottom:612.773467pt;}
.y1d9{bottom:616.770214pt;}
.y10a{bottom:618.772814pt;}
.y2e3{bottom:618.775414pt;}
.y162{bottom:619.772814pt;}
.y2bd{bottom:619.775414pt;}
.y61{bottom:621.773466pt;}
.ya3{bottom:624.773466pt;}
.y2fb{bottom:624.775414pt;}
.y21b{bottom:626.770214pt;}
.y1{bottom:627.226679pt;}
.y27e{bottom:628.770214pt;}
.y134{bottom:628.772814pt;}
.y2d4{bottom:628.775414pt;}
.y207{bottom:630.770214pt;}
.y11e{bottom:630.772814pt;}
.y1f2{bottom:632.770214pt;}
.y145{bottom:632.772814pt;}
.y3c{bottom:634.773466pt;}
.y1c6{bottom:635.770214pt;}
.ye3{bottom:635.772814pt;}
.y22{bottom:635.773467pt;}
.y29b{bottom:635.775414pt;}
.y1a8{bottom:637.772814pt;}
.y251{bottom:638.130213pt;}
.yc4{bottom:638.772814pt;}
.y185{bottom:639.772814pt;}
.y1d8{bottom:645.770214pt;}
.y25d{bottom:646.770214pt;}
.y170{bottom:646.772814pt;}
.y109{bottom:647.772814pt;}
.y60{bottom:647.773466pt;}
.y2e2{bottom:647.775414pt;}
.y2bc{bottom:648.775414pt;}
.y310{bottom:649.415414pt;}
.y152{bottom:650.772814pt;}
.ya2{bottom:650.773467pt;}
.y2fa{bottom:653.775414pt;}
.y250{bottom:656.130213pt;}
.y27d{bottom:657.770214pt;}
.y161{bottom:657.772814pt;}
.y2d3{bottom:657.775414pt;}
.y11d{bottom:659.772814pt;}
.y7f{bottom:660.440134pt;}
.y3b{bottom:660.773466pt;}
.y1c5{bottom:664.770214pt;}
.ye2{bottom:664.772814pt;}
.y21{bottom:664.773467pt;}
.y29a{bottom:664.775414pt;}
.y133{bottom:666.772814pt;}
.yc3{bottom:667.772814pt;}
.y184{bottom:668.772814pt;}
.y1f1{bottom:670.770214pt;}
.y144{bottom:670.772814pt;}
.ya1{bottom:672.773466pt;}
.y5f{bottom:673.773467pt;}
.y1d7{bottom:674.770214pt;}
.y1a7{bottom:675.772814pt;}
.y108{bottom:676.772814pt;}
.y2e1{bottom:676.775414pt;}
.y2bb{bottom:677.775414pt;}
.y2f9{bottom:682.775414pt;}
.y25c{bottom:684.770214pt;}
.y16f{bottom:684.772814pt;}
.y27c{bottom:686.770214pt;}
.y3a{bottom:686.773466pt;}
.y2d2{bottom:686.775414pt;}
.y11c{bottom:688.772814pt;}
.y1c4{bottom:693.770214pt;}
.ye1{bottom:693.772814pt;}
.y20{bottom:693.773467pt;}
.y299{bottom:693.775414pt;}
.y7e{bottom:695.440134pt;}
.y160{bottom:695.772814pt;}
.y5e{bottom:695.773466pt;}
.yc2{bottom:696.772814pt;}
.y206{bottom:697.770214pt;}
.y183{bottom:697.772814pt;}
.y22f{bottom:698.130213pt;}
.ya0{bottom:698.773466pt;}
.y132{bottom:704.772814pt;}
.y2ba{bottom:706.775414pt;}
.y9{bottom:707.359974pt;}
.y1f0{bottom:708.770214pt;}
.y143{bottom:708.772814pt;}
.y39{bottom:712.773466pt;}
.y1a6{bottom:713.772814pt;}
.y27b{bottom:715.770214pt;}
.y2d1{bottom:715.775414pt;}
.y11b{bottom:717.772814pt;}
.y5d{bottom:721.773467pt;}
.y1c3{bottom:722.770214pt;}
.ye0{bottom:722.772814pt;}
.y1f{bottom:722.773467pt;}
.y298{bottom:722.775414pt;}
.y9f{bottom:724.773467pt;}
.yc1{bottom:725.772814pt;}
.y151{bottom:726.772814pt;}
.y7d{bottom:730.440134pt;}
.y15f{bottom:733.772814pt;}
.y107{bottom:734.772814pt;}
.y205{bottom:735.770214pt;}
.y2b9{bottom:735.775414pt;}
.y38{bottom:738.773466pt;}
.y131{bottom:742.772814pt;}
.y5c{bottom:743.773466pt;}
.y27a{bottom:744.770214pt;}
.y2d0{bottom:744.775414pt;}
.y1ef{bottom:746.770214pt;}
.y142{bottom:746.772814pt;}
.y9e{bottom:746.773466pt;}
.y1c2{bottom:751.770214pt;}
.ydf{bottom:751.772814pt;}
.y1e{bottom:751.773467pt;}
.y297{bottom:751.775414pt;}
.yc0{bottom:754.772814pt;}
.y150{bottom:755.772814pt;}
.y106{bottom:763.772814pt;}
.y24f{bottom:764.130213pt;}
.y182{bottom:764.772814pt;}
.y37{bottom:764.773466pt;}
.y2b8{bottom:764.775414pt;}
.y7c{bottom:765.773466pt;}
.y5b{bottom:769.773467pt;}
.y22e{bottom:770.130213pt;}
.y15e{bottom:771.772814pt;}
.y9d{bottom:772.773467pt;}
.y204{bottom:773.770214pt;}
.y2cf{bottom:773.775414pt;}
.y1c1{bottom:780.770214pt;}
.yde{bottom:780.772814pt;}
.y1d{bottom:780.773467pt;}
.y296{bottom:780.775414pt;}
.y24e{bottom:782.130213pt;}
.ybf{bottom:783.772814pt;}
.y1ee{bottom:784.770214pt;}
.y11a{bottom:784.772814pt;}
.y36{bottom:790.773466pt;}
.y5a{bottom:791.773466pt;}
.y105{bottom:792.772814pt;}
.y9c{bottom:794.773466pt;}
.y279{bottom:802.770214pt;}
.y181{bottom:802.772814pt;}
.y2ce{bottom:802.775414pt;}
.y22c{bottom:803.130213pt;}
.y1c0{bottom:809.770214pt;}
.ydd{bottom:809.772814pt;}
.y1c{bottom:809.773467pt;}
.y295{bottom:809.775414pt;}
.y203{bottom:811.770214pt;}
.ybe{bottom:812.772814pt;}
.y249{bottom:815.130208pt;}
.y35{bottom:816.440134pt;}
.y59{bottom:817.773466pt;}
.y9b{bottom:820.773466pt;}
.y22a{bottom:821.130213pt;}
.y104{bottom:821.772814pt;}
.y1ed{bottom:822.770214pt;}
.y119{bottom:822.772814pt;}
.y2b7{bottom:822.775414pt;}
.y278{bottom:831.770214pt;}
.y1bf{bottom:838.770214pt;}
.ydc{bottom:838.772814pt;}
.y1b{bottom:838.773467pt;}
.y294{bottom:838.775414pt;}
.y180{bottom:840.772814pt;}
.ybd{bottom:841.772814pt;}
.y58{bottom:843.440134pt;}
.y7b{bottom:843.773466pt;}
.y9a{bottom:846.773466pt;}
.y202{bottom:849.770214pt;}
.y103{bottom:850.772814pt;}
.y34{bottom:851.440134pt;}
.y1ec{bottom:860.770214pt;}
.y118{bottom:860.772814pt;}
.y2b6{bottom:860.775414pt;}
.y1be{bottom:867.770214pt;}
.ydb{bottom:867.772814pt;}
.y1a{bottom:867.773467pt;}
.y293{bottom:867.775414pt;}
.y7a{bottom:869.773466pt;}
.y99{bottom:872.773466pt;}
.y2e5{bottom:874.112040pt;}
.y17f{bottom:878.772814pt;}
.y57{bottom:878.773466pt;}
.y102{bottom:879.772814pt;}
.y33{bottom:886.440131pt;}
.y201{bottom:887.770208pt;}
.y79{bottom:895.773463pt;}
.y1bd{bottom:896.770208pt;}
.yda{bottom:896.772812pt;}
.y15{bottom:896.773139pt;}
.y19{bottom:896.773464pt;}
.y292{bottom:896.775416pt;}
.y1eb{bottom:898.770208pt;}
.y117{bottom:898.772812pt;}
.y98{bottom:898.773464pt;}
.y2b5{bottom:898.775416pt;}
.y56{bottom:904.773463pt;}
.ybc{bottom:912.772811pt;}
.y17e{bottom:916.772812pt;}
.y97{bottom:920.773464pt;}
.y32{bottom:921.440131pt;}
.y78{bottom:921.773463pt;}
.y1bc{bottom:925.770208pt;}
.yd9{bottom:925.772812pt;}
.y14{bottom:925.773139pt;}
.y18{bottom:925.773464pt;}
.y291{bottom:925.775416pt;}
.y55{bottom:930.773463pt;}
.y1ea{bottom:936.770208pt;}
.y101{bottom:936.772812pt;}
.y2b4{bottom:936.775416pt;}
.ybb{bottom:938.772812pt;}
.y96{bottom:942.773464pt;}
.y77{bottom:947.773463pt;}
.y1bb{bottom:954.770208pt;}
.yd8{bottom:954.772812pt;}
.y13{bottom:954.773139pt;}
.y17{bottom:954.773464pt;}
.y290{bottom:954.775416pt;}
.y31{bottom:956.440131pt;}
.y54{bottom:956.773463pt;}
.yba{bottom:960.772811pt;}
.y95{bottom:964.773463pt;}
.y76{bottom:973.440131pt;}
.y1e9{bottom:974.770208pt;}
.y100{bottom:974.772812pt;}
.y2b3{bottom:974.775416pt;}
.y53{bottom:982.773463pt;}
.y313{bottom:983.765000pt;}
.y1ba{bottom:983.770208pt;}
.yd7{bottom:983.772812pt;}
.y28f{bottom:983.775416pt;}
.yb9{bottom:986.772812pt;}
.y94{bottom:990.773464pt;}
.y2e0{bottom:990.775416pt;}
.yb8{bottom:1008.772811pt;}
.y52{bottom:1008.773463pt;}
.y312{bottom:1012.765000pt;}
.y1b9{bottom:1012.770208pt;}
.yd6{bottom:1012.772812pt;}
.y12{bottom:1012.773139pt;}
.y16{bottom:1012.773464pt;}
.y28e{bottom:1012.775416pt;}
.y19d{bottom:1019.109438pt;}
.y311{bottom:1028.125000pt;}
.y1b7{bottom:1028.130208pt;}
.yf2{bottom:1028.132812pt;}
.y28c{bottom:1028.135416pt;}
.hc{height:28.687500pt;}
.h11{height:32.000000pt;}
.hb{height:34.425001pt;}
.h10{height:43.375000pt;}
.hf{height:44.437500pt;}
.h8{height:47.812499pt;}
.h13{height:50.000000pt;}
.h12{height:52.106772pt;}
.h14{height:52.593751pt;}
.h4{height:56.843750pt;}
.h5{height:57.375000pt;}
.ha{height:59.768999pt;}
.h19{height:68.000000pt;}
.h6{height:76.500002pt;}
.h18{height:86.000000pt;}
.h1{height:86.062500pt;}
.h20{height:94.197920pt;}
.h9{height:94.200520pt;}
.he{height:94.203120pt;}
.h23{height:94.208333pt;}
.h21{height:94.531251pt;}
.h7{height:94.533855pt;}
.hd{height:94.536459pt;}
.h24{height:94.541667pt;}
.h3{height:95.624998pt;}
.h15{height:104.000000pt;}
.h2{height:104.213544pt;}
.h22{height:113.687500pt;}
.h1b{height:158.000000pt;}
.h1c{height:176.000000pt;}
.h17{height:212.000000pt;}
.h1e{height:248.000000pt;}
.h1f{height:302.000000pt;}
.h16{height:320.000000pt;}
.h1d{height:356.000000pt;}
.h1a{height:374.000000pt;}
.h0{height:1122.666667pt;}
.w2{width:101.999989pt;}
.w3{width:102.999980pt;}
.w4{width:103.000000pt;}
.w5{width:103.000041pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x20{left:7.000000pt;}
.x25{left:55.000000pt;}
.x12{left:94.533336pt;}
.x1f{left:95.533336pt;}
.x17{left:98.533336pt;}
.xf{left:113.494928pt;}
.xe{left:114.975396pt;}
.x13{left:118.533336pt;}
.xb{left:130.741493pt;}
.x27{left:132.533336pt;}
.x16{left:141.533336pt;}
.x4{left:143.317977pt;}
.x1b{left:146.533336pt;}
.x10{left:152.959770pt;}
.x1a{left:160.533336pt;}
.x14{left:166.533336pt;}
.xa{left:171.013606pt;}
.x1e{left:188.533336pt;}
.x6{left:190.862117pt;}
.x21{left:197.533345pt;}
.x1c{left:214.533336pt;}
.x2{left:230.045741pt;}
.x1d{left:238.533336pt;}
.xc{left:251.779353pt;}
.x5{left:276.997816pt;}
.x3{left:281.958006pt;}
.x9{left:285.196106pt;}
.x22{left:300.533320pt;}
.x28{left:313.856116pt;}
.x1{left:316.196106pt;}
.x11{left:318.081566pt;}
.x2a{left:339.637366pt;}
.xd{left:359.108196pt;}
.x8{left:365.759656pt;}
.x7{left:390.108196pt;}
.x29{left:396.320966pt;}
.x18{left:399.652996pt;}
.x15{left:402.985026pt;}
.x26{left:404.017707pt;}
.x23{left:506.533320pt;}
.x24{left:609.533320pt;}
.x19{left:675.267707pt;}
}




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