
    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_d127d75fb9d82b0a0aad59ad.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.951000;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_2ee2cae9f7ecff79f67f9330.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.949000;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_212288107058900c622a3f4e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.947000;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_e72159719a5d509e692fe48c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.972000;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_1155ed1fcf2689fc15893078.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.894000;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_bde7856a16199b9416926bf2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.722000;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_5e08c2517fc4bc3a49ead40d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.846000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d6436e771d9e1209c17d339f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.805664;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5e08c2517fc4bc3a49ead40d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.846000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_39d7de0cf4aaced339e1d6d7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.722000;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;}
.mb{transform:matrix(0.000000,-0.241382,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.241382,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.241382,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.212501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212501,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.217331,0.000000,-0.064705,0.241481,0,0);-ms-transform:matrix(0.217331,0.000000,-0.064705,0.241481,0,0);-webkit-transform:matrix(0.217331,0.000000,-0.064705,0.241481,0,0);}
.m4{transform:matrix(0.217334,0.000000,-0.064704,0.241482,0,0);-ms-transform:matrix(0.217334,0.000000,-0.064704,0.241482,0,0);-webkit-transform:matrix(0.217334,0.000000,-0.064704,0.241482,0,0);}
.m2{transform:matrix(0.224998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224998,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.241382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241382,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.241383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241383,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,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);}
.m8{transform:matrix(0.254706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254706,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.254707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254707,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.v3{vertical-align:-5.922938px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:4.659600px;}
.v1{vertical-align:19.512000px;}
.ls8{letter-spacing:-3.322176px;}
.ls5{letter-spacing:-2.880000px;}
.ls4{letter-spacing:-0.810000px;}
.ls2{letter-spacing:-0.600000px;}
.lsc{letter-spacing:-0.540000px;}
.ls0{letter-spacing:-0.510000px;}
.ls3{letter-spacing:-0.378000px;}
.ls1{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.266799px;}
.lsb{letter-spacing:0.540000px;}
.ls9{letter-spacing:0.600000px;}
.ls6{letter-spacing:0.960476px;}
.ls7{letter-spacing:728.361270px;}
.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;}
}
.ws2b{word-spacing:-72.000000px;}
.ws9f{word-spacing:-66.000000px;}
.ws70{word-spacing:-60.000000px;}
.wsa0{word-spacing:-54.000000px;}
.wsac{word-spacing:-15.984000px;}
.ws71{word-spacing:-13.320000px;}
.ws9e{word-spacing:-11.988000px;}
.ws0{word-spacing:-11.178000px;}
.ws2c{word-spacing:-7.725600px;}
.ws7a{word-spacing:-3.600000px;}
.wsa5{word-spacing:-3.000000px;}
.ws4a{word-spacing:-2.880000px;}
.ws96{word-spacing:-2.828069px;}
.wse0{word-spacing:-2.700000px;}
.ws8d{word-spacing:-2.580000px;}
.ws7b{word-spacing:-2.520000px;}
.ws6b{word-spacing:-2.460000px;}
.wsd5{word-spacing:-2.376000px;}
.ws25{word-spacing:-2.322000px;}
.ws5b{word-spacing:-2.280000px;}
.ws6a{word-spacing:-2.220000px;}
.wsf2{word-spacing:-2.214000px;}
.wsa{word-spacing:-2.160000px;}
.ws72{word-spacing:-2.100000px;}
.ws56{word-spacing:-1.920000px;}
.ws37{word-spacing:-1.860000px;}
.ws11{word-spacing:-1.800000px;}
.wsff{word-spacing:-1.782000px;}
.wsaf{word-spacing:-1.740000px;}
.ws23{word-spacing:-1.728000px;}
.wsc0{word-spacing:-1.680000px;}
.ws26{word-spacing:-1.674000px;}
.ws4e{word-spacing:-1.620000px;}
.wsca{word-spacing:-1.500000px;}
.wsd1{word-spacing:-1.458000px;}
.ws49{word-spacing:-1.440000px;}
.wsf6{word-spacing:-1.404000px;}
.ws86{word-spacing:-1.380000px;}
.ws104{word-spacing:-1.350000px;}
.ws3c{word-spacing:-1.320000px;}
.wse9{word-spacing:-1.296000px;}
.wsd6{word-spacing:-1.242000px;}
.wsc6{word-spacing:-1.200000px;}
.ws28{word-spacing:-1.188000px;}
.ws4f{word-spacing:-1.140000px;}
.wsea{word-spacing:-1.134000px;}
.wsae{word-spacing:-1.080000px;}
.wscb{word-spacing:-1.020000px;}
.ws44{word-spacing:-0.960000px;}
.wse7{word-spacing:-0.918000px;}
.wsb4{word-spacing:-0.900000px;}
.wseb{word-spacing:-0.864000px;}
.ws8f{word-spacing:-0.840000px;}
.wsce{word-spacing:-0.810000px;}
.ws59{word-spacing:-0.720000px;}
.ws5f{word-spacing:-0.660000px;}
.wsa4{word-spacing:-0.600000px;}
.wse2{word-spacing:-0.594000px;}
.wsf4{word-spacing:-0.540000px;}
.wsed{word-spacing:-0.486000px;}
.ws55{word-spacing:-0.480000px;}
.wsda{word-spacing:-0.432000px;}
.ws65{word-spacing:-0.420000px;}
.wsba{word-spacing:-0.360000px;}
.ws13{word-spacing:-0.240000px;}
.ws29{word-spacing:-0.216000px;}
.ws6e{word-spacing:-0.120000px;}
.ws2a{word-spacing:-0.108000px;}
.ws1{word-spacing:-0.081000px;}
.ws2{word-spacing:-0.066000px;}
.ws5a{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
.wse3{word-spacing:0.162000px;}
.ws93{word-spacing:0.213439px;}
.wsfa{word-spacing:0.216000px;}
.ws3e{word-spacing:0.240000px;}
.wsb7{word-spacing:0.300000px;}
.wsa9{word-spacing:0.320159px;}
.ws22{word-spacing:0.378000px;}
.ws4c{word-spacing:0.420000px;}
.wsdc{word-spacing:0.432000px;}
.ws97{word-spacing:0.480238px;}
.ws4{word-spacing:0.510000px;}
.ws90{word-spacing:0.540000px;}
.wsfc{word-spacing:0.594000px;}
.ws3d{word-spacing:0.600000px;}
.ws7f{word-spacing:0.660000px;}
.ws94{word-spacing:0.693677px;}
.wsb8{word-spacing:0.720000px;}
.wsef{word-spacing:0.756000px;}
.wsa6{word-spacing:0.780000px;}
.ws46{word-spacing:0.840000px;}
.ws83{word-spacing:0.900000px;}
.ws91{word-spacing:0.907117px;}
.wscf{word-spacing:0.918000px;}
.wsdd{word-spacing:0.972000px;}
.ws1a{word-spacing:1.020000px;}
.ws1c{word-spacing:1.080000px;}
.ws2f{word-spacing:1.140000px;}
.wsf9{word-spacing:1.188000px;}
.ws21{word-spacing:1.200000px;}
.ws5d{word-spacing:1.260000px;}
.ws102{word-spacing:1.350000px;}
.ws1e{word-spacing:1.380000px;}
.wsc3{word-spacing:1.440000px;}
.ws42{word-spacing:1.500000px;}
.ws57{word-spacing:1.560000px;}
.ws50{word-spacing:1.620000px;}
.ws101{word-spacing:1.674000px;}
.wsb1{word-spacing:1.740000px;}
.wscd{word-spacing:1.782000px;}
.ws33{word-spacing:1.800000px;}
.ws58{word-spacing:1.860000px;}
.wsfe{word-spacing:1.890000px;}
.wscc{word-spacing:1.920000px;}
.ws47{word-spacing:1.980000px;}
.ws24{word-spacing:1.998000px;}
.ws4b{word-spacing:2.040000px;}
.wsd2{word-spacing:2.052000px;}
.ws84{word-spacing:2.100000px;}
.ws61{word-spacing:2.160000px;}
.ws32{word-spacing:2.220000px;}
.ws98{word-spacing:2.294471px;}
.ws20{word-spacing:2.400000px;}
.ws7d{word-spacing:2.460000px;}
.ws95{word-spacing:2.507911px;}
.ws17{word-spacing:2.520000px;}
.wsc2{word-spacing:2.580000px;}
.ws43{word-spacing:2.640000px;}
.ws30{word-spacing:2.700000px;}
.wse6{word-spacing:2.754000px;}
.ws40{word-spacing:2.760000px;}
.ws2d{word-spacing:2.880000px;}
.wse8{word-spacing:2.916000px;}
.wsc5{word-spacing:3.060000px;}
.wse1{word-spacing:3.078000px;}
.wsb{word-spacing:3.120000px;}
.ws3f{word-spacing:3.180000px;}
.ws27{word-spacing:3.294000px;}
.wse{word-spacing:3.300000px;}
.ws9c{word-spacing:3.322176px;}
.wsa7{word-spacing:3.360000px;}
.ws68{word-spacing:3.420000px;}
.ws51{word-spacing:3.480000px;}
.wsb0{word-spacing:3.540000px;}
.ws34{word-spacing:3.600000px;}
.wsa3{word-spacing:3.660000px;}
.ws4d{word-spacing:3.720000px;}
.ws1b{word-spacing:3.780000px;}
.ws81{word-spacing:3.840000px;}
.wsc{word-spacing:3.900000px;}
.wsd9{word-spacing:3.942000px;}
.wsd4{word-spacing:4.104000px;}
.ws78{word-spacing:4.140000px;}
.wsf7{word-spacing:4.158000px;}
.wsdb{word-spacing:4.212000px;}
.ws16{word-spacing:4.260000px;}
.wsb9{word-spacing:4.320000px;}
.wsd7{word-spacing:4.374000px;}
.ws87{word-spacing:4.380000px;}
.ws80{word-spacing:4.440000px;}
.wsf0{word-spacing:4.482000px;}
.ws52{word-spacing:4.500000px;}
.wsd0{word-spacing:4.536000px;}
.ws12{word-spacing:4.560000px;}
.wsf1{word-spacing:4.590000px;}
.wsa8{word-spacing:4.740000px;}
.ws79{word-spacing:4.800000px;}
.wsc7{word-spacing:4.920000px;}
.wsfb{word-spacing:4.968000px;}
.ws73{word-spacing:4.980000px;}
.ws53{word-spacing:5.040000px;}
.ws39{word-spacing:5.160000px;}
.wsf8{word-spacing:5.184000px;}
.ws5c{word-spacing:5.220000px;}
.ws6d{word-spacing:5.340000px;}
.ws6{word-spacing:5.400000px;}
.ws8{word-spacing:5.460000px;}
.ws92{word-spacing:5.496059px;}
.wsde{word-spacing:5.508000px;}
.wse5{word-spacing:5.616000px;}
.wsa2{word-spacing:5.640000px;}
.wsdf{word-spacing:5.724000px;}
.ws69{word-spacing:5.760000px;}
.ws85{word-spacing:5.820000px;}
.wsf3{word-spacing:5.832000px;}
.ws62{word-spacing:5.880000px;}
.ws103{word-spacing:5.994000px;}
.ws48{word-spacing:6.000000px;}
.ws5e{word-spacing:6.060000px;}
.wsbf{word-spacing:6.120000px;}
.ws66{word-spacing:6.240000px;}
.wse4{word-spacing:6.318000px;}
.ws5{word-spacing:6.360000px;}
.ws38{word-spacing:6.420000px;}
.ws3b{word-spacing:6.540000px;}
.ws76{word-spacing:6.600000px;}
.ws36{word-spacing:6.780000px;}
.wsf5{word-spacing:6.804000px;}
.ws64{word-spacing:6.840000px;}
.wsb5{word-spacing:6.960000px;}
.ws31{word-spacing:7.020000px;}
.wsd3{word-spacing:7.074000px;}
.ws7e{word-spacing:7.140000px;}
.ws9b{word-spacing:7.256933px;}
.ws60{word-spacing:7.380000px;}
.ws1f{word-spacing:7.440000px;}
.ws45{word-spacing:7.500000px;}
.wsbc{word-spacing:7.560000px;}
.wsfd{word-spacing:7.668000px;}
.wsc9{word-spacing:7.680000px;}
.ws77{word-spacing:7.800000px;}
.wsc8{word-spacing:7.860000px;}
.ws9{word-spacing:7.920000px;}
.ws99{word-spacing:7.950610px;}
.ws18{word-spacing:8.100000px;}
.ws6c{word-spacing:8.280000px;}
.ws7{word-spacing:8.340000px;}
.ws63{word-spacing:8.400000px;}
.ws2e{word-spacing:8.460000px;}
.wsa1{word-spacing:8.520000px;}
.ws82{word-spacing:8.640000px;}
.wsd{word-spacing:8.820000px;}
.wsc1{word-spacing:8.940000px;}
.ws15{word-spacing:9.000000px;}
.ws9a{word-spacing:9.017806px;}
.ws35{word-spacing:9.060000px;}
.ws54{word-spacing:9.120000px;}
.wsee{word-spacing:9.180000px;}
.wsbd{word-spacing:9.480000px;}
.ws41{word-spacing:9.540000px;}
.wsc4{word-spacing:9.600000px;}
.ws75{word-spacing:9.780000px;}
.wsbb{word-spacing:9.900000px;}
.wsec{word-spacing:9.936000px;}
.wsad{word-spacing:9.960000px;}
.wsb3{word-spacing:10.020000px;}
.ws74{word-spacing:10.200000px;}
.wsf{word-spacing:10.320000px;}
.wsd8{word-spacing:10.638000px;}
.ws3a{word-spacing:10.740000px;}
.wsb2{word-spacing:10.800000px;}
.ws100{word-spacing:10.908000px;}
.ws19{word-spacing:10.980000px;}
.wsbe{word-spacing:11.100000px;}
.ws1d{word-spacing:11.340000px;}
.ws8e{word-spacing:11.820000px;}
.ws89{word-spacing:12.540000px;}
.ws88{word-spacing:15.300000px;}
.wsb6{word-spacing:15.840000px;}
.ws14{word-spacing:16.080000px;}
.ws10{word-spacing:19.140000px;}
.ws67{word-spacing:21.660000px;}
.ws7c{word-spacing:23.040000px;}
.wsaa{word-spacing:30.510000px;}
.ws8b{word-spacing:181.170000px;}
.wsab{word-spacing:223.128000px;}
.ws8a{word-spacing:293.652000px;}
.ws8c{word-spacing:716.515394px;}
.ws9d{word-spacing:1516.378796px;}
.ws6f{word-spacing:2246.211000px;}
._2e{margin-left:-1094.872620px;}
._2c{margin-left:-496.673304px;}
._10{margin-left:-167.904000px;}
._36{margin-left:-66.792000px;}
._12{margin-left:-61.428000px;}
._8{margin-left:-14.052000px;}
._41{margin-left:-13.014000px;}
._5{margin-left:-8.454000px;}
._9{margin-left:-6.240000px;}
._0{margin-left:-4.488000px;}
._4{margin-left:-3.438000px;}
._2{margin-left:-2.346000px;}
._1{margin-left:-1.122000px;}
._6{width:1.200000px;}
._7{width:4.764000px;}
._e{width:24.300000px;}
._48{width:25.596000px;}
._47{width:28.080000px;}
._13{width:30.510000px;}
._49{width:31.914000px;}
._15{width:48.330000px;}
._43{width:50.166000px;}
._45{width:51.408000px;}
._44{width:52.488000px;}
._16{width:54.324000px;}
._42{width:55.566000px;}
._46{width:56.808000px;}
._3{width:58.942092px;}
._20{width:60.210000px;}
._21{width:66.258000px;}
._22{width:73.986000px;}
._1f{width:78.192000px;}
._1c{width:85.974000px;}
._1b{width:90.126000px;}
._19{width:96.147000px;}
._2a{width:101.008162px;}
._1a{width:102.222000px;}
._11{width:107.646000px;}
._1d{width:111.294000px;}
._3e{width:114.264000px;}
._b{width:120.312000px;}
._28{width:124.908000px;}
._c{width:126.279000px;}
._23{width:129.276000px;}
._25{width:132.219000px;}
._29{width:138.213000px;}
._14{width:139.974000px;}
._35{width:143.232000px;}
._38{width:145.155000px;}
._26{width:150.228000px;}
._24{width:156.222000px;}
._1e{width:162.162000px;}
._27{width:169.266000px;}
._18{width:180.198000px;}
._17{width:199.236000px;}
._3f{width:200.718000px;}
._3d{width:203.688000px;}
._3c{width:205.284600px;}
._37{width:223.045200px;}
._40{width:235.200000px;}
._39{width:236.628000px;}
._3b{width:248.616000px;}
._3a{width:260.604000px;}
._33{width:269.136000px;}
._f{width:286.362000px;}
._34{width:288.330000px;}
._d{width:305.991000px;}
._32{width:338.958000px;}
._31{width:354.105000px;}
._2d{width:359.617560px;}
._2b{width:366.469548px;}
._2f{width:433.452922px;}
._30{width:460.998000px;}
._a{width:671.490000px;}
.fc4{color:rgb(237,29,36);}
.fc3{color:transparent;}
.fc1{color:rgb(99,100,102);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:34.800000px;}
.fsf{font-size:41.527200px;}
.fsd{font-size:42.000000px;}
.fs3{font-size:43.233092px;}
.fs11{font-size:43.485600px;}
.fsc{font-size:48.000000px;}
.fs0{font-size:51.000000px;}
.fse{font-size:53.359800px;}
.fs9{font-size:54.000000px;}
.fs10{font-size:55.247400px;}
.fs4{font-size:60.000000px;}
.fs5{font-size:62.116583px;}
.fsb{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs2{font-size:74.539900px;}
.fsa{font-size:81.000000px;}
.fs1{font-size:96.000000px;}
.fs7{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y116{bottom:63.754269px;}
.y14b{bottom:63.759000px;}
.y6{bottom:63.779550px;}
.ya7{bottom:63.784500px;}
.y1cc{bottom:63.807600px;}
.y105{bottom:63.849000px;}
.y75{bottom:63.866550px;}
.y158{bottom:63.954000px;}
.y1a0{bottom:63.958950px;}
.yef{bottom:71.425050px;}
.y5{bottom:76.529550px;}
.y115{bottom:79.321991px;}
.y1cb{bottom:80.588100px;}
.y14a{bottom:82.704000px;}
.ya6{bottom:82.729500px;}
.y74{bottom:82.766550px;}
.y19f{bottom:82.903950px;}
.y104{bottom:83.334000px;}
.yee{bottom:83.426550px;}
.y4{bottom:92.660700px;}
.y114{bottom:94.889712px;}
.yed{bottom:95.428050px;}
.y1ca{bottom:97.368600px;}
.y157{bottom:101.454000px;}
.y149{bottom:101.649000px;}
.y73{bottom:101.666550px;}
.ya5{bottom:101.674500px;}
.y19e{bottom:101.848950px;}
.y103{bottom:102.819000px;}
.y3{bottom:109.579950px;}
.y113{bottom:110.457434px;}
.y1c9{bottom:114.149100px;}
.yec{bottom:120.200700px;}
.y156{bottom:120.204000px;}
.y72{bottom:120.566550px;}
.y148{bottom:120.594000px;}
.ya4{bottom:120.619500px;}
.y19d{bottom:120.793950px;}
.y102{bottom:122.304000px;}
.y2{bottom:125.326200px;}
.y112{bottom:126.025156px;}
.y1c8{bottom:130.929600px;}
.y155{bottom:138.954000px;}
.y71{bottom:139.466550px;}
.y147{bottom:139.539000px;}
.ya3{bottom:139.564500px;}
.y19c{bottom:139.738950px;}
.y1{bottom:141.072450px;}
.y111{bottom:141.592877px;}
.y101{bottom:141.789000px;}
.yeb{bottom:142.327200px;}
.y1c7{bottom:147.710100px;}
.y110{bottom:157.160599px;}
.y154{bottom:157.704000px;}
.y70{bottom:158.366550px;}
.y146{bottom:158.484000px;}
.ya2{bottom:158.509500px;}
.y19b{bottom:158.683950px;}
.yea{bottom:164.453700px;}
.y1c6{bottom:164.490600px;}
.y32{bottom:168.277800px;}
.y20{bottom:168.322800px;}
.y153{bottom:176.454000px;}
.y6f{bottom:177.266550px;}
.y145{bottom:177.429000px;}
.ya1{bottom:177.454500px;}
.y19a{bottom:177.628950px;}
.y100{bottom:180.759000px;}
.y1c5{bottom:181.271100px;}
.ye9{bottom:186.580200px;}
.y1f{bottom:187.132800px;}
.y31{bottom:187.207800px;}
.y152{bottom:195.204000px;}
.y133{bottom:196.139080px;}
.y6e{bottom:196.166550px;}
.y144{bottom:196.374000px;}
.ya0{bottom:196.399500px;}
.y199{bottom:196.573950px;}
.y1c4{bottom:198.051600px;}
.yff{bottom:200.244000px;}
.y30{bottom:205.387800px;}
.y1e{bottom:205.942800px;}
.y13d{bottom:207.237224px;}
.ye8{bottom:208.706700px;}
.y151{bottom:213.954000px;}
.y6d{bottom:215.066550px;}
.y9f{bottom:215.344500px;}
.y198{bottom:215.518950px;}
.yfe{bottom:219.729000px;}
.y2f{bottom:223.567800px;}
.y1d{bottom:224.752800px;}
.ye7{bottom:230.833200px;}
.y150{bottom:232.704000px;}
.y6c{bottom:233.966550px;}
.y9e{bottom:234.289500px;}
.y13c{bottom:234.354486px;}
.y197{bottom:234.463950px;}
.y143{bottom:236.575950px;}
.y1c3{bottom:240.347400px;}
.y2e{bottom:241.747800px;}
.y1c{bottom:243.562800px;}
.y14f{bottom:251.454000px;}
.y6b{bottom:252.866550px;}
.ye6{bottom:252.959700px;}
.y9d{bottom:253.234500px;}
.y196{bottom:253.408950px;}
.yfd{bottom:258.699000px;}
.y2d{bottom:259.927800px;}
.y1b{bottom:262.372800px;}
.y13b{bottom:262.966727px;}
.y14e{bottom:270.204000px;}
.y6a{bottom:271.766550px;}
.y9c{bottom:272.179500px;}
.y195{bottom:272.353950px;}
.ye5{bottom:275.086200px;}
.y2c{bottom:278.107800px;}
.yfc{bottom:278.184000px;}
.y1a{bottom:281.182800px;}
.y13e{bottom:284.276550px;}
.y142{bottom:288.780900px;}
.y14d{bottom:288.954000px;}
.y13a{bottom:289.907498px;}
.y69{bottom:290.666550px;}
.y9b{bottom:291.139950px;}
.y194{bottom:291.298950px;}
.y1c2{bottom:292.630950px;}
.y2b{bottom:296.287800px;}
.ye4{bottom:297.212700px;}
.yfb{bottom:297.669000px;}
.y19{bottom:299.992800px;}
.y14c{bottom:307.704000px;}
.y141{bottom:307.725900px;}
.y68{bottom:309.566550px;}
.y9a{bottom:310.084950px;}
.y1c1{bottom:310.167450px;}
.y193{bottom:310.243950px;}
.y2a{bottom:314.467800px;}
.yfa{bottom:317.154000px;}
.y139{bottom:317.554231px;}
.y18{bottom:318.802800px;}
.ye3{bottom:319.339200px;}
.y1c0{bottom:327.703950px;}
.y67{bottom:328.466550px;}
.y99{bottom:329.029950px;}
.y192{bottom:329.188950px;}
.y29{bottom:332.647800px;}
.yf9{bottom:336.639000px;}
.y17{bottom:337.612800px;}
.y135{bottom:338.006377px;}
.y223{bottom:339.837300px;}
.y1f8{bottom:339.860850px;}
.y140{bottom:341.237700px;}
.ye2{bottom:341.465700px;}
.y1bf{bottom:345.240450px;}
.y138{bottom:345.553946px;}
.y66{bottom:347.438550px;}
.y98{bottom:347.974950px;}
.y191{bottom:348.133950px;}
.y28{bottom:350.827800px;}
.y16b{bottom:353.060400px;}
.yf8{bottom:356.124000px;}
.y1f7{bottom:356.371350px;}
.y16{bottom:356.422800px;}
.y222{bottom:356.752800px;}
.y1be{bottom:362.776950px;}
.ye1{bottom:363.592200px;}
.y16a{bottom:365.058900px;}
.y65{bottom:366.338550px;}
.y190{bottom:367.078950px;}
.y27{bottom:369.007800px;}
.y137{bottom:372.764644px;}
.y1f6{bottom:372.881850px;}
.y221{bottom:373.668300px;}
.y15{bottom:375.232800px;}
.yf7{bottom:375.609000px;}
.y169{bottom:377.060400px;}
.y1bd{bottom:380.313450px;}
.y64{bottom:385.238550px;}
.y97{bottom:385.864950px;}
.y18f{bottom:386.023950px;}
.y26{bottom:387.187800px;}
.y168{bottom:389.061900px;}
.y1f5{bottom:389.416050px;}
.y220{bottom:390.560550px;}
.y14{bottom:394.042800px;}
.ye0{bottom:394.223700px;}
.yf6{bottom:395.094000px;}
.y136{bottom:400.494431px;}
.y96{bottom:404.809950px;}
.y18e{bottom:404.968950px;}
.y25{bottom:405.367800px;}
.y1f4{bottom:405.926550px;}
.y21f{bottom:407.476050px;}
.y13{bottom:412.852800px;}
.y167{bottom:413.822250px;}
.yf5{bottom:414.579000px;}
.y1bc{bottom:416.128950px;}
.y1f3{bottom:422.437050px;}
.y63{bottom:423.053550px;}
.y24{bottom:423.547800px;}
.y95{bottom:423.754950px;}
.y18d{bottom:423.913950px;}
.y21e{bottom:424.391550px;}
.ydf{bottom:424.855200px;}
.y134{bottom:429.117054px;}
.y12{bottom:431.662800px;}
.yf4{bottom:434.064000px;}
.y166{bottom:435.948750px;}
.y132{bottom:436.591950px;}
.y1f2{bottom:438.947550px;}
.y21d{bottom:441.307050px;}
.y23{bottom:441.727800px;}
.y62{bottom:441.953550px;}
.y94{bottom:442.699950px;}
.y18c{bottom:442.858950px;}
.yf3{bottom:453.549000px;}
.y13f{bottom:453.837150px;}
.y1f1{bottom:455.475900px;}
.yde{bottom:457.613100px;}
.y165{bottom:458.075250px;}
.y21c{bottom:458.211000px;}
.y1bb{bottom:459.706950px;}
.y22{bottom:459.907800px;}
.y61{bottom:460.853550px;}
.y93{bottom:461.644950px;}
.y18b{bottom:461.803950px;}
.y1f0{bottom:471.986400px;}
.yf2{bottom:473.034000px;}
.ydd{bottom:473.363100px;}
.y21b{bottom:475.126500px;}
.y11{bottom:475.980600px;}
.y21{bottom:478.087800px;}
.y60{bottom:479.753550px;}
.y164{bottom:480.208950px;}
.y92{bottom:480.589950px;}
.y18a{bottom:480.748950px;}
.y125{bottom:484.488750px;}
.y1ef{bottom:488.496900px;}
.y21a{bottom:492.018750px;}
.yf1{bottom:492.519000px;}
.y5f{bottom:498.653550px;}
.y91{bottom:499.534950px;}
.y189{bottom:499.693950px;}
.y1ba{bottom:499.771800px;}
.y12f{bottom:500.694740px;}
.y163{bottom:502.335450px;}
.y1ee{bottom:505.031250px;}
.y219{bottom:508.934250px;}
.yf0{bottom:512.004000px;}
.y5e{bottom:517.553550px;}
.y90{bottom:518.479950px;}
.y188{bottom:518.638950px;}
.y1b9{bottom:518.806800px;}
.ydc{bottom:519.867450px;}
.yc3{bottom:520.326450px;}
.y1ed{bottom:521.541750px;}
.y40{bottom:524.095500px;}
.y162{bottom:524.461950px;}
.y218{bottom:525.849750px;}
.y12e{bottom:527.812001px;}
.y5d{bottom:536.453550px;}
.y8f{bottom:537.424950px;}
.y187{bottom:537.583950px;}
.y1b8{bottom:537.841800px;}
.y1ec{bottom:538.052250px;}
.ydb{bottom:539.022450px;}
.y3f{bottom:539.094000px;}
.yc2{bottom:539.211450px;}
.y217{bottom:542.765250px;}
.y10c{bottom:544.089178px;}
.y161{bottom:546.588450px;}
.y3e{bottom:554.092500px;}
.y1eb{bottom:554.562750px;}
.y5c{bottom:555.353550px;}
.y8e{bottom:556.369950px;}
.y12d{bottom:556.424242px;}
.y186{bottom:556.528950px;}
.y1b7{bottom:556.876800px;}
.yc1{bottom:558.096450px;}
.yda{bottom:558.177450px;}
.y10a{bottom:559.639013px;}
.y10b{bottom:559.656900px;}
.y216{bottom:559.657650px;}
.y160{bottom:568.714950px;}
.y3d{bottom:569.091000px;}
.y1ea{bottom:571.097100px;}
.y5b{bottom:574.253550px;}
.y109{bottom:575.206735px;}
.y8d{bottom:575.314950px;}
.y185{bottom:575.473950px;}
.y1b6{bottom:575.911800px;}
.y215{bottom:576.573150px;}
.yc0{bottom:576.974850px;}
.yd9{bottom:577.332450px;}
.y130{bottom:577.737450px;}
.y12c{bottom:583.365013px;}
.y3c{bottom:584.089500px;}
.y1e9{bottom:587.607600px;}
.y108{bottom:590.774457px;}
.y15f{bottom:590.842200px;}
.y5a{bottom:593.153550px;}
.y214{bottom:593.488650px;}
.y8c{bottom:594.259950px;}
.y184{bottom:594.418950px;}
.y1b5{bottom:594.946800px;}
.ybf{bottom:595.853250px;}
.yd8{bottom:596.487450px;}
.y3b{bottom:599.088000px;}
.y1e8{bottom:604.118100px;}
.y107{bottom:606.342178px;}
.y213{bottom:610.404150px;}
.y12b{bottom:611.011747px;}
.y59{bottom:612.053550px;}
.y8b{bottom:613.204950px;}
.y183{bottom:613.363950px;}
.y3a{bottom:614.086500px;}
.ybe{bottom:614.731650px;}
.yd7{bottom:615.642450px;}
.y1e7{bottom:620.628600px;}
.y15e{bottom:621.473700px;}
.y106{bottom:621.909900px;}
.y212{bottom:627.296400px;}
.y39{bottom:629.085000px;}
.y58{bottom:630.953550px;}
.y8a{bottom:632.149950px;}
.y182{bottom:632.308950px;}
.ybd{bottom:633.596850px;}
.yd6{bottom:634.797450px;}
.y1b4{bottom:635.240550px;}
.y1e6{bottom:637.156950px;}
.y12a{bottom:639.011461px;}
.y38{bottom:644.083500px;}
.y211{bottom:644.211900px;}
.y89{bottom:651.094950px;}
.y181{bottom:651.253950px;}
.y15d{bottom:652.105200px;}
.ybc{bottom:652.481850px;}
.y1e5{bottom:653.667450px;}
.yd5{bottom:653.952450px;}
.y37{bottom:659.082000px;}
.y210{bottom:661.127400px;}
.y129{bottom:666.222159px;}
.y88{bottom:670.039950px;}
.y1e4{bottom:670.177950px;}
.y180{bottom:670.198950px;}
.y57{bottom:671.119200px;}
.ybb{bottom:671.366850px;}
.yd4{bottom:673.107450px;}
.y36{bottom:674.080500px;}
.y20f{bottom:678.042900px;}
.y15c{bottom:684.863100px;}
.y1e3{bottom:686.712300px;}
.y1b3{bottom:687.703950px;}
.y87{bottom:688.984950px;}
.y35{bottom:689.079000px;}
.y17f{bottom:689.143950px;}
.yba{bottom:690.141150px;}
.y128{bottom:693.951947px;}
.y20e{bottom:694.935300px;}
.y1e2{bottom:703.222800px;}
.y34{bottom:704.077500px;}
.y1b2{bottom:706.738950px;}
.y17e{bottom:708.088950px;}
.yb9{bottom:709.026150px;}
.y20d{bottom:711.850800px;}
.yd3{bottom:713.517900px;}
.y33{bottom:719.076000px;}
.y1e1{bottom:719.733300px;}
.y127{bottom:722.564188px;}
.y1b1{bottom:725.773950px;}
.y86{bottom:726.874950px;}
.y17d{bottom:727.120950px;}
.y56{bottom:727.548450px;}
.yb8{bottom:727.911150px;}
.y20c{bottom:728.766300px;}
.y126{bottom:735.427238px;}
.y1e0{bottom:736.243800px;}
.y15a{bottom:740.062078px;}
.y15b{bottom:740.066550px;}
.y41{bottom:741.368250px;}
.y131{bottom:742.192350px;}
.y1b0{bottom:744.808950px;}
.y20b{bottom:745.681800px;}
.y85{bottom:745.819950px;}
.y17c{bottom:746.065950px;}
.y55{bottom:746.460150px;}
.yb7{bottom:746.796150px;}
.y1df{bottom:752.778000px;}
.y159{bottom:755.629800px;}
.yd2{bottom:761.662050px;}
.y10f{bottom:762.474170px;}
.y20a{bottom:762.574050px;}
.y1af{bottom:763.843950px;}
.y84{bottom:764.764950px;}
.y17b{bottom:765.010950px;}
.y54{bottom:765.360150px;}
.yb6{bottom:765.681150px;}
.y1de{bottom:769.288500px;}
.y123{bottom:772.843800px;}
.y120{bottom:772.852022px;}
.y209{bottom:779.489550px;}
.yd1{bottom:780.817050px;}
.y1ae{bottom:782.878950px;}
.y83{bottom:783.709950px;}
.y17a{bottom:783.955950px;}
.y53{bottom:784.341300px;}
.yb5{bottom:784.566150px;}
.y1dd{bottom:785.799000px;}
.y11f{bottom:788.705030px;}
.y208{bottom:796.405050px;}
.yd0{bottom:799.972050px;}
.y1ad{bottom:801.913950px;}
.y1dc{bottom:802.309500px;}
.y82{bottom:802.654950px;}
.y179{bottom:802.900950px;}
.y52{bottom:803.241300px;}
.yb4{bottom:803.451150px;}
.y207{bottom:813.320550px;}
.y11e{bottom:817.317271px;}
.y1db{bottom:818.843850px;}
.ycf{bottom:819.127050px;}
.y1ac{bottom:820.948950px;}
.y81{bottom:821.599950px;}
.y178{bottom:821.845950px;}
.y51{bottom:822.141300px;}
.ye{bottom:823.573800px;}
.yd{bottom:828.523800px;}
.y206{bottom:830.212800px;}
.y1da{bottom:835.354350px;}
.yce{bottom:838.282050px;}
.y1ab{bottom:839.983950px;}
.y80{bottom:840.544950px;}
.y177{bottom:840.790950px;}
.y50{bottom:841.041300px;}
.yb3{bottom:841.206150px;}
.yc{bottom:842.323800px;}
.y11d{bottom:845.929512px;}
.y205{bottom:847.128300px;}
.yb{bottom:847.273800px;}
.y1d9{bottom:851.864850px;}
.ycd{bottom:857.437050px;}
.y1aa{bottom:859.018950px;}
.y7f{bottom:859.489950px;}
.y176{bottom:859.735950px;}
.y4f{bottom:859.941300px;}
.yb2{bottom:860.091150px;}
.ya{bottom:861.073950px;}
.y204{bottom:864.043800px;}
.y1d8{bottom:868.375350px;}
.y122{bottom:871.463550px;}
.y11c{bottom:874.105717px;}
.ycc{bottom:876.592050px;}
.y1a9{bottom:878.053950px;}
.y175{bottom:878.680950px;}
.y4e{bottom:878.841300px;}
.yb1{bottom:878.976150px;}
.y203{bottom:880.959300px;}
.y1d7{bottom:884.903700px;}
.y1a8{bottom:897.088950px;}
.y7e{bottom:897.379950px;}
.y174{bottom:897.625950px;}
.y4d{bottom:897.741300px;}
.y202{bottom:897.851550px;}
.yb0{bottom:897.861150px;}
.y8{bottom:899.323950px;}
.y1d6{bottom:901.414200px;}
.y10e{bottom:902.490285px;}
.y11b{bottom:902.499940px;}
.y9{bottom:905.263950px;}
.y201{bottom:914.767050px;}
.ycb{bottom:914.882550px;}
.y1a7{bottom:916.123950px;}
.y7d{bottom:916.324950px;}
.y173{bottom:916.570950px;}
.y4c{bottom:916.641300px;}
.yaf{bottom:916.746150px;}
.y1d5{bottom:917.924700px;}
.y11a{bottom:931.112181px;}
.y200{bottom:931.682550px;}
.yca{bottom:934.028700px;}
.y1d4{bottom:934.459050px;}
.y1a6{bottom:935.158950px;}
.y7c{bottom:935.269950px;}
.y172{bottom:935.515950px;}
.y4b{bottom:935.541300px;}
.yae{bottom:935.631150px;}
.y1ff{bottom:948.598050px;}
.y1d3{bottom:950.969550px;}
.yc9{bottom:953.183700px;}
.y1a5{bottom:954.193950px;}
.y7b{bottom:954.214950px;}
.y4a{bottom:954.441300px;}
.y171{bottom:954.460950px;}
.yad{bottom:954.516150px;}
.y119{bottom:958.852351px;}
.y1fe{bottom:965.496150px;}
.y1d2{bottom:967.480050px;}
.yc8{bottom:972.326250px;}
.y7a{bottom:973.159950px;}
.y1a4{bottom:973.228950px;}
.y49{bottom:973.341300px;}
.yac{bottom:973.401150px;}
.y170{bottom:973.405950px;}
.y10{bottom:979.806450px;}
.y1fd{bottom:982.411650px;}
.y1d1{bottom:983.990550px;}
.y118{bottom:987.682609px;}
.yc7{bottom:991.481250px;}
.y79{bottom:992.105400px;}
.y48{bottom:992.241300px;}
.y1a3{bottom:992.263950px;}
.yab{bottom:992.286150px;}
.y16f{bottom:992.350950px;}
.y1fc{bottom:999.327150px;}
.y1d0{bottom:1000.524750px;}
.yf{bottom:1008.306450px;}
.yc6{bottom:1010.636250px;}
.y78{bottom:1011.131550px;}
.y47{bottom:1011.141300px;}
.yaa{bottom:1011.171150px;}
.y16e{bottom:1011.295950px;}
.y1fb{bottom:1016.237850px;}
.y117{bottom:1016.294850px;}
.y1cf{bottom:1017.035250px;}
.yc5{bottom:1029.791250px;}
.y46{bottom:1030.041300px;}
.ya9{bottom:1030.056150px;}
.y77{bottom:1030.076550px;}
.y16d{bottom:1030.240950px;}
.y1a2{bottom:1030.333950px;}
.y124{bottom:1030.547550px;}
.y121{bottom:1033.030312px;}
.y1fa{bottom:1033.153350px;}
.y1ce{bottom:1033.545750px;}
.y10d{bottom:1042.639800px;}
.ya8{bottom:1048.941150px;}
.y45{bottom:1048.941300px;}
.yc4{bottom:1048.946250px;}
.y76{bottom:1049.021550px;}
.y16c{bottom:1049.185950px;}
.y1a1{bottom:1049.368950px;}
.y1cd{bottom:1050.056250px;}
.y1f9{bottom:1050.068850px;}
.y43{bottom:1102.111800px;}
.y44{bottom:1103.276700px;}
.y7{bottom:1108.771800px;}
.y42{bottom:1115.611800px;}
.h9{height:24.708000px;}
.h6{height:30.695496px;}
.h25{height:31.477618px;}
.h21{height:31.836000px;}
.h27{height:32.962085px;}
.hf{height:34.320000px;}
.h2c{height:35.997211px;}
.h2b{height:36.003211px;}
.h3{height:38.556000px;}
.h2{height:38.658000px;}
.h24{height:39.166093px;}
.h20{height:39.636000px;}
.h23{height:39.990234px;}
.h22{height:40.446728px;}
.h26{height:40.551592px;}
.hd{height:40.932000px;}
.h7{height:42.600000px;}
.h29{height:43.960458px;}
.h2a{height:43.971858px;}
.h28{height:43.986258px;}
.h13{height:44.040000px;}
.h8{height:44.102774px;}
.hc{height:45.480000px;}
.h15{height:45.853800px;}
.h14{height:45.890400px;}
.h17{height:46.116600px;}
.h16{height:46.177200px;}
.h1c{height:46.204800px;}
.h1d{height:46.228800px;}
.h1a{height:46.257600px;}
.h19{height:46.621200px;}
.h2d{height:47.640281px;}
.h10{height:47.663681px;}
.h11{height:47.941481px;}
.h12{height:47.965481px;}
.h1f{height:48.006281px;}
.h1b{height:48.014681px;}
.h1e{height:48.023681px;}
.hb{height:52.848000px;}
.h5{height:52.923329px;}
.he{height:57.510000px;}
.h4{height:72.000000px;}
.h18{height:76.659600px;}
.ha{height:85.200000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:914.173500px;}
.w1{width:914.250000px;}
.x0{left:0.000000px;}
.x7{left:63.779550px;}
.x14{left:72.189600px;}
.x22{left:74.408250px;}
.x15{left:76.378650px;}
.x19{left:85.039350px;}
.x37{left:89.294550px;}
.x1c{left:116.929200px;}
.x17{left:122.734800px;}
.x8{left:129.812400px;}
.x1{left:138.647250px;}
.x11{left:164.149050px;}
.x12{left:168.337950px;}
.x32{left:177.575700px;}
.x33{left:184.806450px;}
.xf{left:187.674150px;}
.x5{left:221.323950px;}
.x18{left:265.969143px;}
.x23{left:291.149850px;}
.x24{left:298.380600px;}
.x4{left:302.994750px;}
.x3{left:306.590250px;}
.x2{left:341.308500px;}
.x6{left:358.918890px;}
.x9{left:403.705950px;}
.xa{left:408.732600px;}
.x34{left:466.083600px;}
.x1a{left:468.784350px;}
.x35{left:487.338600px;}
.x1f{left:490.041000px;}
.x36{left:491.601600px;}
.x2b{left:493.680300px;}
.x29{left:501.175800px;}
.x25{left:516.572700px;}
.x26{left:527.699229px;}
.xb{left:536.392650px;}
.xc{left:541.419300px;}
.x21{left:553.309050px;}
.x27{left:556.197177px;}
.x2d{left:557.514529px;}
.x28{left:559.715566px;}
.x2c{left:563.017650px;}
.x2f{left:579.086250px;}
.x2e{left:613.097054px;}
.x2a{left:617.607000px;}
.x30{left:622.008590px;}
.x1e{left:654.061200px;}
.xd{left:666.455100px;}
.xe{left:671.481750px;}
.x10{left:684.204750px;}
.x1d{left:700.909200px;}
.x13{left:707.729700px;}
.x20{left:715.885050px;}
.x31{left:739.218052px;}
.x16{left:799.689150px;}
.x1b{left:826.374600px;}
@media print{
.v3{vertical-align:-5.264834pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:4.141867pt;}
.v1{vertical-align:17.344000pt;}
.ls8{letter-spacing:-2.953045pt;}
.ls5{letter-spacing:-2.560000pt;}
.ls4{letter-spacing:-0.720000pt;}
.ls2{letter-spacing:-0.533333pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls0{letter-spacing:-0.453333pt;}
.ls3{letter-spacing:-0.336000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.237155pt;}
.lsb{letter-spacing:0.480000pt;}
.ls9{letter-spacing:0.533333pt;}
.ls6{letter-spacing:0.853757pt;}
.ls7{letter-spacing:647.432240pt;}
.ws2b{word-spacing:-64.000000pt;}
.ws9f{word-spacing:-58.666667pt;}
.ws70{word-spacing:-53.333333pt;}
.wsa0{word-spacing:-48.000000pt;}
.wsac{word-spacing:-14.208000pt;}
.ws71{word-spacing:-11.840000pt;}
.ws9e{word-spacing:-10.656000pt;}
.ws0{word-spacing:-9.936000pt;}
.ws2c{word-spacing:-6.867200pt;}
.ws7a{word-spacing:-3.200000pt;}
.wsa5{word-spacing:-2.666667pt;}
.ws4a{word-spacing:-2.560000pt;}
.ws96{word-spacing:-2.513839pt;}
.wse0{word-spacing:-2.400000pt;}
.ws8d{word-spacing:-2.293333pt;}
.ws7b{word-spacing:-2.240000pt;}
.ws6b{word-spacing:-2.186667pt;}
.wsd5{word-spacing:-2.112000pt;}
.ws25{word-spacing:-2.064000pt;}
.ws5b{word-spacing:-2.026667pt;}
.ws6a{word-spacing:-1.973333pt;}
.wsf2{word-spacing:-1.968000pt;}
.wsa{word-spacing:-1.920000pt;}
.ws72{word-spacing:-1.866667pt;}
.ws56{word-spacing:-1.706667pt;}
.ws37{word-spacing:-1.653333pt;}
.ws11{word-spacing:-1.600000pt;}
.wsff{word-spacing:-1.584000pt;}
.wsaf{word-spacing:-1.546667pt;}
.ws23{word-spacing:-1.536000pt;}
.wsc0{word-spacing:-1.493333pt;}
.ws26{word-spacing:-1.488000pt;}
.ws4e{word-spacing:-1.440000pt;}
.wsca{word-spacing:-1.333333pt;}
.wsd1{word-spacing:-1.296000pt;}
.ws49{word-spacing:-1.280000pt;}
.wsf6{word-spacing:-1.248000pt;}
.ws86{word-spacing:-1.226667pt;}
.ws104{word-spacing:-1.200000pt;}
.ws3c{word-spacing:-1.173333pt;}
.wse9{word-spacing:-1.152000pt;}
.wsd6{word-spacing:-1.104000pt;}
.wsc6{word-spacing:-1.066667pt;}
.ws28{word-spacing:-1.056000pt;}
.ws4f{word-spacing:-1.013333pt;}
.wsea{word-spacing:-1.008000pt;}
.wsae{word-spacing:-0.960000pt;}
.wscb{word-spacing:-0.906667pt;}
.ws44{word-spacing:-0.853333pt;}
.wse7{word-spacing:-0.816000pt;}
.wsb4{word-spacing:-0.800000pt;}
.wseb{word-spacing:-0.768000pt;}
.ws8f{word-spacing:-0.746667pt;}
.wsce{word-spacing:-0.720000pt;}
.ws59{word-spacing:-0.640000pt;}
.ws5f{word-spacing:-0.586667pt;}
.wsa4{word-spacing:-0.533333pt;}
.wse2{word-spacing:-0.528000pt;}
.wsf4{word-spacing:-0.480000pt;}
.wsed{word-spacing:-0.432000pt;}
.ws55{word-spacing:-0.426667pt;}
.wsda{word-spacing:-0.384000pt;}
.ws65{word-spacing:-0.373333pt;}
.wsba{word-spacing:-0.320000pt;}
.ws13{word-spacing:-0.213333pt;}
.ws29{word-spacing:-0.192000pt;}
.ws6e{word-spacing:-0.106667pt;}
.ws2a{word-spacing:-0.096000pt;}
.ws1{word-spacing:-0.072000pt;}
.ws2{word-spacing:-0.058667pt;}
.ws5a{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
.wse3{word-spacing:0.144000pt;}
.ws93{word-spacing:0.189724pt;}
.wsfa{word-spacing:0.192000pt;}
.ws3e{word-spacing:0.213333pt;}
.wsb7{word-spacing:0.266667pt;}
.wsa9{word-spacing:0.284586pt;}
.ws22{word-spacing:0.336000pt;}
.ws4c{word-spacing:0.373333pt;}
.wsdc{word-spacing:0.384000pt;}
.ws97{word-spacing:0.426878pt;}
.ws4{word-spacing:0.453333pt;}
.ws90{word-spacing:0.480000pt;}
.wsfc{word-spacing:0.528000pt;}
.ws3d{word-spacing:0.533333pt;}
.ws7f{word-spacing:0.586667pt;}
.ws94{word-spacing:0.616602pt;}
.wsb8{word-spacing:0.640000pt;}
.wsef{word-spacing:0.672000pt;}
.wsa6{word-spacing:0.693333pt;}
.ws46{word-spacing:0.746667pt;}
.ws83{word-spacing:0.800000pt;}
.ws91{word-spacing:0.806326pt;}
.wscf{word-spacing:0.816000pt;}
.wsdd{word-spacing:0.864000pt;}
.ws1a{word-spacing:0.906667pt;}
.ws1c{word-spacing:0.960000pt;}
.ws2f{word-spacing:1.013333pt;}
.wsf9{word-spacing:1.056000pt;}
.ws21{word-spacing:1.066667pt;}
.ws5d{word-spacing:1.120000pt;}
.ws102{word-spacing:1.200000pt;}
.ws1e{word-spacing:1.226667pt;}
.wsc3{word-spacing:1.280000pt;}
.ws42{word-spacing:1.333333pt;}
.ws57{word-spacing:1.386667pt;}
.ws50{word-spacing:1.440000pt;}
.ws101{word-spacing:1.488000pt;}
.wsb1{word-spacing:1.546667pt;}
.wscd{word-spacing:1.584000pt;}
.ws33{word-spacing:1.600000pt;}
.ws58{word-spacing:1.653333pt;}
.wsfe{word-spacing:1.680000pt;}
.wscc{word-spacing:1.706667pt;}
.ws47{word-spacing:1.760000pt;}
.ws24{word-spacing:1.776000pt;}
.ws4b{word-spacing:1.813333pt;}
.wsd2{word-spacing:1.824000pt;}
.ws84{word-spacing:1.866667pt;}
.ws61{word-spacing:1.920000pt;}
.ws32{word-spacing:1.973333pt;}
.ws98{word-spacing:2.039530pt;}
.ws20{word-spacing:2.133333pt;}
.ws7d{word-spacing:2.186667pt;}
.ws95{word-spacing:2.229254pt;}
.ws17{word-spacing:2.240000pt;}
.wsc2{word-spacing:2.293333pt;}
.ws43{word-spacing:2.346667pt;}
.ws30{word-spacing:2.400000pt;}
.wse6{word-spacing:2.448000pt;}
.ws40{word-spacing:2.453333pt;}
.ws2d{word-spacing:2.560000pt;}
.wse8{word-spacing:2.592000pt;}
.wsc5{word-spacing:2.720000pt;}
.wse1{word-spacing:2.736000pt;}
.wsb{word-spacing:2.773333pt;}
.ws3f{word-spacing:2.826667pt;}
.ws27{word-spacing:2.928000pt;}
.wse{word-spacing:2.933333pt;}
.ws9c{word-spacing:2.953045pt;}
.wsa7{word-spacing:2.986667pt;}
.ws68{word-spacing:3.040000pt;}
.ws51{word-spacing:3.093333pt;}
.wsb0{word-spacing:3.146667pt;}
.ws34{word-spacing:3.200000pt;}
.wsa3{word-spacing:3.253333pt;}
.ws4d{word-spacing:3.306667pt;}
.ws1b{word-spacing:3.360000pt;}
.ws81{word-spacing:3.413333pt;}
.wsc{word-spacing:3.466667pt;}
.wsd9{word-spacing:3.504000pt;}
.wsd4{word-spacing:3.648000pt;}
.ws78{word-spacing:3.680000pt;}
.wsf7{word-spacing:3.696000pt;}
.wsdb{word-spacing:3.744000pt;}
.ws16{word-spacing:3.786667pt;}
.wsb9{word-spacing:3.840000pt;}
.wsd7{word-spacing:3.888000pt;}
.ws87{word-spacing:3.893333pt;}
.ws80{word-spacing:3.946667pt;}
.wsf0{word-spacing:3.984000pt;}
.ws52{word-spacing:4.000000pt;}
.wsd0{word-spacing:4.032000pt;}
.ws12{word-spacing:4.053333pt;}
.wsf1{word-spacing:4.080000pt;}
.wsa8{word-spacing:4.213333pt;}
.ws79{word-spacing:4.266667pt;}
.wsc7{word-spacing:4.373333pt;}
.wsfb{word-spacing:4.416000pt;}
.ws73{word-spacing:4.426667pt;}
.ws53{word-spacing:4.480000pt;}
.ws39{word-spacing:4.586667pt;}
.wsf8{word-spacing:4.608000pt;}
.ws5c{word-spacing:4.640000pt;}
.ws6d{word-spacing:4.746667pt;}
.ws6{word-spacing:4.800000pt;}
.ws8{word-spacing:4.853333pt;}
.ws92{word-spacing:4.885386pt;}
.wsde{word-spacing:4.896000pt;}
.wse5{word-spacing:4.992000pt;}
.wsa2{word-spacing:5.013333pt;}
.wsdf{word-spacing:5.088000pt;}
.ws69{word-spacing:5.120000pt;}
.ws85{word-spacing:5.173333pt;}
.wsf3{word-spacing:5.184000pt;}
.ws62{word-spacing:5.226667pt;}
.ws103{word-spacing:5.328000pt;}
.ws48{word-spacing:5.333333pt;}
.ws5e{word-spacing:5.386667pt;}
.wsbf{word-spacing:5.440000pt;}
.ws66{word-spacing:5.546667pt;}
.wse4{word-spacing:5.616000pt;}
.ws5{word-spacing:5.653333pt;}
.ws38{word-spacing:5.706667pt;}
.ws3b{word-spacing:5.813333pt;}
.ws76{word-spacing:5.866667pt;}
.ws36{word-spacing:6.026667pt;}
.wsf5{word-spacing:6.048000pt;}
.ws64{word-spacing:6.080000pt;}
.wsb5{word-spacing:6.186667pt;}
.ws31{word-spacing:6.240000pt;}
.wsd3{word-spacing:6.288000pt;}
.ws7e{word-spacing:6.346667pt;}
.ws9b{word-spacing:6.450607pt;}
.ws60{word-spacing:6.560000pt;}
.ws1f{word-spacing:6.613333pt;}
.ws45{word-spacing:6.666667pt;}
.wsbc{word-spacing:6.720000pt;}
.wsfd{word-spacing:6.816000pt;}
.wsc9{word-spacing:6.826667pt;}
.ws77{word-spacing:6.933333pt;}
.wsc8{word-spacing:6.986667pt;}
.ws9{word-spacing:7.040000pt;}
.ws99{word-spacing:7.067209pt;}
.ws18{word-spacing:7.200000pt;}
.ws6c{word-spacing:7.360000pt;}
.ws7{word-spacing:7.413333pt;}
.ws63{word-spacing:7.466667pt;}
.ws2e{word-spacing:7.520000pt;}
.wsa1{word-spacing:7.573333pt;}
.ws82{word-spacing:7.680000pt;}
.wsd{word-spacing:7.840000pt;}
.wsc1{word-spacing:7.946667pt;}
.ws15{word-spacing:8.000000pt;}
.ws9a{word-spacing:8.015828pt;}
.ws35{word-spacing:8.053333pt;}
.ws54{word-spacing:8.106667pt;}
.wsee{word-spacing:8.160000pt;}
.wsbd{word-spacing:8.426667pt;}
.ws41{word-spacing:8.480000pt;}
.wsc4{word-spacing:8.533333pt;}
.ws75{word-spacing:8.693333pt;}
.wsbb{word-spacing:8.800000pt;}
.wsec{word-spacing:8.832000pt;}
.wsad{word-spacing:8.853333pt;}
.wsb3{word-spacing:8.906667pt;}
.ws74{word-spacing:9.066667pt;}
.wsf{word-spacing:9.173333pt;}
.wsd8{word-spacing:9.456000pt;}
.ws3a{word-spacing:9.546667pt;}
.wsb2{word-spacing:9.600000pt;}
.ws100{word-spacing:9.696000pt;}
.ws19{word-spacing:9.760000pt;}
.wsbe{word-spacing:9.866667pt;}
.ws1d{word-spacing:10.080000pt;}
.ws8e{word-spacing:10.506667pt;}
.ws89{word-spacing:11.146667pt;}
.ws88{word-spacing:13.600000pt;}
.wsb6{word-spacing:14.080000pt;}
.ws14{word-spacing:14.293333pt;}
.ws10{word-spacing:17.013333pt;}
.ws67{word-spacing:19.253333pt;}
.ws7c{word-spacing:20.480000pt;}
.wsaa{word-spacing:27.120000pt;}
.ws8b{word-spacing:161.040000pt;}
.wsab{word-spacing:198.336000pt;}
.ws8a{word-spacing:261.024000pt;}
.ws8c{word-spacing:636.902573pt;}
.ws9d{word-spacing:1347.892263pt;}
.ws6f{word-spacing:1996.632000pt;}
._2e{margin-left:-973.220107pt;}
._2c{margin-left:-441.487381pt;}
._10{margin-left:-149.248000pt;}
._36{margin-left:-59.370667pt;}
._12{margin-left:-54.602667pt;}
._8{margin-left:-12.490667pt;}
._41{margin-left:-11.568000pt;}
._5{margin-left:-7.514667pt;}
._9{margin-left:-5.546667pt;}
._0{margin-left:-3.989333pt;}
._4{margin-left:-3.056000pt;}
._2{margin-left:-2.085333pt;}
._1{margin-left:-0.997333pt;}
._6{width:1.066667pt;}
._7{width:4.234667pt;}
._e{width:21.600000pt;}
._48{width:22.752000pt;}
._47{width:24.960000pt;}
._13{width:27.120000pt;}
._49{width:28.368000pt;}
._15{width:42.960000pt;}
._43{width:44.592000pt;}
._45{width:45.696000pt;}
._44{width:46.656000pt;}
._16{width:48.288000pt;}
._42{width:49.392000pt;}
._46{width:50.496000pt;}
._3{width:52.392970pt;}
._20{width:53.520000pt;}
._21{width:58.896000pt;}
._22{width:65.765333pt;}
._1f{width:69.504000pt;}
._1c{width:76.421333pt;}
._1b{width:80.112000pt;}
._19{width:85.464000pt;}
._2a{width:89.785033pt;}
._1a{width:90.864000pt;}
._11{width:95.685333pt;}
._1d{width:98.928000pt;}
._3e{width:101.568000pt;}
._b{width:106.944000pt;}
._28{width:111.029333pt;}
._c{width:112.248000pt;}
._23{width:114.912000pt;}
._25{width:117.528000pt;}
._29{width:122.856000pt;}
._14{width:124.421333pt;}
._35{width:127.317333pt;}
._38{width:129.026667pt;}
._26{width:133.536000pt;}
._24{width:138.864000pt;}
._1e{width:144.144000pt;}
._27{width:150.458667pt;}
._18{width:160.176000pt;}
._17{width:177.098667pt;}
._3f{width:178.416000pt;}
._3d{width:181.056000pt;}
._3c{width:182.475200pt;}
._37{width:198.262400pt;}
._40{width:209.066667pt;}
._39{width:210.336000pt;}
._3b{width:220.992000pt;}
._3a{width:231.648000pt;}
._33{width:239.232000pt;}
._f{width:254.544000pt;}
._34{width:256.293333pt;}
._d{width:271.992000pt;}
._32{width:301.296000pt;}
._31{width:314.760000pt;}
._2d{width:319.660053pt;}
._2b{width:325.750709pt;}
._2f{width:385.291486pt;}
._30{width:409.776000pt;}
._a{width:596.880000pt;}
.fs6{font-size:30.933333pt;}
.fsf{font-size:36.913067pt;}
.fsd{font-size:37.333333pt;}
.fs3{font-size:38.429415pt;}
.fs11{font-size:38.653867pt;}
.fsc{font-size:42.666667pt;}
.fs0{font-size:45.333333pt;}
.fse{font-size:47.430933pt;}
.fs9{font-size:48.000000pt;}
.fs10{font-size:49.108800pt;}
.fs4{font-size:53.333333pt;}
.fs5{font-size:55.214741pt;}
.fsb{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs2{font-size:66.257689pt;}
.fsa{font-size:72.000000pt;}
.fs1{font-size:85.333333pt;}
.fs7{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y116{bottom:56.670461pt;}
.y14b{bottom:56.674667pt;}
.y6{bottom:56.692933pt;}
.ya7{bottom:56.697333pt;}
.y1cc{bottom:56.717867pt;}
.y105{bottom:56.754667pt;}
.y75{bottom:56.770267pt;}
.y158{bottom:56.848000pt;}
.y1a0{bottom:56.852400pt;}
.yef{bottom:63.488933pt;}
.y5{bottom:68.026267pt;}
.y115{bottom:70.508436pt;}
.y1cb{bottom:71.633867pt;}
.y14a{bottom:73.514667pt;}
.ya6{bottom:73.537333pt;}
.y74{bottom:73.570267pt;}
.y19f{bottom:73.692400pt;}
.y104{bottom:74.074667pt;}
.yee{bottom:74.156933pt;}
.y4{bottom:82.365067pt;}
.y114{bottom:84.346411pt;}
.yed{bottom:84.824933pt;}
.y1ca{bottom:86.549867pt;}
.y157{bottom:90.181333pt;}
.y149{bottom:90.354667pt;}
.y73{bottom:90.370267pt;}
.ya5{bottom:90.377333pt;}
.y19e{bottom:90.532400pt;}
.y103{bottom:91.394667pt;}
.y3{bottom:97.404400pt;}
.y113{bottom:98.184386pt;}
.y1c9{bottom:101.465867pt;}
.yec{bottom:106.845067pt;}
.y156{bottom:106.848000pt;}
.y72{bottom:107.170267pt;}
.y148{bottom:107.194667pt;}
.ya4{bottom:107.217333pt;}
.y19d{bottom:107.372400pt;}
.y102{bottom:108.714667pt;}
.y2{bottom:111.401067pt;}
.y112{bottom:112.022361pt;}
.y1c8{bottom:116.381867pt;}
.y155{bottom:123.514667pt;}
.y71{bottom:123.970267pt;}
.y147{bottom:124.034667pt;}
.ya3{bottom:124.057333pt;}
.y19c{bottom:124.212400pt;}
.y1{bottom:125.397733pt;}
.y111{bottom:125.860335pt;}
.y101{bottom:126.034667pt;}
.yeb{bottom:126.513067pt;}
.y1c7{bottom:131.297867pt;}
.y110{bottom:139.698310pt;}
.y154{bottom:140.181333pt;}
.y70{bottom:140.770267pt;}
.y146{bottom:140.874667pt;}
.ya2{bottom:140.897333pt;}
.y19b{bottom:141.052400pt;}
.yea{bottom:146.181067pt;}
.y1c6{bottom:146.213867pt;}
.y32{bottom:149.580267pt;}
.y20{bottom:149.620267pt;}
.y153{bottom:156.848000pt;}
.y6f{bottom:157.570267pt;}
.y145{bottom:157.714667pt;}
.ya1{bottom:157.737333pt;}
.y19a{bottom:157.892400pt;}
.y100{bottom:160.674667pt;}
.y1c5{bottom:161.129867pt;}
.ye9{bottom:165.849067pt;}
.y1f{bottom:166.340267pt;}
.y31{bottom:166.406933pt;}
.y152{bottom:173.514667pt;}
.y133{bottom:174.345849pt;}
.y6e{bottom:174.370267pt;}
.y144{bottom:174.554667pt;}
.ya0{bottom:174.577333pt;}
.y199{bottom:174.732400pt;}
.y1c4{bottom:176.045867pt;}
.yff{bottom:177.994667pt;}
.y30{bottom:182.566933pt;}
.y1e{bottom:183.060267pt;}
.y13d{bottom:184.210866pt;}
.ye8{bottom:185.517067pt;}
.y151{bottom:190.181333pt;}
.y6d{bottom:191.170267pt;}
.y9f{bottom:191.417333pt;}
.y198{bottom:191.572400pt;}
.yfe{bottom:195.314667pt;}
.y2f{bottom:198.726933pt;}
.y1d{bottom:199.780267pt;}
.ye7{bottom:205.185067pt;}
.y150{bottom:206.848000pt;}
.y6c{bottom:207.970267pt;}
.y9e{bottom:208.257333pt;}
.y13c{bottom:208.315099pt;}
.y197{bottom:208.412400pt;}
.y143{bottom:210.289733pt;}
.y1c3{bottom:213.642133pt;}
.y2e{bottom:214.886933pt;}
.y1c{bottom:216.500267pt;}
.y14f{bottom:223.514667pt;}
.y6b{bottom:224.770267pt;}
.ye6{bottom:224.853067pt;}
.y9d{bottom:225.097333pt;}
.y196{bottom:225.252400pt;}
.yfd{bottom:229.954667pt;}
.y2d{bottom:231.046933pt;}
.y1b{bottom:233.220267pt;}
.y13b{bottom:233.748202pt;}
.y14e{bottom:240.181333pt;}
.y6a{bottom:241.570267pt;}
.y9c{bottom:241.937333pt;}
.y195{bottom:242.092400pt;}
.ye5{bottom:244.521067pt;}
.y2c{bottom:247.206933pt;}
.yfc{bottom:247.274667pt;}
.y1a{bottom:249.940267pt;}
.y13e{bottom:252.690267pt;}
.y142{bottom:256.694133pt;}
.y14d{bottom:256.848000pt;}
.y13a{bottom:257.695554pt;}
.y69{bottom:258.370267pt;}
.y9b{bottom:258.791067pt;}
.y194{bottom:258.932400pt;}
.y1c2{bottom:260.116400pt;}
.y2b{bottom:263.366933pt;}
.ye4{bottom:264.189067pt;}
.yfb{bottom:264.594667pt;}
.y19{bottom:266.660267pt;}
.y14c{bottom:273.514667pt;}
.y141{bottom:273.534133pt;}
.y68{bottom:275.170267pt;}
.y9a{bottom:275.631067pt;}
.y1c1{bottom:275.704400pt;}
.y193{bottom:275.772400pt;}
.y2a{bottom:279.526933pt;}
.yfa{bottom:281.914667pt;}
.y139{bottom:282.270428pt;}
.y18{bottom:283.380267pt;}
.ye3{bottom:283.857067pt;}
.y1c0{bottom:291.292400pt;}
.y67{bottom:291.970267pt;}
.y99{bottom:292.471067pt;}
.y192{bottom:292.612400pt;}
.y29{bottom:295.686933pt;}
.yf9{bottom:299.234667pt;}
.y17{bottom:300.100267pt;}
.y135{bottom:300.450113pt;}
.y223{bottom:302.077600pt;}
.y1f8{bottom:302.098533pt;}
.y140{bottom:303.322400pt;}
.ye2{bottom:303.525067pt;}
.y1bf{bottom:306.880400pt;}
.y138{bottom:307.159063pt;}
.y66{bottom:308.834267pt;}
.y98{bottom:309.311067pt;}
.y191{bottom:309.452400pt;}
.y28{bottom:311.846933pt;}
.y16b{bottom:313.831467pt;}
.yf8{bottom:316.554667pt;}
.y1f7{bottom:316.774533pt;}
.y16{bottom:316.820267pt;}
.y222{bottom:317.113600pt;}
.y1be{bottom:322.468400pt;}
.ye1{bottom:323.193067pt;}
.y16a{bottom:324.496800pt;}
.y65{bottom:325.634267pt;}
.y190{bottom:326.292400pt;}
.y27{bottom:328.006933pt;}
.y137{bottom:331.346350pt;}
.y1f6{bottom:331.450533pt;}
.y221{bottom:332.149600pt;}
.y15{bottom:333.540267pt;}
.yf7{bottom:333.874667pt;}
.y169{bottom:335.164800pt;}
.y1bd{bottom:338.056400pt;}
.y64{bottom:342.434267pt;}
.y97{bottom:342.991067pt;}
.y18f{bottom:343.132400pt;}
.y26{bottom:344.166933pt;}
.y168{bottom:345.832800pt;}
.y1f5{bottom:346.147600pt;}
.y220{bottom:347.164933pt;}
.y14{bottom:350.260267pt;}
.ye0{bottom:350.421067pt;}
.yf6{bottom:351.194667pt;}
.y136{bottom:355.995050pt;}
.y96{bottom:359.831067pt;}
.y18e{bottom:359.972400pt;}
.y25{bottom:360.326933pt;}
.y1f4{bottom:360.823600pt;}
.y21f{bottom:362.200933pt;}
.y13{bottom:366.980267pt;}
.y167{bottom:367.842000pt;}
.yf5{bottom:368.514667pt;}
.y1bc{bottom:369.892400pt;}
.y1f3{bottom:375.499600pt;}
.y63{bottom:376.047600pt;}
.y24{bottom:376.486933pt;}
.y95{bottom:376.671067pt;}
.y18d{bottom:376.812400pt;}
.y21e{bottom:377.236933pt;}
.ydf{bottom:377.649067pt;}
.y134{bottom:381.437381pt;}
.y12{bottom:383.700267pt;}
.yf4{bottom:385.834667pt;}
.y166{bottom:387.510000pt;}
.y132{bottom:388.081733pt;}
.y1f2{bottom:390.175600pt;}
.y21d{bottom:392.272933pt;}
.y23{bottom:392.646933pt;}
.y62{bottom:392.847600pt;}
.y94{bottom:393.511067pt;}
.y18c{bottom:393.652400pt;}
.yf3{bottom:403.154667pt;}
.y13f{bottom:403.410800pt;}
.y1f1{bottom:404.867467pt;}
.yde{bottom:406.767200pt;}
.y165{bottom:407.178000pt;}
.y21c{bottom:407.298667pt;}
.y1bb{bottom:408.628400pt;}
.y22{bottom:408.806933pt;}
.y61{bottom:409.647600pt;}
.y93{bottom:410.351067pt;}
.y18b{bottom:410.492400pt;}
.y1f0{bottom:419.543467pt;}
.yf2{bottom:420.474667pt;}
.ydd{bottom:420.767200pt;}
.y21b{bottom:422.334667pt;}
.y11{bottom:423.093867pt;}
.y21{bottom:424.966933pt;}
.y60{bottom:426.447600pt;}
.y164{bottom:426.852400pt;}
.y92{bottom:427.191067pt;}
.y18a{bottom:427.332400pt;}
.y125{bottom:430.656667pt;}
.y1ef{bottom:434.219467pt;}
.y21a{bottom:437.350000pt;}
.yf1{bottom:437.794667pt;}
.y5f{bottom:443.247600pt;}
.y91{bottom:444.031067pt;}
.y189{bottom:444.172400pt;}
.y1ba{bottom:444.241600pt;}
.y12f{bottom:445.061991pt;}
.y163{bottom:446.520400pt;}
.y1ee{bottom:448.916667pt;}
.y219{bottom:452.386000pt;}
.yf0{bottom:455.114667pt;}
.y5e{bottom:460.047600pt;}
.y90{bottom:460.871067pt;}
.y188{bottom:461.012400pt;}
.y1b9{bottom:461.161600pt;}
.ydc{bottom:462.104400pt;}
.yc3{bottom:462.512400pt;}
.y1ed{bottom:463.592667pt;}
.y40{bottom:465.862667pt;}
.y162{bottom:466.188400pt;}
.y218{bottom:467.422000pt;}
.y12e{bottom:469.166223pt;}
.y5d{bottom:476.847600pt;}
.y8f{bottom:477.711067pt;}
.y187{bottom:477.852400pt;}
.y1b8{bottom:478.081600pt;}
.y1ec{bottom:478.268667pt;}
.ydb{bottom:479.131067pt;}
.y3f{bottom:479.194667pt;}
.yc2{bottom:479.299067pt;}
.y217{bottom:482.458000pt;}
.y10c{bottom:483.634825pt;}
.y161{bottom:485.856400pt;}
.y3e{bottom:492.526667pt;}
.y1eb{bottom:492.944667pt;}
.y5c{bottom:493.647600pt;}
.y8e{bottom:494.551067pt;}
.y12d{bottom:494.599326pt;}
.y186{bottom:494.692400pt;}
.y1b7{bottom:495.001600pt;}
.yc1{bottom:496.085733pt;}
.yda{bottom:496.157733pt;}
.y10a{bottom:497.456901pt;}
.y10b{bottom:497.472800pt;}
.y216{bottom:497.473467pt;}
.y160{bottom:505.524400pt;}
.y3d{bottom:505.858667pt;}
.y1ea{bottom:507.641867pt;}
.y5b{bottom:510.447600pt;}
.y109{bottom:511.294876pt;}
.y8d{bottom:511.391067pt;}
.y185{bottom:511.532400pt;}
.y1b6{bottom:511.921600pt;}
.y215{bottom:512.509467pt;}
.yc0{bottom:512.866533pt;}
.yd9{bottom:513.184400pt;}
.y130{bottom:513.544400pt;}
.y12c{bottom:518.546678pt;}
.y3c{bottom:519.190667pt;}
.y1e9{bottom:522.317867pt;}
.y108{bottom:525.132850pt;}
.y15f{bottom:525.193067pt;}
.y5a{bottom:527.247600pt;}
.y214{bottom:527.545467pt;}
.y8c{bottom:528.231067pt;}
.y184{bottom:528.372400pt;}
.y1b5{bottom:528.841600pt;}
.ybf{bottom:529.647333pt;}
.yd8{bottom:530.211067pt;}
.y3b{bottom:532.522667pt;}
.y1e8{bottom:536.993867pt;}
.y107{bottom:538.970825pt;}
.y213{bottom:542.581467pt;}
.y12b{bottom:543.121553pt;}
.y59{bottom:544.047600pt;}
.y8b{bottom:545.071067pt;}
.y183{bottom:545.212400pt;}
.y3a{bottom:545.854667pt;}
.ybe{bottom:546.428133pt;}
.yd7{bottom:547.237733pt;}
.y1e7{bottom:551.669867pt;}
.y15e{bottom:552.421067pt;}
.y106{bottom:552.808800pt;}
.y212{bottom:557.596800pt;}
.y39{bottom:559.186667pt;}
.y58{bottom:560.847600pt;}
.y8a{bottom:561.911067pt;}
.y182{bottom:562.052400pt;}
.ybd{bottom:563.197200pt;}
.yd6{bottom:564.264400pt;}
.y1b4{bottom:564.658267pt;}
.y1e6{bottom:566.361733pt;}
.y12a{bottom:568.010188pt;}
.y38{bottom:572.518667pt;}
.y211{bottom:572.632800pt;}
.y89{bottom:578.751067pt;}
.y181{bottom:578.892400pt;}
.y15d{bottom:579.649067pt;}
.ybc{bottom:579.983867pt;}
.y1e5{bottom:581.037733pt;}
.yd5{bottom:581.291067pt;}
.y37{bottom:585.850667pt;}
.y210{bottom:587.668800pt;}
.y129{bottom:592.197475pt;}
.y88{bottom:595.591067pt;}
.y1e4{bottom:595.713733pt;}
.y180{bottom:595.732400pt;}
.y57{bottom:596.550400pt;}
.ybb{bottom:596.770533pt;}
.yd4{bottom:598.317733pt;}
.y36{bottom:599.182667pt;}
.y20f{bottom:602.704800pt;}
.y15c{bottom:608.767200pt;}
.y1e3{bottom:610.410933pt;}
.y1b3{bottom:611.292400pt;}
.y87{bottom:612.431067pt;}
.y35{bottom:612.514667pt;}
.y17f{bottom:612.572400pt;}
.yba{bottom:613.458800pt;}
.y128{bottom:616.846175pt;}
.y20e{bottom:617.720267pt;}
.y1e2{bottom:625.086933pt;}
.y34{bottom:625.846667pt;}
.y1b2{bottom:628.212400pt;}
.y17e{bottom:629.412400pt;}
.yb9{bottom:630.245467pt;}
.y20d{bottom:632.756267pt;}
.yd3{bottom:634.238133pt;}
.y33{bottom:639.178667pt;}
.y1e1{bottom:639.762933pt;}
.y127{bottom:642.279278pt;}
.y1b1{bottom:645.132400pt;}
.y86{bottom:646.111067pt;}
.y17d{bottom:646.329733pt;}
.y56{bottom:646.709733pt;}
.yb8{bottom:647.032133pt;}
.y20c{bottom:647.792267pt;}
.y126{bottom:653.713100pt;}
.y1e0{bottom:654.438933pt;}
.y15a{bottom:657.832959pt;}
.y15b{bottom:657.836933pt;}
.y41{bottom:658.994000pt;}
.y131{bottom:659.726533pt;}
.y1b0{bottom:662.052400pt;}
.y20b{bottom:662.828267pt;}
.y85{bottom:662.951067pt;}
.y17c{bottom:663.169733pt;}
.y55{bottom:663.520133pt;}
.yb7{bottom:663.818800pt;}
.y1df{bottom:669.136000pt;}
.y159{bottom:671.670933pt;}
.yd2{bottom:677.032933pt;}
.y10f{bottom:677.754818pt;}
.y20a{bottom:677.843600pt;}
.y1af{bottom:678.972400pt;}
.y84{bottom:679.791067pt;}
.y17b{bottom:680.009733pt;}
.y54{bottom:680.320133pt;}
.yb6{bottom:680.605467pt;}
.y1de{bottom:683.812000pt;}
.y123{bottom:686.972267pt;}
.y120{bottom:686.979575pt;}
.y209{bottom:692.879600pt;}
.yd1{bottom:694.059600pt;}
.y1ae{bottom:695.892400pt;}
.y83{bottom:696.631067pt;}
.y17a{bottom:696.849733pt;}
.y53{bottom:697.192267pt;}
.yb5{bottom:697.392133pt;}
.y1dd{bottom:698.488000pt;}
.y11f{bottom:701.071138pt;}
.y208{bottom:707.915600pt;}
.yd0{bottom:711.086267pt;}
.y1ad{bottom:712.812400pt;}
.y1dc{bottom:713.164000pt;}
.y82{bottom:713.471067pt;}
.y179{bottom:713.689733pt;}
.y52{bottom:713.992267pt;}
.yb4{bottom:714.178800pt;}
.y207{bottom:722.951600pt;}
.y11e{bottom:726.504241pt;}
.y1db{bottom:727.861200pt;}
.ycf{bottom:728.112933pt;}
.y1ac{bottom:729.732400pt;}
.y81{bottom:730.311067pt;}
.y178{bottom:730.529733pt;}
.y51{bottom:730.792267pt;}
.ye{bottom:732.065600pt;}
.yd{bottom:736.465600pt;}
.y206{bottom:737.966933pt;}
.y1da{bottom:742.537200pt;}
.yce{bottom:745.139600pt;}
.y1ab{bottom:746.652400pt;}
.y80{bottom:747.151067pt;}
.y177{bottom:747.369733pt;}
.y50{bottom:747.592267pt;}
.yb3{bottom:747.738800pt;}
.yc{bottom:748.732267pt;}
.y11d{bottom:751.937344pt;}
.y205{bottom:753.002933pt;}
.yb{bottom:753.132267pt;}
.y1d9{bottom:757.213200pt;}
.ycd{bottom:762.166267pt;}
.y1aa{bottom:763.572400pt;}
.y7f{bottom:763.991067pt;}
.y176{bottom:764.209733pt;}
.y4f{bottom:764.392267pt;}
.yb2{bottom:764.525467pt;}
.ya{bottom:765.399067pt;}
.y204{bottom:768.038933pt;}
.y1d8{bottom:771.889200pt;}
.y122{bottom:774.634267pt;}
.y11c{bottom:776.982860pt;}
.ycc{bottom:779.192933pt;}
.y1a9{bottom:780.492400pt;}
.y175{bottom:781.049733pt;}
.y4e{bottom:781.192267pt;}
.yb1{bottom:781.312133pt;}
.y203{bottom:783.074933pt;}
.y1d7{bottom:786.581067pt;}
.y1a8{bottom:797.412400pt;}
.y7e{bottom:797.671067pt;}
.y174{bottom:797.889733pt;}
.y4d{bottom:797.992267pt;}
.y202{bottom:798.090267pt;}
.yb0{bottom:798.098800pt;}
.y8{bottom:799.399067pt;}
.y1d6{bottom:801.257067pt;}
.y10e{bottom:802.213587pt;}
.y11b{bottom:802.222169pt;}
.y9{bottom:804.679067pt;}
.y201{bottom:813.126267pt;}
.ycb{bottom:813.228933pt;}
.y1a7{bottom:814.332400pt;}
.y7d{bottom:814.511067pt;}
.y173{bottom:814.729733pt;}
.y4c{bottom:814.792267pt;}
.yaf{bottom:814.885467pt;}
.y1d5{bottom:815.933067pt;}
.y11a{bottom:827.655272pt;}
.y200{bottom:828.162267pt;}
.yca{bottom:830.247733pt;}
.y1d4{bottom:830.630267pt;}
.y1a6{bottom:831.252400pt;}
.y7c{bottom:831.351067pt;}
.y172{bottom:831.569733pt;}
.y4b{bottom:831.592267pt;}
.yae{bottom:831.672133pt;}
.y1ff{bottom:843.198267pt;}
.y1d3{bottom:845.306267pt;}
.yc9{bottom:847.274400pt;}
.y1a5{bottom:848.172400pt;}
.y7b{bottom:848.191067pt;}
.y4a{bottom:848.392267pt;}
.y171{bottom:848.409733pt;}
.yad{bottom:848.458800pt;}
.y119{bottom:852.313201pt;}
.y1fe{bottom:858.218800pt;}
.y1d2{bottom:859.982267pt;}
.yc8{bottom:864.290000pt;}
.y7a{bottom:865.031067pt;}
.y1a4{bottom:865.092400pt;}
.y49{bottom:865.192267pt;}
.yac{bottom:865.245467pt;}
.y170{bottom:865.249733pt;}
.y10{bottom:870.939067pt;}
.y1fd{bottom:873.254800pt;}
.y1d1{bottom:874.658267pt;}
.y118{bottom:877.940097pt;}
.yc7{bottom:881.316667pt;}
.y79{bottom:881.871467pt;}
.y48{bottom:881.992267pt;}
.y1a3{bottom:882.012400pt;}
.yab{bottom:882.032133pt;}
.y16f{bottom:882.089733pt;}
.y1fc{bottom:888.290800pt;}
.y1d0{bottom:889.355333pt;}
.yf{bottom:896.272400pt;}
.yc6{bottom:898.343333pt;}
.y78{bottom:898.783600pt;}
.y47{bottom:898.792267pt;}
.yaa{bottom:898.818800pt;}
.y16e{bottom:898.929733pt;}
.y1fb{bottom:903.322533pt;}
.y117{bottom:903.373200pt;}
.y1cf{bottom:904.031333pt;}
.yc5{bottom:915.370000pt;}
.y46{bottom:915.592267pt;}
.ya9{bottom:915.605467pt;}
.y77{bottom:915.623600pt;}
.y16d{bottom:915.769733pt;}
.y1a2{bottom:915.852400pt;}
.y124{bottom:916.042267pt;}
.y121{bottom:918.249166pt;}
.y1fa{bottom:918.358533pt;}
.y1ce{bottom:918.707333pt;}
.y10d{bottom:926.790933pt;}
.ya8{bottom:932.392133pt;}
.y45{bottom:932.392267pt;}
.yc4{bottom:932.396667pt;}
.y76{bottom:932.463600pt;}
.y16c{bottom:932.609733pt;}
.y1a1{bottom:932.772400pt;}
.y1cd{bottom:933.383333pt;}
.y1f9{bottom:933.394533pt;}
.y43{bottom:979.654933pt;}
.y44{bottom:980.690400pt;}
.y7{bottom:985.574933pt;}
.y42{bottom:991.654933pt;}
.h9{height:21.962667pt;}
.h6{height:27.284885pt;}
.h25{height:27.980105pt;}
.h21{height:28.298667pt;}
.h27{height:29.299631pt;}
.hf{height:30.506667pt;}
.h2c{height:31.997521pt;}
.h2b{height:32.002854pt;}
.h3{height:34.272000pt;}
.h2{height:34.362667pt;}
.h24{height:34.814305pt;}
.h20{height:35.232000pt;}
.h23{height:35.546875pt;}
.h22{height:35.952647pt;}
.h26{height:36.045859pt;}
.hd{height:36.384000pt;}
.h7{height:37.866667pt;}
.h29{height:39.075962pt;}
.h2a{height:39.086096pt;}
.h28{height:39.098896pt;}
.h13{height:39.146667pt;}
.h8{height:39.202466pt;}
.hc{height:40.426667pt;}
.h15{height:40.758933pt;}
.h14{height:40.791467pt;}
.h17{height:40.992533pt;}
.h16{height:41.046400pt;}
.h1c{height:41.070933pt;}
.h1d{height:41.092267pt;}
.h1a{height:41.117867pt;}
.h19{height:41.441067pt;}
.h2d{height:42.346917pt;}
.h10{height:42.367717pt;}
.h11{height:42.614650pt;}
.h12{height:42.635983pt;}
.h1f{height:42.672250pt;}
.h1b{height:42.679717pt;}
.h1e{height:42.687717pt;}
.hb{height:46.976000pt;}
.h5{height:47.042959pt;}
.he{height:51.120000pt;}
.h4{height:64.000000pt;}
.h18{height:68.141867pt;}
.ha{height:75.733333pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:812.598667pt;}
.w1{width:812.666667pt;}
.x0{left:0.000000pt;}
.x7{left:56.692933pt;}
.x14{left:64.168533pt;}
.x22{left:66.140667pt;}
.x15{left:67.892133pt;}
.x19{left:75.590533pt;}
.x37{left:79.372933pt;}
.x1c{left:103.937067pt;}
.x17{left:109.097600pt;}
.x8{left:115.388800pt;}
.x1{left:123.242000pt;}
.x11{left:145.910267pt;}
.x12{left:149.633733pt;}
.x32{left:157.845067pt;}
.x33{left:164.272400pt;}
.xf{left:166.821467pt;}
.x5{left:196.732400pt;}
.x18{left:236.417016pt;}
.x23{left:258.799867pt;}
.x24{left:265.227200pt;}
.x4{left:269.328667pt;}
.x3{left:272.524667pt;}
.x2{left:303.385333pt;}
.x6{left:319.039013pt;}
.x9{left:358.849733pt;}
.xa{left:363.317867pt;}
.x34{left:414.296533pt;}
.x1a{left:416.697200pt;}
.x35{left:433.189867pt;}
.x1f{left:435.592000pt;}
.x36{left:436.979200pt;}
.x2b{left:438.826933pt;}
.x29{left:445.489600pt;}
.x25{left:459.175733pt;}
.x26{left:469.065981pt;}
.xb{left:476.793467pt;}
.xc{left:481.261600pt;}
.x21{left:491.830267pt;}
.x27{left:494.397490pt;}
.x2d{left:495.568470pt;}
.x28{left:497.524947pt;}
.x2c{left:500.460133pt;}
.x2f{left:514.743333pt;}
.x2e{left:544.975159pt;}
.x2a{left:548.984000pt;}
.x30{left:552.896524pt;}
.x1e{left:581.387733pt;}
.xd{left:592.404533pt;}
.xe{left:596.872667pt;}
.x10{left:608.182000pt;}
.x1d{left:623.030400pt;}
.x13{left:629.093067pt;}
.x20{left:636.342267pt;}
.x31{left:657.082713pt;}
.x16{left:710.834800pt;}
.x1b{left:734.555200pt;}
}




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