
    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_5465319b219bd5ce9cc58763.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_c602d35228f542b08f961802.woff')format("woff");}.ff2{font-family:ff2;line-height:1.013000;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_933171625416630dbffc25d3.woff')format("woff");}.ff3{font-family:ff3;line-height:1.078000;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_4095149c27120adb9d938868.woff')format("woff");}.ff4{font-family:ff4;line-height:0.969000;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_4b8431dc1d70eb46e75a48d2.woff')format("woff");}.ff5{font-family:ff5;line-height:1.075000;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_ba02e5dc8e1f7a112cd1b79d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_32b07e41f8d1354abb10b1f0.woff')format("woff");}.ff7{font-family:ff7;line-height:0.700000;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_46996a1fccb4397ff7849949.woff')format("woff");}.ff8{font-family:ff8;line-height:1.075000;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_afc5488f35b4c71ebccb53e3.woff')format("woff");}.ff9{font-family:ff9;line-height:1.076000;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_555805e1c07c94b1b54e98dd.woff')format("woff");}.ffa{font-family:ffa;line-height:1.086000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_637779743895eee9a1d67a9b.woff')format("woff");}.ffb{font-family:ffb;line-height:1.085000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_1b628ab7fbb3b7547a62eacb.woff')format("woff");}.ffc{font-family:ffc;line-height:1.075000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_444f3c5a9a27ebe5a2daeb71.woff')format("woff");}.ffd{font-family:ffd;line-height:1.078000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_86f0f7e02bfbffa7abad634e.woff')format("woff");}.ffe{font-family:ffe;line-height:1.076000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_2f139d0ddaeb6e2bbf1c4f0e.woff')format("woff");}.fff{font-family:fff;line-height:1.075000;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:ff10;src:url('chunks/assets/font_85c7100acadb6a65c013ac37.woff')format("woff");}.ff10{font-family:ff10;line-height:0.700000;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:ff11;src:url('chunks/assets/font_6888bf6f2844b63f7f1d7a45.woff')format("woff");}.ff11{font-family:ff11;line-height:0.984000;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:ff12;src:url('chunks/assets/font_933b6531fd51c939c4d48561.woff')format("woff");}.ff12{font-family:ff12;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_98f1a05c9582f94f9aef5c0c.woff')format("woff");}.ff13{font-family:ff13;line-height:0.969000;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:ff14;src:url('chunks/assets/font_63b90ef3b6f8102776f980ce.woff')format("woff");}.ff14{font-family:ff14;line-height:0.952000;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:ff15;src:url('chunks/assets/font_09d98ddd327545f89be7c527.woff')format("woff");}.ff15{font-family:ff15;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-0.569088px;}
.ls9{letter-spacing:-0.530784px;}
.ls37{letter-spacing:-0.429408px;}
.ls44{letter-spacing:-0.423360px;}
.ls2c{letter-spacing:-0.393120px;}
.ls35{letter-spacing:-0.368928px;}
.lsc{letter-spacing:-0.366624px;}
.ls3a{letter-spacing:-0.356832px;}
.ls38{letter-spacing:-0.350784px;}
.ls8{letter-spacing:-0.344736px;}
.ls22{letter-spacing:-0.338688px;}
.ls25{letter-spacing:-0.332640px;}
.ls36{letter-spacing:-0.326592px;}
.ls24{letter-spacing:-0.320544px;}
.ls21{letter-spacing:-0.308448px;}
.ls39{letter-spacing:-0.296352px;}
.ls46{letter-spacing:-0.290304px;}
.ls23{letter-spacing:-0.278208px;}
.ls2d{letter-spacing:-0.272160px;}
.ls45{letter-spacing:-0.266112px;}
.ls2a{letter-spacing:-0.260064px;}
.ls28{letter-spacing:-0.254016px;}
.lsa{letter-spacing:-0.251712px;}
.ls26{letter-spacing:-0.247968px;}
.ls3{letter-spacing:-0.241920px;}
.ls34{letter-spacing:-0.235872px;}
.ls50{letter-spacing:-0.231840px;}
.ls2b{letter-spacing:-0.229824px;}
.ls2f{letter-spacing:-0.223776px;}
.ls1a{letter-spacing:-0.211968px;}
.ls30{letter-spacing:-0.211680px;}
.ls2e{letter-spacing:-0.205632px;}
.ls7{letter-spacing:-0.196992px;}
.ls20{letter-spacing:-0.185472px;}
.ls14{letter-spacing:-0.178848px;}
.ls3b{letter-spacing:-0.175392px;}
.ls6{letter-spacing:-0.173808px;}
.ls3f{letter-spacing:-0.172224px;}
.ls5{letter-spacing:-0.163584px;}
.ls31{letter-spacing:-0.163296px;}
.ls4d{letter-spacing:-0.158976px;}
.ls12{letter-spacing:-0.152352px;}
.ls33{letter-spacing:-0.145728px;}
.ls27{letter-spacing:-0.145152px;}
.lsd{letter-spacing:-0.139104px;}
.ls4{letter-spacing:-0.132912px;}
.ls4a{letter-spacing:-0.132480px;}
.ls32{letter-spacing:-0.127008px;}
.ls13{letter-spacing:-0.125856px;}
.ls3c{letter-spacing:-0.120960px;}
.ls11{letter-spacing:-0.119232px;}
.ls1b{letter-spacing:-0.112608px;}
.ls29{letter-spacing:-0.108864px;}
.ls16{letter-spacing:-0.105984px;}
.lse{letter-spacing:-0.099360px;}
.ls51{letter-spacing:-0.092736px;}
.ls10{letter-spacing:-0.086112px;}
.ls4b{letter-spacing:-0.079488px;}
.ls15{letter-spacing:-0.072864px;}
.lsf{letter-spacing:-0.066240px;}
.ls19{letter-spacing:-0.059616px;}
.ls4c{letter-spacing:-0.052992px;}
.ls2{letter-spacing:0.000000px;}
.ls43{letter-spacing:0.113760px;}
.ls40{letter-spacing:0.114336px;}
.ls41{letter-spacing:0.114480px;}
.ls42{letter-spacing:0.115200px;}
.ls1c{letter-spacing:0.116640px;}
.ls48{letter-spacing:0.147744px;}
.ls3e{letter-spacing:0.155520px;}
.ls18{letter-spacing:0.171072px;}
.ls1e{letter-spacing:0.209952px;}
.ls0{letter-spacing:1.811520px;}
.ls47{letter-spacing:2.427840px;}
.ls1{letter-spacing:10.350720px;}
.ls4e{letter-spacing:14.673600px;}
.ls1d{letter-spacing:17.965872px;}
.ls17{letter-spacing:34.890768px;}
.ls1f{letter-spacing:41.877360px;}
.ls3d{letter-spacing:47.072160px;}
.ls49{letter-spacing:367.397712px;}
.ls4f{letter-spacing:847.440000px;}
.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;}
}
.ws23{word-spacing:-17.029440px;}
.ws2e{word-spacing:-17.021664px;}
.ws22{word-spacing:-16.990560px;}
.ws21{word-spacing:-16.344000px;}
.ws5{word-spacing:-15.624000px;}
.ws31{word-spacing:-15.089472px;}
.ws36{word-spacing:-15.069600px;}
.ws32{word-spacing:-15.056352px;}
.ws6{word-spacing:-15.036480px;}
.ws35{word-spacing:-15.023232px;}
.ws39{word-spacing:-14.976864px;}
.ws38{word-spacing:-14.963616px;}
.ws3a{word-spacing:-14.943744px;}
.ws37{word-spacing:-14.923872px;}
.ws30{word-spacing:-14.917248px;}
.ws34{word-spacing:-14.910624px;}
.ws2f{word-spacing:-14.904000px;}
.ws33{word-spacing:-14.897376px;}
.ws0{word-spacing:-14.878080px;}
.ws8{word-spacing:-14.374080px;}
.ws9{word-spacing:-14.188608px;}
.ws29{word-spacing:-13.849920px;}
.ws19{word-spacing:-13.728960px;}
.ws25{word-spacing:-13.620096px;}
.wse{word-spacing:-13.601952px;}
.ws17{word-spacing:-13.565664px;}
.ws28{word-spacing:-13.553568px;}
.ws1b{word-spacing:-13.523328px;}
.ws1c{word-spacing:-13.517280px;}
.ws26{word-spacing:-13.499136px;}
.ws1e{word-spacing:-13.487040px;}
.ws1f{word-spacing:-13.480992px;}
.wsd{word-spacing:-13.474944px;}
.ws1d{word-spacing:-13.468896px;}
.ws12{word-spacing:-13.456800px;}
.ws16{word-spacing:-13.432608px;}
.ws13{word-spacing:-13.408416px;}
.ws1a{word-spacing:-13.396320px;}
.ws2b{word-spacing:-13.384224px;}
.ws14{word-spacing:-13.378176px;}
.ws27{word-spacing:-13.372128px;}
.ws15{word-spacing:-13.360032px;}
.ws11{word-spacing:-13.299552px;}
.ws24{word-spacing:-13.124160px;}
.ws2a{word-spacing:-12.882240px;}
.wsb{word-spacing:-12.845952px;}
.ws2d{word-spacing:-12.833856px;}
.wsa{word-spacing:-12.815712px;}
.ws10{word-spacing:-12.797568px;}
.wsc{word-spacing:-12.785472px;}
.ws18{word-spacing:-12.779424px;}
.wsf{word-spacing:-12.755232px;}
.ws1{word-spacing:-12.530880px;}
.ws2{word-spacing:-12.186144px;}
.ws3{word-spacing:-12.169728px;}
.ws4{word-spacing:-12.164256px;}
.ws2c{word-spacing:-8.172000px;}
.ws20{word-spacing:-0.072000px;}
.ws7{word-spacing:0.000000px;}
._10{margin-left:-4.772160px;}
._5{margin-left:-3.378240px;}
._12{margin-left:-2.259360px;}
._0{margin-left:-1.194336px;}
._1{width:1.022400px;}
._4{width:2.128320px;}
._11{width:3.441600px;}
._7{width:4.703040px;}
._a{width:6.557760px;}
._2{width:7.683840px;}
._9{width:8.809920px;}
._8{width:10.267200px;}
._b{width:11.923200px;}
._c{width:13.049280px;}
._16{width:14.114880px;}
._1d{width:15.318720px;}
._6{width:16.824960px;}
._3{width:18.017280px;}
._f{width:19.036800px;}
._15{width:20.232000px;}
._1c{width:21.398400px;}
._19{width:22.903200px;}
._13{width:23.904000px;}
._14{width:24.940800px;}
._1b{width:26.020800px;}
._e{width:27.950400px;}
._1a{width:29.160000px;}
._1e{width:30.967200px;}
._21{width:32.598720px;}
._27{width:33.727680px;}
._18{width:35.719200px;}
._d{width:37.330560px;}
._28{width:40.089600px;}
._1f{width:41.581728px;}
._17{width:52.660800px;}
._26{width:54.311040px;}
._25{width:55.460160px;}
._24{width:57.093120px;}
._22{width:59.572800px;}
._23{width:64.048320px;}
._2c{width:68.823360px;}
._20{width:71.608320px;}
._2b{width:104.195520px;}
._31{width:123.706368px;}
._2d{width:138.309120px;}
._30{width:163.546560px;}
._32{width:205.542720px;}
._33{width:206.647776px;}
._34{width:223.493760px;}
._2f{width:244.028160px;}
._2e{width:245.154240px;}
._2a{width:274.829760px;}
._29{width:367.843248px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs8{font-size:41.760000px;}
.fs3{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs5{font-size:63.360000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs1{font-size:102.240000px;}
.y0{bottom:0.000000px;}
.y8e{bottom:1.440000px;}
.y80{bottom:4.140000px;}
.yb6{bottom:4.200000px;}
.yf6{bottom:4.260000px;}
.ybc{bottom:4.320000px;}
.y12b{bottom:4.380000px;}
.yc2{bottom:4.440000px;}
.y132{bottom:4.500000px;}
.yce{bottom:4.680000px;}
.y6a{bottom:4.740000px;}
.y14f{bottom:4.800000px;}
.ydd{bottom:4.860000px;}
.y70{bottom:4.920000px;}
.y12e{bottom:4.980000px;}
.y174{bottom:5.100000px;}
.yab{bottom:5.160000px;}
.y151{bottom:5.220000px;}
.yb0{bottom:5.280000px;}
.y8d{bottom:5.400000px;}
.yd3{bottom:5.460000px;}
.y62{bottom:7.080000px;}
.y178{bottom:7.980000px;}
.y7b{bottom:8.460000px;}
.y6d{bottom:9.240000px;}
.y64{bottom:9.420000px;}
.y79{bottom:10.140000px;}
.yb9{bottom:13.320000px;}
.ybf{bottom:13.440000px;}
.y181{bottom:15.600000px;}
.y7f{bottom:22.140000px;}
.yb4{bottom:22.200000px;}
.yf5{bottom:22.260000px;}
.ybb{bottom:22.320000px;}
.yc1{bottom:22.440000px;}
.y131{bottom:22.500000px;}
.y69{bottom:22.740000px;}
.ydc{bottom:22.860000px;}
.y6f{bottom:22.920000px;}
.y136{bottom:22.980000px;}
.yaa{bottom:23.160000px;}
.y155{bottom:23.220000px;}
.yaf{bottom:23.280000px;}
.yd1{bottom:23.460000px;}
.y177{bottom:25.980000px;}
.ya0{bottom:27.840000px;}
.yb8{bottom:31.320000px;}
.ybe{bottom:31.440000px;}
.ye1{bottom:31.860000px;}
.y97{bottom:32.160000px;}
.yb1{bottom:32.280000px;}
.yd5{bottom:32.460000px;}
.y173{bottom:33.540000px;}
.y180{bottom:35.040000px;}
.y7e{bottom:40.140000px;}
.yb3{bottom:40.200000px;}
.yf4{bottom:40.260000px;}
.yba{bottom:40.320000px;}
.yc0{bottom:40.440000px;}
.y130{bottom:40.500000px;}
.y68{bottom:40.740000px;}
.yd9{bottom:40.860000px;}
.ya9{bottom:41.160000px;}
.yae{bottom:41.280000px;}
.yd0{bottom:41.460000px;}
.y176{bottom:43.980000px;}
.y9f{bottom:45.840000px;}
.ydf{bottom:49.860000px;}
.y96{bottom:50.160000px;}
.y172{bottom:52.980000px;}
.y17f{bottom:54.480000px;}
.y2{bottom:57.240000px;}
.y17c{bottom:57.360000px;}
.y7d{bottom:58.140000px;}
.yb5{bottom:58.200000px;}
.yf3{bottom:58.260000px;}
.y67{bottom:58.740000px;}
.yd8{bottom:58.860000px;}
.ya8{bottom:59.160000px;}
.yad{bottom:59.280000px;}
.yd2{bottom:59.460000px;}
.y175{bottom:61.980000px;}
.y9e{bottom:63.840000px;}
.yde{bottom:67.860000px;}
.y93{bottom:68.160000px;}
.y17e{bottom:73.920000px;}
.y1{bottom:74.160000px;}
.y17b{bottom:75.360000px;}
.yf2{bottom:76.260000px;}
.y66{bottom:76.740000px;}
.yd7{bottom:76.860000px;}
.ya7{bottom:77.160000px;}
.y9d{bottom:81.840000px;}
.y92{bottom:86.160000px;}
.y17d{bottom:93.360000px;}
.yf1{bottom:94.260000px;}
.ydb{bottom:94.860000px;}
.y114{bottom:95.040000px;}
.ya6{bottom:95.160000px;}
.y77{bottom:97.500000px;}
.y9c{bottom:99.840000px;}
.y53{bottom:102.240000px;}
.y17a{bottom:102.360000px;}
.y15e{bottom:103.500000px;}
.y20{bottom:103.680000px;}
.y91{bottom:104.160000px;}
.ye6{bottom:107.580000px;}
.y125{bottom:108.360000px;}
.yfe{bottom:111.960000px;}
.yf0{bottom:112.260000px;}
.yda{bottom:112.860000px;}
.y144{bottom:113.040000px;}
.ya5{bottom:113.160000px;}
.y171{bottom:115.500000px;}
.y9b{bottom:116.040000px;}
.y3a{bottom:118.440000px;}
.yac{bottom:120.000000px;}
.y90{bottom:122.160000px;}
.y1f{bottom:123.480000px;}
.ye5{bottom:125.580000px;}
.y9a{bottom:126.840000px;}
.y113{bottom:127.440000px;}
.yef{bottom:130.260000px;}
.y15d{bottom:130.500000px;}
.ya4{bottom:131.160000px;}
.yd4{bottom:133.500000px;}
.y52{bottom:134.640000px;}
.y1c5{bottom:137.160000px;}
.y95{bottom:140.160000px;}
.y1e{bottom:143.280000px;}
.ye4{bottom:143.580000px;}
.y1ad{bottom:143.640000px;}
.yfd{bottom:144.360000px;}
.y99{bottom:144.840000px;}
.yee{bottom:148.260000px;}
.y143{bottom:148.500000px;}
.ya3{bottom:149.160000px;}
.y39{bottom:150.840000px;}
.y76{bottom:151.500000px;}
.y124{bottom:153.360000px;}
.y1c4{bottom:156.960000px;}
.y94{bottom:158.160000px;}
.y112{bottom:159.840000px;}
.y18f{bottom:162.000000px;}
.y98{bottom:162.840000px;}
.y1d{bottom:163.080000px;}
.y1ac{bottom:163.440000px;}
.yed{bottom:166.260000px;}
.y51{bottom:167.040000px;}
.ya2{bottom:167.160000px;}
.ye3{bottom:171.660000px;}
.y142{bottom:172.500000px;}
.y15c{bottom:175.500000px;}
.yfc{bottom:176.760000px;}
.y1c{bottom:182.880000px;}
.y38{bottom:183.240000px;}
.yec{bottom:184.260000px;}
.ya1{bottom:185.160000px;}
.y111{bottom:192.240000px;}
.y8f{bottom:195.000000px;}
.y141{bottom:198.000000px;}
.y123{bottom:198.360000px;}
.y50{bottom:199.440000px;}
.y170{bottom:201.000000px;}
.yeb{bottom:202.260000px;}
.y15b{bottom:202.500000px;}
.y1b{bottom:202.680000px;}
.y1ab{bottom:203.040000px;}
.y75{bottom:205.500000px;}
.yfb{bottom:209.160000px;}
.y18e{bottom:213.840000px;}
.ycf{bottom:214.500000px;}
.y37{bottom:215.640000px;}
.y1c3{bottom:217.440000px;}
.yea{bottom:220.260000px;}
.y140{bottom:222.000000px;}
.y1a{bottom:222.480000px;}
.y110{bottom:224.640000px;}
.y15a{bottom:229.500000px;}
.y4f{bottom:231.840000px;}
.y1c2{bottom:237.240000px;}
.y16f{bottom:237.960000px;}
.ye9{bottom:238.260000px;}
.yfa{bottom:241.560000px;}
.y19{bottom:242.280000px;}
.y1aa{bottom:243.720000px;}
.y122{bottom:246.240000px;}
.y13f{bottom:247.500000px;}
.y36{bottom:248.040000px;}
.ye8{bottom:256.260000px;}
.y159{bottom:256.500000px;}
.y1c1{bottom:257.040000px;}
.y74{bottom:259.500000px;}
.y18{bottom:262.080000px;}
.y1a9{bottom:263.520000px;}
.y4e{bottom:264.240000px;}
.y16e{bottom:264.960000px;}
.yf9{bottom:273.960000px;}
.y10f{bottom:275.040000px;}
.ye7{bottom:275.340000px;}
.y121{bottom:278.640000px;}
.y35{bottom:280.440000px;}
.y17{bottom:281.880000px;}
.y1a8{bottom:283.320000px;}
.y158{bottom:283.500000px;}
.y13e{bottom:289.500000px;}
.y5a{bottom:296.640000px;}
.ycd{bottom:297.000000px;}
.y1c0{bottom:298.080000px;}
.y1a7{bottom:303.120000px;}
.y16d{bottom:303.840000px;}
.y4d{bottom:305.640000px;}
.y10e{bottom:307.440000px;}
.y120{bottom:311.040000px;}
.y34{bottom:312.840000px;}
.y73{bottom:313.500000px;}
.yf8{bottom:314.640000px;}
.y1bf{bottom:317.880000px;}
.y157{bottom:328.500000px;}
.y188{bottom:329.040000px;}
.y16{bottom:330.840000px;}
.y13d{bottom:333.000000px;}
.y16c{bottom:336.240000px;}
.y1be{bottom:337.680000px;}
.y4c{bottom:338.040000px;}
.ycc{bottom:339.120000px;}
.y10d{bottom:339.840000px;}
.y11f{bottom:343.440000px;}
.y1a6{bottom:344.160000px;}
.y33{bottom:345.240000px;}
.y72{bottom:349.500000px;}
.yf7{bottom:353.880000px;}
.y156{bottom:355.500000px;}
.y187{bottom:361.440000px;}
.y1a5{bottom:363.960000px;}
.ycb{bottom:366.120000px;}
.y15{bottom:367.560000px;}
.y16b{bottom:368.640000px;}
.y4b{bottom:370.440000px;}
.y71{bottom:372.000000px;}
.y10c{bottom:372.240000px;}
.y13c{bottom:375.000000px;}
.y11e{bottom:375.840000px;}
.y32{bottom:377.640000px;}
.y1bd{bottom:378.360000px;}
.y154{bottom:382.500000px;}
.y1a4{bottom:383.760000px;}
.ye2{bottom:388.500000px;}
.y186{bottom:393.840000px;}
.y8c{bottom:396.000000px;}
.y1bc{bottom:398.160000px;}
.y14{bottom:400.320000px;}
.y13b{bottom:400.500000px;}
.y16a{bottom:401.040000px;}
.y4a{bottom:402.840000px;}
.y10b{bottom:404.640000px;}
.yca{bottom:405.000000px;}
.y6e{bottom:408.000000px;}
.y11d{bottom:408.240000px;}
.y31{bottom:410.040000px;}
.y1a3{bottom:424.440000px;}
.y185{bottom:426.240000px;}
.y153{bottom:427.500000px;}
.y13{bottom:429.120000px;}
.y49{bottom:435.240000px;}
.yc9{bottom:437.400000px;}
.y1bb{bottom:438.840000px;}
.y8b{bottom:439.920000px;}
.y18d{bottom:440.640000px;}
.y30{bottom:442.440000px;}
.y13a{bottom:442.500000px;}
.y169{bottom:442.800000px;}
.y6c{bottom:444.000000px;}
.y1a2{bottom:444.240000px;}
.y12{bottom:451.440000px;}
.y152{bottom:454.500000px;}
.y10a{bottom:455.040000px;}
.y1cc{bottom:457.560000px;}
.y8a{bottom:457.920000px;}
.y11c{bottom:458.640000px;}
.y1a1{bottom:464.040000px;}
.y6b{bottom:466.500000px;}
.y48{bottom:467.640000px;}
.y139{bottom:468.000000px;}
.yc8{bottom:469.800000px;}
.y18c{bottom:473.040000px;}
.y2f{bottom:474.840000px;}
.y184{bottom:476.640000px;}
.y1ba{bottom:478.440000px;}
.y150{bottom:481.500000px;}
.y1a0{bottom:483.840000px;}
.y65{bottom:484.500000px;}
.y89{bottom:484.920000px;}
.y109{bottom:487.440000px;}
.y11{bottom:488.520000px;}
.y11b{bottom:491.040000px;}
.y168{bottom:494.640000px;}
.y1cb{bottom:498.240000px;}
.y47{bottom:500.040000px;}
.yc7{bottom:502.200000px;}
.y18b{bottom:505.440000px;}
.y2e{bottom:507.240000px;}
.y138{bottom:510.000000px;}
.y10{bottom:517.320000px;}
.y1ca{bottom:518.040000px;}
.y1b9{bottom:519.480000px;}
.y108{bottom:519.840000px;}
.y11a{bottom:523.440000px;}
.y88{bottom:523.800000px;}
.y19f{bottom:524.520000px;}
.y167{bottom:527.040000px;}
.y46{bottom:532.440000px;}
.yc6{bottom:534.600000px;}
.y18a{bottom:537.840000px;}
.y1b8{bottom:539.280000px;}
.yf{bottom:539.640000px;}
.y19e{bottom:544.320000px;}
.y14e{bottom:547.560000px;}
.y107{bottom:552.240000px;}
.y137{bottom:553.500000px;}
.y119{bottom:555.840000px;}
.y87{bottom:556.200000px;}
.y1b7{bottom:559.080000px;}
.y166{bottom:559.440000px;}
.y19d{bottom:564.120000px;}
.y45{bottom:564.840000px;}
.y189{bottom:570.240000px;}
.y2d{bottom:572.040000px;}
.y63{bottom:574.500000px;}
.y14d{bottom:574.560000px;}
.yc5{bottom:575.280000px;}
.ye{bottom:576.720000px;}
.y135{bottom:577.500000px;}
.y1b6{bottom:578.880000px;}
.y106{bottom:584.640000px;}
.y118{bottom:588.240000px;}
.y183{bottom:591.000000px;}
.y165{bottom:591.840000px;}
.y86{bottom:596.880000px;}
.y61{bottom:597.000000px;}
.y44{bottom:597.240000px;}
.yd{bottom:597.600000px;}
.y1b5{bottom:598.680000px;}
.y2c{bottom:604.440000px;}
.y19c{bottom:605.160000px;}
.y59{bottom:606.240000px;}
.y14c{bottom:613.440000px;}
.y1c9{bottom:618.480000px;}
.y117{bottom:620.640000px;}
.y134{bottom:621.000000px;}
.yc{bottom:624.240000px;}
.y19b{bottom:624.960000px;}
.y105{bottom:625.320000px;}
.y43{bottom:629.640000px;}
.y60{bottom:633.960000px;}
.y2b{bottom:636.840000px;}
.y1c8{bottom:638.280000px;}
.y58{bottom:638.640000px;}
.y1b4{bottom:639.360000px;}
.y19a{bottom:644.760000px;}
.y133{bottom:645.000000px;}
.y85{bottom:645.840000px;}
.y116{bottom:653.040000px;}
.yb{bottom:653.400000px;}
.yc4{bottom:656.640000px;}
.y1b3{bottom:659.160000px;}
.y5f{bottom:660.960000px;}
.y42{bottom:662.040000px;}
.y14b{bottom:663.840000px;}
.y199{bottom:664.560000px;}
.y104{bottom:666.000000px;}
.y2a{bottom:669.240000px;}
.y12f{bottom:670.500000px;}
.y57{bottom:671.040000px;}
.y84{bottom:678.240000px;}
.ya{bottom:678.600000px;}
.y1b2{bottom:678.960000px;}
.ye0{bottom:679.500000px;}
.y198{bottom:684.360000px;}
.y115{bottom:685.440000px;}
.yc3{bottom:689.040000px;}
.y182{bottom:690.000000px;}
.y41{bottom:694.440000px;}
.y14a{bottom:696.240000px;}
.y1b1{bottom:698.760000px;}
.y5e{bottom:699.840000px;}
.y29{bottom:702.360000px;}
.y56{bottom:703.440000px;}
.y9{bottom:705.240000px;}
.y83{bottom:710.640000px;}
.y103{bottom:717.840000px;}
.y1c7{bottom:718.560000px;}
.y164{bottom:724.500000px;}
.y197{bottom:725.040000px;}
.ybd{bottom:726.000000px;}
.y40{bottom:726.840000px;}
.y149{bottom:728.640000px;}
.y12d{bottom:730.500000px;}
.y5d{bottom:732.240000px;}
.y55{bottom:735.840000px;}
.y8{bottom:737.640000px;}
.y1c6{bottom:738.360000px;}
.y1b0{bottom:739.440000px;}
.y82{bottom:743.040000px;}
.y28{bottom:743.760000px;}
.y196{bottom:744.840000px;}
.y102{bottom:750.240000px;}
.y163{bottom:751.500000px;}
.y12c{bottom:756.000000px;}
.y3f{bottom:759.240000px;}
.y148{bottom:761.040000px;}
.y195{bottom:764.640000px;}
.y7{bottom:768.240000px;}
.y5c{bottom:772.920000px;}
.yd6{bottom:778.500000px;}
.y1af{bottom:779.040000px;}
.y27{bottom:780.480000px;}
.y12a{bottom:781.500000px;}
.y81{bottom:781.560000px;}
.y101{bottom:782.640000px;}
.yb7{bottom:783.000000px;}
.y194{bottom:784.440000px;}
.y179{bottom:789.000000px;}
.y3e{bottom:791.640000px;}
.y147{bottom:793.440000px;}
.y7c{bottom:796.500000px;}
.y6{bottom:798.840000px;}
.y26{bottom:800.280000px;}
.y54{bottom:800.640000px;}
.y162{bottom:805.500000px;}
.y129{bottom:807.000000px;}
.y5b{bottom:813.600000px;}
.y100{bottom:815.040000px;}
.y1ae{bottom:818.640000px;}
.y25{bottom:820.080000px;}
.y193{bottom:825.120000px;}
.y146{bottom:825.840000px;}
.y5{bottom:829.440000px;}
.y161{bottom:832.500000px;}
.y3d{bottom:833.040000px;}
.y24{bottom:839.880000px;}
.yb2{bottom:840.000000px;}
.y192{bottom:844.920000px;}
.y128{bottom:846.360000px;}
.yff{bottom:847.440000px;}
.y145{bottom:858.240000px;}
.y160{bottom:859.500000px;}
.y23{bottom:859.680000px;}
.y4{bottom:860.040000px;}
.y127{bottom:864.360000px;}
.y191{bottom:864.720000px;}
.y3c{bottom:865.440000px;}
.y7a{bottom:868.500000px;}
.y22{bottom:879.480000px;}
.y15f{bottom:886.500000px;}
.y78{bottom:889.500000px;}
.y3{bottom:890.640000px;}
.y190{bottom:896.400000px;}
.y3b{bottom:897.840000px;}
.y21{bottom:899.280000px;}
.y126{bottom:900.360000px;}
.h12{height:19.500000px;}
.h1a{height:21.168000px;}
.h16{height:22.500000px;}
.hf{height:24.000000px;}
.h15{height:25.500000px;}
.h18{height:28.500000px;}
.h13{height:37.500000px;}
.h5{height:38.960640px;}
.h2{height:40.310156px;}
.h20{height:42.000000px;}
.h7{height:44.149219px;}
.h6{height:44.760960px;}
.h21{height:46.500000px;}
.h11{height:49.472640px;}
.he{height:49.533120px;}
.ha{height:50.863680px;}
.h8{height:54.184320px;}
.h9{height:54.250560px;}
.hd{height:55.177920px;}
.h14{height:55.500000px;}
.hc{height:58.896000px;}
.h4{height:59.976000px;}
.h1f{height:60.000000px;}
.hb{height:65.396160px;}
.h17{height:73.500000px;}
.h1b{height:82.500000px;}
.h22{height:85.500000px;}
.h3{height:85.983840px;}
.h10{height:91.500000px;}
.h1d{height:100.500000px;}
.h23{height:126.000000px;}
.h1c{height:136.500000px;}
.h19{height:199.500000px;}
.h1e{height:292.500000px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w11{width:57.000000px;}
.w12{width:63.000000px;}
.w2{width:66.000000px;}
.wf{width:69.000000px;}
.w13{width:73.500000px;}
.we{width:84.000000px;}
.w10{width:88.500000px;}
.w8{width:115.500000px;}
.w5{width:120.000000px;}
.wc{width:129.000000px;}
.w9{width:133.500000px;}
.w6{width:148.500000px;}
.w14{width:163.500000px;}
.w7{width:175.500000px;}
.wb{width:183.000000px;}
.wd{width:190.500000px;}
.w15{width:211.500000px;}
.wa{width:238.500000px;}
.w16{width:393.000000px;}
.w3{width:490.500000px;}
.w4{width:555.000000px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x3a{left:1.020000px;}
.x3b{left:2.977800px;}
.x4b{left:8.879892px;}
.x14{left:9.959856px;}
.x48{left:10.996584px;}
.x20{left:12.143184px;}
.x18{left:13.800660px;}
.x12{left:15.067752px;}
.x23{left:16.276248px;}
.x3f{left:17.970720px;}
.x21{left:19.432968px;}
.x25{left:20.949000px;}
.x28{left:22.628640px;}
.x2c{left:23.663076px;}
.x17{left:25.859976px;}
.x3e{left:26.970720px;}
.x22{left:28.200084px;}
.x16{left:29.459832px;}
.x2a{left:30.660240px;}
.x29{left:31.815120px;}
.x15{left:32.834832px;}
.x31{left:34.260876px;}
.x1a{left:35.708112px;}
.x26{left:38.055840px;}
.x2b{left:39.450420px;}
.x4d{left:40.958484px;}
.x2d{left:42.053112px;}
.x32{left:44.152956px;}
.x24{left:47.272356px;}
.x4e{left:48.773076px;}
.x2e{left:50.775720px;}
.x47{left:52.890036px;}
.x1d{left:54.323160px;}
.x49{left:56.362776px;}
.x27{left:57.532920px;}
.x46{left:59.114868px;}
.x33{left:63.315360px;}
.x38{left:64.462272px;}
.x36{left:67.141116px;}
.x42{left:70.042992px;}
.x1b{left:73.619748px;}
.x45{left:75.443160px;}
.x4c{left:81.562128px;}
.x7{left:84.959856px;}
.x1e{left:87.187560px;}
.x44{left:89.633040px;}
.x5{left:97.015860px;}
.x40{left:111.959856px;}
.x11{left:116.834832px;}
.x34{left:127.484964px;}
.x4{left:130.879404px;}
.x3{left:148.793688px;}
.x4a{left:170.377800px;}
.x6{left:177.047640px;}
.x19{left:202.500000px;}
.x13{left:208.103400px;}
.x35{left:211.500000px;}
.x2f{left:217.500000px;}
.x41{left:246.000000px;}
.x39{left:294.000000px;}
.x10{left:319.226076px;}
.xd{left:325.888164px;}
.x2{left:332.075304px;}
.xf{left:339.144300px;}
.x9{left:342.113904px;}
.x1c{left:349.500000px;}
.x1{left:361.372320px;}
.x37{left:448.500000px;}
.x30{left:454.500000px;}
.x43{left:456.000000px;}
.xe{left:461.245320px;}
.x8{left:463.332960px;}
.xa{left:466.002000px;}
.xc{left:502.212960px;}
.x3c{left:504.000000px;}
.x1f{left:523.500000px;}
.xb{left:544.565160px;}
.x3d{left:565.500000px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.505856pt;}
.ls9{letter-spacing:-0.471808pt;}
.ls37{letter-spacing:-0.381696pt;}
.ls44{letter-spacing:-0.376320pt;}
.ls2c{letter-spacing:-0.349440pt;}
.ls35{letter-spacing:-0.327936pt;}
.lsc{letter-spacing:-0.325888pt;}
.ls3a{letter-spacing:-0.317184pt;}
.ls38{letter-spacing:-0.311808pt;}
.ls8{letter-spacing:-0.306432pt;}
.ls22{letter-spacing:-0.301056pt;}
.ls25{letter-spacing:-0.295680pt;}
.ls36{letter-spacing:-0.290304pt;}
.ls24{letter-spacing:-0.284928pt;}
.ls21{letter-spacing:-0.274176pt;}
.ls39{letter-spacing:-0.263424pt;}
.ls46{letter-spacing:-0.258048pt;}
.ls23{letter-spacing:-0.247296pt;}
.ls2d{letter-spacing:-0.241920pt;}
.ls45{letter-spacing:-0.236544pt;}
.ls2a{letter-spacing:-0.231168pt;}
.ls28{letter-spacing:-0.225792pt;}
.lsa{letter-spacing:-0.223744pt;}
.ls26{letter-spacing:-0.220416pt;}
.ls3{letter-spacing:-0.215040pt;}
.ls34{letter-spacing:-0.209664pt;}
.ls50{letter-spacing:-0.206080pt;}
.ls2b{letter-spacing:-0.204288pt;}
.ls2f{letter-spacing:-0.198912pt;}
.ls1a{letter-spacing:-0.188416pt;}
.ls30{letter-spacing:-0.188160pt;}
.ls2e{letter-spacing:-0.182784pt;}
.ls7{letter-spacing:-0.175104pt;}
.ls20{letter-spacing:-0.164864pt;}
.ls14{letter-spacing:-0.158976pt;}
.ls3b{letter-spacing:-0.155904pt;}
.ls6{letter-spacing:-0.154496pt;}
.ls3f{letter-spacing:-0.153088pt;}
.ls5{letter-spacing:-0.145408pt;}
.ls31{letter-spacing:-0.145152pt;}
.ls4d{letter-spacing:-0.141312pt;}
.ls12{letter-spacing:-0.135424pt;}
.ls33{letter-spacing:-0.129536pt;}
.ls27{letter-spacing:-0.129024pt;}
.lsd{letter-spacing:-0.123648pt;}
.ls4{letter-spacing:-0.118144pt;}
.ls4a{letter-spacing:-0.117760pt;}
.ls32{letter-spacing:-0.112896pt;}
.ls13{letter-spacing:-0.111872pt;}
.ls3c{letter-spacing:-0.107520pt;}
.ls11{letter-spacing:-0.105984pt;}
.ls1b{letter-spacing:-0.100096pt;}
.ls29{letter-spacing:-0.096768pt;}
.ls16{letter-spacing:-0.094208pt;}
.lse{letter-spacing:-0.088320pt;}
.ls51{letter-spacing:-0.082432pt;}
.ls10{letter-spacing:-0.076544pt;}
.ls4b{letter-spacing:-0.070656pt;}
.ls15{letter-spacing:-0.064768pt;}
.lsf{letter-spacing:-0.058880pt;}
.ls19{letter-spacing:-0.052992pt;}
.ls4c{letter-spacing:-0.047104pt;}
.ls2{letter-spacing:0.000000pt;}
.ls43{letter-spacing:0.101120pt;}
.ls40{letter-spacing:0.101632pt;}
.ls41{letter-spacing:0.101760pt;}
.ls42{letter-spacing:0.102400pt;}
.ls1c{letter-spacing:0.103680pt;}
.ls48{letter-spacing:0.131328pt;}
.ls3e{letter-spacing:0.138240pt;}
.ls18{letter-spacing:0.152064pt;}
.ls1e{letter-spacing:0.186624pt;}
.ls0{letter-spacing:1.610240pt;}
.ls47{letter-spacing:2.158080pt;}
.ls1{letter-spacing:9.200640pt;}
.ls4e{letter-spacing:13.043200pt;}
.ls1d{letter-spacing:15.969664pt;}
.ls17{letter-spacing:31.014016pt;}
.ls1f{letter-spacing:37.224320pt;}
.ls3d{letter-spacing:41.841920pt;}
.ls49{letter-spacing:326.575744pt;}
.ls4f{letter-spacing:753.280000pt;}
.ws23{word-spacing:-15.137280pt;}
.ws2e{word-spacing:-15.130368pt;}
.ws22{word-spacing:-15.102720pt;}
.ws21{word-spacing:-14.528000pt;}
.ws5{word-spacing:-13.888000pt;}
.ws31{word-spacing:-13.412864pt;}
.ws36{word-spacing:-13.395200pt;}
.ws32{word-spacing:-13.383424pt;}
.ws6{word-spacing:-13.365760pt;}
.ws35{word-spacing:-13.353984pt;}
.ws39{word-spacing:-13.312768pt;}
.ws38{word-spacing:-13.300992pt;}
.ws3a{word-spacing:-13.283328pt;}
.ws37{word-spacing:-13.265664pt;}
.ws30{word-spacing:-13.259776pt;}
.ws34{word-spacing:-13.253888pt;}
.ws2f{word-spacing:-13.248000pt;}
.ws33{word-spacing:-13.242112pt;}
.ws0{word-spacing:-13.224960pt;}
.ws8{word-spacing:-12.776960pt;}
.ws9{word-spacing:-12.612096pt;}
.ws29{word-spacing:-12.311040pt;}
.ws19{word-spacing:-12.203520pt;}
.ws25{word-spacing:-12.106752pt;}
.wse{word-spacing:-12.090624pt;}
.ws17{word-spacing:-12.058368pt;}
.ws28{word-spacing:-12.047616pt;}
.ws1b{word-spacing:-12.020736pt;}
.ws1c{word-spacing:-12.015360pt;}
.ws26{word-spacing:-11.999232pt;}
.ws1e{word-spacing:-11.988480pt;}
.ws1f{word-spacing:-11.983104pt;}
.wsd{word-spacing:-11.977728pt;}
.ws1d{word-spacing:-11.972352pt;}
.ws12{word-spacing:-11.961600pt;}
.ws16{word-spacing:-11.940096pt;}
.ws13{word-spacing:-11.918592pt;}
.ws1a{word-spacing:-11.907840pt;}
.ws2b{word-spacing:-11.897088pt;}
.ws14{word-spacing:-11.891712pt;}
.ws27{word-spacing:-11.886336pt;}
.ws15{word-spacing:-11.875584pt;}
.ws11{word-spacing:-11.821824pt;}
.ws24{word-spacing:-11.665920pt;}
.ws2a{word-spacing:-11.450880pt;}
.wsb{word-spacing:-11.418624pt;}
.ws2d{word-spacing:-11.407872pt;}
.wsa{word-spacing:-11.391744pt;}
.ws10{word-spacing:-11.375616pt;}
.wsc{word-spacing:-11.364864pt;}
.ws18{word-spacing:-11.359488pt;}
.wsf{word-spacing:-11.337984pt;}
.ws1{word-spacing:-11.138560pt;}
.ws2{word-spacing:-10.832128pt;}
.ws3{word-spacing:-10.817536pt;}
.ws4{word-spacing:-10.812672pt;}
.ws2c{word-spacing:-7.264000pt;}
.ws20{word-spacing:-0.064000pt;}
.ws7{word-spacing:0.000000pt;}
._10{margin-left:-4.241920pt;}
._5{margin-left:-3.002880pt;}
._12{margin-left:-2.008320pt;}
._0{margin-left:-1.061632pt;}
._1{width:0.908800pt;}
._4{width:1.891840pt;}
._11{width:3.059200pt;}
._7{width:4.180480pt;}
._a{width:5.829120pt;}
._2{width:6.830080pt;}
._9{width:7.831040pt;}
._8{width:9.126400pt;}
._b{width:10.598400pt;}
._c{width:11.599360pt;}
._16{width:12.546560pt;}
._1d{width:13.616640pt;}
._6{width:14.955520pt;}
._3{width:16.015360pt;}
._f{width:16.921600pt;}
._15{width:17.984000pt;}
._1c{width:19.020800pt;}
._19{width:20.358400pt;}
._13{width:21.248000pt;}
._14{width:22.169600pt;}
._1b{width:23.129600pt;}
._e{width:24.844800pt;}
._1a{width:25.920000pt;}
._1e{width:27.526400pt;}
._21{width:28.976640pt;}
._27{width:29.980160pt;}
._18{width:31.750400pt;}
._d{width:33.182720pt;}
._28{width:35.635200pt;}
._1f{width:36.961536pt;}
._17{width:46.809600pt;}
._26{width:48.276480pt;}
._25{width:49.297920pt;}
._24{width:50.749440pt;}
._22{width:52.953600pt;}
._23{width:56.931840pt;}
._2c{width:61.176320pt;}
._20{width:63.651840pt;}
._2b{width:92.618240pt;}
._31{width:109.961216pt;}
._2d{width:122.941440pt;}
._30{width:145.374720pt;}
._32{width:182.704640pt;}
._33{width:183.686912pt;}
._34{width:198.661120pt;}
._2f{width:216.913920pt;}
._2e{width:217.914880pt;}
._2a{width:244.293120pt;}
._29{width:326.971776pt;}
.fs7{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs8{font-size:37.120000pt;}
.fs3{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs5{font-size:56.320000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs1{font-size:90.880000pt;}
.y0{bottom:0.000000pt;}
.y8e{bottom:1.280000pt;}
.y80{bottom:3.680000pt;}
.yb6{bottom:3.733333pt;}
.yf6{bottom:3.786667pt;}
.ybc{bottom:3.840000pt;}
.y12b{bottom:3.893333pt;}
.yc2{bottom:3.946667pt;}
.y132{bottom:4.000000pt;}
.yce{bottom:4.160000pt;}
.y6a{bottom:4.213333pt;}
.y14f{bottom:4.266667pt;}
.ydd{bottom:4.320000pt;}
.y70{bottom:4.373333pt;}
.y12e{bottom:4.426667pt;}
.y174{bottom:4.533333pt;}
.yab{bottom:4.586667pt;}
.y151{bottom:4.640000pt;}
.yb0{bottom:4.693333pt;}
.y8d{bottom:4.800000pt;}
.yd3{bottom:4.853333pt;}
.y62{bottom:6.293333pt;}
.y178{bottom:7.093333pt;}
.y7b{bottom:7.520000pt;}
.y6d{bottom:8.213333pt;}
.y64{bottom:8.373333pt;}
.y79{bottom:9.013333pt;}
.yb9{bottom:11.840000pt;}
.ybf{bottom:11.946667pt;}
.y181{bottom:13.866667pt;}
.y7f{bottom:19.680000pt;}
.yb4{bottom:19.733333pt;}
.yf5{bottom:19.786667pt;}
.ybb{bottom:19.840000pt;}
.yc1{bottom:19.946667pt;}
.y131{bottom:20.000000pt;}
.y69{bottom:20.213333pt;}
.ydc{bottom:20.320000pt;}
.y6f{bottom:20.373333pt;}
.y136{bottom:20.426667pt;}
.yaa{bottom:20.586667pt;}
.y155{bottom:20.640000pt;}
.yaf{bottom:20.693333pt;}
.yd1{bottom:20.853333pt;}
.y177{bottom:23.093333pt;}
.ya0{bottom:24.746667pt;}
.yb8{bottom:27.840000pt;}
.ybe{bottom:27.946667pt;}
.ye1{bottom:28.320000pt;}
.y97{bottom:28.586667pt;}
.yb1{bottom:28.693333pt;}
.yd5{bottom:28.853333pt;}
.y173{bottom:29.813333pt;}
.y180{bottom:31.146667pt;}
.y7e{bottom:35.680000pt;}
.yb3{bottom:35.733333pt;}
.yf4{bottom:35.786667pt;}
.yba{bottom:35.840000pt;}
.yc0{bottom:35.946667pt;}
.y130{bottom:36.000000pt;}
.y68{bottom:36.213333pt;}
.yd9{bottom:36.320000pt;}
.ya9{bottom:36.586667pt;}
.yae{bottom:36.693333pt;}
.yd0{bottom:36.853333pt;}
.y176{bottom:39.093333pt;}
.y9f{bottom:40.746667pt;}
.ydf{bottom:44.320000pt;}
.y96{bottom:44.586667pt;}
.y172{bottom:47.093333pt;}
.y17f{bottom:48.426667pt;}
.y2{bottom:50.880000pt;}
.y17c{bottom:50.986667pt;}
.y7d{bottom:51.680000pt;}
.yb5{bottom:51.733333pt;}
.yf3{bottom:51.786667pt;}
.y67{bottom:52.213333pt;}
.yd8{bottom:52.320000pt;}
.ya8{bottom:52.586667pt;}
.yad{bottom:52.693333pt;}
.yd2{bottom:52.853333pt;}
.y175{bottom:55.093333pt;}
.y9e{bottom:56.746667pt;}
.yde{bottom:60.320000pt;}
.y93{bottom:60.586667pt;}
.y17e{bottom:65.706667pt;}
.y1{bottom:65.920000pt;}
.y17b{bottom:66.986667pt;}
.yf2{bottom:67.786667pt;}
.y66{bottom:68.213333pt;}
.yd7{bottom:68.320000pt;}
.ya7{bottom:68.586667pt;}
.y9d{bottom:72.746667pt;}
.y92{bottom:76.586667pt;}
.y17d{bottom:82.986667pt;}
.yf1{bottom:83.786667pt;}
.ydb{bottom:84.320000pt;}
.y114{bottom:84.480000pt;}
.ya6{bottom:84.586667pt;}
.y77{bottom:86.666667pt;}
.y9c{bottom:88.746667pt;}
.y53{bottom:90.880000pt;}
.y17a{bottom:90.986667pt;}
.y15e{bottom:92.000000pt;}
.y20{bottom:92.160000pt;}
.y91{bottom:92.586667pt;}
.ye6{bottom:95.626667pt;}
.y125{bottom:96.320000pt;}
.yfe{bottom:99.520000pt;}
.yf0{bottom:99.786667pt;}
.yda{bottom:100.320000pt;}
.y144{bottom:100.480000pt;}
.ya5{bottom:100.586667pt;}
.y171{bottom:102.666667pt;}
.y9b{bottom:103.146667pt;}
.y3a{bottom:105.280000pt;}
.yac{bottom:106.666667pt;}
.y90{bottom:108.586667pt;}
.y1f{bottom:109.760000pt;}
.ye5{bottom:111.626667pt;}
.y9a{bottom:112.746667pt;}
.y113{bottom:113.280000pt;}
.yef{bottom:115.786667pt;}
.y15d{bottom:116.000000pt;}
.ya4{bottom:116.586667pt;}
.yd4{bottom:118.666667pt;}
.y52{bottom:119.680000pt;}
.y1c5{bottom:121.920000pt;}
.y95{bottom:124.586667pt;}
.y1e{bottom:127.360000pt;}
.ye4{bottom:127.626667pt;}
.y1ad{bottom:127.680000pt;}
.yfd{bottom:128.320000pt;}
.y99{bottom:128.746667pt;}
.yee{bottom:131.786667pt;}
.y143{bottom:132.000000pt;}
.ya3{bottom:132.586667pt;}
.y39{bottom:134.080000pt;}
.y76{bottom:134.666667pt;}
.y124{bottom:136.320000pt;}
.y1c4{bottom:139.520000pt;}
.y94{bottom:140.586667pt;}
.y112{bottom:142.080000pt;}
.y18f{bottom:144.000000pt;}
.y98{bottom:144.746667pt;}
.y1d{bottom:144.960000pt;}
.y1ac{bottom:145.280000pt;}
.yed{bottom:147.786667pt;}
.y51{bottom:148.480000pt;}
.ya2{bottom:148.586667pt;}
.ye3{bottom:152.586667pt;}
.y142{bottom:153.333333pt;}
.y15c{bottom:156.000000pt;}
.yfc{bottom:157.120000pt;}
.y1c{bottom:162.560000pt;}
.y38{bottom:162.880000pt;}
.yec{bottom:163.786667pt;}
.ya1{bottom:164.586667pt;}
.y111{bottom:170.880000pt;}
.y8f{bottom:173.333333pt;}
.y141{bottom:176.000000pt;}
.y123{bottom:176.320000pt;}
.y50{bottom:177.280000pt;}
.y170{bottom:178.666667pt;}
.yeb{bottom:179.786667pt;}
.y15b{bottom:180.000000pt;}
.y1b{bottom:180.160000pt;}
.y1ab{bottom:180.480000pt;}
.y75{bottom:182.666667pt;}
.yfb{bottom:185.920000pt;}
.y18e{bottom:190.080000pt;}
.ycf{bottom:190.666667pt;}
.y37{bottom:191.680000pt;}
.y1c3{bottom:193.280000pt;}
.yea{bottom:195.786667pt;}
.y140{bottom:197.333333pt;}
.y1a{bottom:197.760000pt;}
.y110{bottom:199.680000pt;}
.y15a{bottom:204.000000pt;}
.y4f{bottom:206.080000pt;}
.y1c2{bottom:210.880000pt;}
.y16f{bottom:211.520000pt;}
.ye9{bottom:211.786667pt;}
.yfa{bottom:214.720000pt;}
.y19{bottom:215.360000pt;}
.y1aa{bottom:216.640000pt;}
.y122{bottom:218.880000pt;}
.y13f{bottom:220.000000pt;}
.y36{bottom:220.480000pt;}
.ye8{bottom:227.786667pt;}
.y159{bottom:228.000000pt;}
.y1c1{bottom:228.480000pt;}
.y74{bottom:230.666667pt;}
.y18{bottom:232.960000pt;}
.y1a9{bottom:234.240000pt;}
.y4e{bottom:234.880000pt;}
.y16e{bottom:235.520000pt;}
.yf9{bottom:243.520000pt;}
.y10f{bottom:244.480000pt;}
.ye7{bottom:244.746667pt;}
.y121{bottom:247.680000pt;}
.y35{bottom:249.280000pt;}
.y17{bottom:250.560000pt;}
.y1a8{bottom:251.840000pt;}
.y158{bottom:252.000000pt;}
.y13e{bottom:257.333333pt;}
.y5a{bottom:263.680000pt;}
.ycd{bottom:264.000000pt;}
.y1c0{bottom:264.960000pt;}
.y1a7{bottom:269.440000pt;}
.y16d{bottom:270.080000pt;}
.y4d{bottom:271.680000pt;}
.y10e{bottom:273.280000pt;}
.y120{bottom:276.480000pt;}
.y34{bottom:278.080000pt;}
.y73{bottom:278.666667pt;}
.yf8{bottom:279.680000pt;}
.y1bf{bottom:282.560000pt;}
.y157{bottom:292.000000pt;}
.y188{bottom:292.480000pt;}
.y16{bottom:294.080000pt;}
.y13d{bottom:296.000000pt;}
.y16c{bottom:298.880000pt;}
.y1be{bottom:300.160000pt;}
.y4c{bottom:300.480000pt;}
.ycc{bottom:301.440000pt;}
.y10d{bottom:302.080000pt;}
.y11f{bottom:305.280000pt;}
.y1a6{bottom:305.920000pt;}
.y33{bottom:306.880000pt;}
.y72{bottom:310.666667pt;}
.yf7{bottom:314.560000pt;}
.y156{bottom:316.000000pt;}
.y187{bottom:321.280000pt;}
.y1a5{bottom:323.520000pt;}
.ycb{bottom:325.440000pt;}
.y15{bottom:326.720000pt;}
.y16b{bottom:327.680000pt;}
.y4b{bottom:329.280000pt;}
.y71{bottom:330.666667pt;}
.y10c{bottom:330.880000pt;}
.y13c{bottom:333.333333pt;}
.y11e{bottom:334.080000pt;}
.y32{bottom:335.680000pt;}
.y1bd{bottom:336.320000pt;}
.y154{bottom:340.000000pt;}
.y1a4{bottom:341.120000pt;}
.ye2{bottom:345.333333pt;}
.y186{bottom:350.080000pt;}
.y8c{bottom:352.000000pt;}
.y1bc{bottom:353.920000pt;}
.y14{bottom:355.840000pt;}
.y13b{bottom:356.000000pt;}
.y16a{bottom:356.480000pt;}
.y4a{bottom:358.080000pt;}
.y10b{bottom:359.680000pt;}
.yca{bottom:360.000000pt;}
.y6e{bottom:362.666667pt;}
.y11d{bottom:362.880000pt;}
.y31{bottom:364.480000pt;}
.y1a3{bottom:377.280000pt;}
.y185{bottom:378.880000pt;}
.y153{bottom:380.000000pt;}
.y13{bottom:381.440000pt;}
.y49{bottom:386.880000pt;}
.yc9{bottom:388.800000pt;}
.y1bb{bottom:390.080000pt;}
.y8b{bottom:391.040000pt;}
.y18d{bottom:391.680000pt;}
.y30{bottom:393.280000pt;}
.y13a{bottom:393.333333pt;}
.y169{bottom:393.600000pt;}
.y6c{bottom:394.666667pt;}
.y1a2{bottom:394.880000pt;}
.y12{bottom:401.280000pt;}
.y152{bottom:404.000000pt;}
.y10a{bottom:404.480000pt;}
.y1cc{bottom:406.720000pt;}
.y8a{bottom:407.040000pt;}
.y11c{bottom:407.680000pt;}
.y1a1{bottom:412.480000pt;}
.y6b{bottom:414.666667pt;}
.y48{bottom:415.680000pt;}
.y139{bottom:416.000000pt;}
.yc8{bottom:417.600000pt;}
.y18c{bottom:420.480000pt;}
.y2f{bottom:422.080000pt;}
.y184{bottom:423.680000pt;}
.y1ba{bottom:425.280000pt;}
.y150{bottom:428.000000pt;}
.y1a0{bottom:430.080000pt;}
.y65{bottom:430.666667pt;}
.y89{bottom:431.040000pt;}
.y109{bottom:433.280000pt;}
.y11{bottom:434.240000pt;}
.y11b{bottom:436.480000pt;}
.y168{bottom:439.680000pt;}
.y1cb{bottom:442.880000pt;}
.y47{bottom:444.480000pt;}
.yc7{bottom:446.400000pt;}
.y18b{bottom:449.280000pt;}
.y2e{bottom:450.880000pt;}
.y138{bottom:453.333333pt;}
.y10{bottom:459.840000pt;}
.y1ca{bottom:460.480000pt;}
.y1b9{bottom:461.760000pt;}
.y108{bottom:462.080000pt;}
.y11a{bottom:465.280000pt;}
.y88{bottom:465.600000pt;}
.y19f{bottom:466.240000pt;}
.y167{bottom:468.480000pt;}
.y46{bottom:473.280000pt;}
.yc6{bottom:475.200000pt;}
.y18a{bottom:478.080000pt;}
.y1b8{bottom:479.360000pt;}
.yf{bottom:479.680000pt;}
.y19e{bottom:483.840000pt;}
.y14e{bottom:486.720000pt;}
.y107{bottom:490.880000pt;}
.y137{bottom:492.000000pt;}
.y119{bottom:494.080000pt;}
.y87{bottom:494.400000pt;}
.y1b7{bottom:496.960000pt;}
.y166{bottom:497.280000pt;}
.y19d{bottom:501.440000pt;}
.y45{bottom:502.080000pt;}
.y189{bottom:506.880000pt;}
.y2d{bottom:508.480000pt;}
.y63{bottom:510.666667pt;}
.y14d{bottom:510.720000pt;}
.yc5{bottom:511.360000pt;}
.ye{bottom:512.640000pt;}
.y135{bottom:513.333333pt;}
.y1b6{bottom:514.560000pt;}
.y106{bottom:519.680000pt;}
.y118{bottom:522.880000pt;}
.y183{bottom:525.333333pt;}
.y165{bottom:526.080000pt;}
.y86{bottom:530.560000pt;}
.y61{bottom:530.666667pt;}
.y44{bottom:530.880000pt;}
.yd{bottom:531.200000pt;}
.y1b5{bottom:532.160000pt;}
.y2c{bottom:537.280000pt;}
.y19c{bottom:537.920000pt;}
.y59{bottom:538.880000pt;}
.y14c{bottom:545.280000pt;}
.y1c9{bottom:549.760000pt;}
.y117{bottom:551.680000pt;}
.y134{bottom:552.000000pt;}
.yc{bottom:554.880000pt;}
.y19b{bottom:555.520000pt;}
.y105{bottom:555.840000pt;}
.y43{bottom:559.680000pt;}
.y60{bottom:563.520000pt;}
.y2b{bottom:566.080000pt;}
.y1c8{bottom:567.360000pt;}
.y58{bottom:567.680000pt;}
.y1b4{bottom:568.320000pt;}
.y19a{bottom:573.120000pt;}
.y133{bottom:573.333333pt;}
.y85{bottom:574.080000pt;}
.y116{bottom:580.480000pt;}
.yb{bottom:580.800000pt;}
.yc4{bottom:583.680000pt;}
.y1b3{bottom:585.920000pt;}
.y5f{bottom:587.520000pt;}
.y42{bottom:588.480000pt;}
.y14b{bottom:590.080000pt;}
.y199{bottom:590.720000pt;}
.y104{bottom:592.000000pt;}
.y2a{bottom:594.880000pt;}
.y12f{bottom:596.000000pt;}
.y57{bottom:596.480000pt;}
.y84{bottom:602.880000pt;}
.ya{bottom:603.200000pt;}
.y1b2{bottom:603.520000pt;}
.ye0{bottom:604.000000pt;}
.y198{bottom:608.320000pt;}
.y115{bottom:609.280000pt;}
.yc3{bottom:612.480000pt;}
.y182{bottom:613.333333pt;}
.y41{bottom:617.280000pt;}
.y14a{bottom:618.880000pt;}
.y1b1{bottom:621.120000pt;}
.y5e{bottom:622.080000pt;}
.y29{bottom:624.320000pt;}
.y56{bottom:625.280000pt;}
.y9{bottom:626.880000pt;}
.y83{bottom:631.680000pt;}
.y103{bottom:638.080000pt;}
.y1c7{bottom:638.720000pt;}
.y164{bottom:644.000000pt;}
.y197{bottom:644.480000pt;}
.ybd{bottom:645.333333pt;}
.y40{bottom:646.080000pt;}
.y149{bottom:647.680000pt;}
.y12d{bottom:649.333333pt;}
.y5d{bottom:650.880000pt;}
.y55{bottom:654.080000pt;}
.y8{bottom:655.680000pt;}
.y1c6{bottom:656.320000pt;}
.y1b0{bottom:657.280000pt;}
.y82{bottom:660.480000pt;}
.y28{bottom:661.120000pt;}
.y196{bottom:662.080000pt;}
.y102{bottom:666.880000pt;}
.y163{bottom:668.000000pt;}
.y12c{bottom:672.000000pt;}
.y3f{bottom:674.880000pt;}
.y148{bottom:676.480000pt;}
.y195{bottom:679.680000pt;}
.y7{bottom:682.880000pt;}
.y5c{bottom:687.040000pt;}
.yd6{bottom:692.000000pt;}
.y1af{bottom:692.480000pt;}
.y27{bottom:693.760000pt;}
.y12a{bottom:694.666667pt;}
.y81{bottom:694.720000pt;}
.y101{bottom:695.680000pt;}
.yb7{bottom:696.000000pt;}
.y194{bottom:697.280000pt;}
.y179{bottom:701.333333pt;}
.y3e{bottom:703.680000pt;}
.y147{bottom:705.280000pt;}
.y7c{bottom:708.000000pt;}
.y6{bottom:710.080000pt;}
.y26{bottom:711.360000pt;}
.y54{bottom:711.680000pt;}
.y162{bottom:716.000000pt;}
.y129{bottom:717.333333pt;}
.y5b{bottom:723.200000pt;}
.y100{bottom:724.480000pt;}
.y1ae{bottom:727.680000pt;}
.y25{bottom:728.960000pt;}
.y193{bottom:733.440000pt;}
.y146{bottom:734.080000pt;}
.y5{bottom:737.280000pt;}
.y161{bottom:740.000000pt;}
.y3d{bottom:740.480000pt;}
.y24{bottom:746.560000pt;}
.yb2{bottom:746.666667pt;}
.y192{bottom:751.040000pt;}
.y128{bottom:752.320000pt;}
.yff{bottom:753.280000pt;}
.y145{bottom:762.880000pt;}
.y160{bottom:764.000000pt;}
.y23{bottom:764.160000pt;}
.y4{bottom:764.480000pt;}
.y127{bottom:768.320000pt;}
.y191{bottom:768.640000pt;}
.y3c{bottom:769.280000pt;}
.y7a{bottom:772.000000pt;}
.y22{bottom:781.760000pt;}
.y15f{bottom:788.000000pt;}
.y78{bottom:790.666667pt;}
.y3{bottom:791.680000pt;}
.y190{bottom:796.800000pt;}
.y3b{bottom:798.080000pt;}
.y21{bottom:799.360000pt;}
.y126{bottom:800.320000pt;}
.h12{height:17.333333pt;}
.h1a{height:18.816000pt;}
.h16{height:20.000000pt;}
.hf{height:21.333333pt;}
.h15{height:22.666667pt;}
.h18{height:25.333333pt;}
.h13{height:33.333333pt;}
.h5{height:34.631680pt;}
.h2{height:35.831250pt;}
.h20{height:37.333333pt;}
.h7{height:39.243750pt;}
.h6{height:39.787520pt;}
.h21{height:41.333333pt;}
.h11{height:43.975680pt;}
.he{height:44.029440pt;}
.ha{height:45.212160pt;}
.h8{height:48.163840pt;}
.h9{height:48.222720pt;}
.hd{height:49.047040pt;}
.h14{height:49.333333pt;}
.hc{height:52.352000pt;}
.h4{height:53.312000pt;}
.h1f{height:53.333333pt;}
.hb{height:58.129920pt;}
.h17{height:65.333333pt;}
.h1b{height:73.333333pt;}
.h22{height:76.000000pt;}
.h3{height:76.430080pt;}
.h10{height:81.333333pt;}
.h1d{height:89.333333pt;}
.h23{height:112.000000pt;}
.h1c{height:121.333333pt;}
.h19{height:177.333333pt;}
.h1e{height:260.000000pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w11{width:50.666667pt;}
.w12{width:56.000000pt;}
.w2{width:58.666667pt;}
.wf{width:61.333333pt;}
.w13{width:65.333333pt;}
.we{width:74.666667pt;}
.w10{width:78.666667pt;}
.w8{width:102.666667pt;}
.w5{width:106.666667pt;}
.wc{width:114.666667pt;}
.w9{width:118.666667pt;}
.w6{width:132.000000pt;}
.w14{width:145.333333pt;}
.w7{width:156.000000pt;}
.wb{width:162.666667pt;}
.wd{width:169.333333pt;}
.w15{width:188.000000pt;}
.wa{width:212.000000pt;}
.w16{width:349.333333pt;}
.w3{width:436.000000pt;}
.w4{width:493.333333pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x3a{left:0.906667pt;}
.x3b{left:2.646933pt;}
.x4b{left:7.893237pt;}
.x14{left:8.853205pt;}
.x48{left:9.774741pt;}
.x20{left:10.793941pt;}
.x18{left:12.267253pt;}
.x12{left:13.393557pt;}
.x23{left:14.467776pt;}
.x3f{left:15.973973pt;}
.x21{left:17.273749pt;}
.x25{left:18.621333pt;}
.x28{left:20.114347pt;}
.x2c{left:21.033845pt;}
.x17{left:22.986645pt;}
.x3e{left:23.973973pt;}
.x22{left:25.066741pt;}
.x16{left:26.186517pt;}
.x2a{left:27.253547pt;}
.x29{left:28.280107pt;}
.x15{left:29.186517pt;}
.x31{left:30.454112pt;}
.x1a{left:31.740544pt;}
.x26{left:33.827413pt;}
.x2b{left:35.067040pt;}
.x4d{left:36.407541pt;}
.x2d{left:37.380544pt;}
.x32{left:39.247072pt;}
.x24{left:42.019872pt;}
.x4e{left:43.353845pt;}
.x2e{left:45.133973pt;}
.x47{left:47.013365pt;}
.x1d{left:48.287253pt;}
.x49{left:50.100245pt;}
.x27{left:51.140373pt;}
.x46{left:52.546549pt;}
.x33{left:56.280320pt;}
.x38{left:57.299797pt;}
.x36{left:59.680992pt;}
.x42{left:62.260437pt;}
.x1b{left:65.439776pt;}
.x45{left:67.060587pt;}
.x4c{left:72.499669pt;}
.x7{left:75.519872pt;}
.x1e{left:77.500053pt;}
.x44{left:79.673813pt;}
.x5{left:86.236320pt;}
.x40{left:99.519872pt;}
.x11{left:103.853184pt;}
.x34{left:113.319968pt;}
.x4{left:116.337248pt;}
.x3{left:132.261056pt;}
.x4a{left:151.446933pt;}
.x6{left:157.375680pt;}
.x19{left:180.000000pt;}
.x13{left:184.980800pt;}
.x35{left:188.000000pt;}
.x2f{left:193.333333pt;}
.x41{left:218.666667pt;}
.x39{left:261.333333pt;}
.x10{left:283.756512pt;}
.xd{left:289.678368pt;}
.x2{left:295.178048pt;}
.xf{left:301.461600pt;}
.x9{left:304.101248pt;}
.x1c{left:310.666667pt;}
.x1{left:321.219840pt;}
.x37{left:398.666667pt;}
.x30{left:404.000000pt;}
.x43{left:405.333333pt;}
.xe{left:409.995840pt;}
.x8{left:411.851520pt;}
.xa{left:414.224000pt;}
.xc{left:446.411520pt;}
.x3c{left:448.000000pt;}
.x1f{left:465.333333pt;}
.xb{left:484.057920pt;}
.x3d{left:502.666667pt;}
}

