
    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_2f0d392278bcf90b2afd07b5.woff')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_fa2b6652e0ab6b521736ff9b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.844727;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_d39e5d2d1017ac52d96f3b58.woff')format("woff");}.ff3{font-family:ff3;line-height:1.002930;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_5731aa4de07216ad5764b679.woff')format("woff");}.ff4{font-family:ff4;line-height:0.856934;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_2a1c8745f31544745232a169.woff')format("woff");}.ff5{font-family:ff5;line-height:0.874023;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_cafe175bc6fa7cb75c8db6df.woff')format("woff");}.ff6{font-family:ff6;line-height:0.857910;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_9f4fe5a17433a89a0d0d3670.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_04562d7fc99e55cf250cf9f9.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910645;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_0b0ebaed2a1e424c26a3cf29.woff')format("woff");}.ff9{font-family:ff9;line-height:0.908203;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_93de0ced5e904083d6046d53.woff')format("woff");}.ffa{font-family:ffa;line-height:0.882324;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_3b21bb2018dfc50ceaab2568.woff')format("woff");}.ffb{font-family:ffb;line-height:0.871094;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_a9a806f078fc226c4d9eb441.woff')format("woff");}.ffc{font-family:ffc;line-height:0.856934;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_83b88175de026d073e7b124d.woff')format("woff");}.ffd{font-family:ffd;line-height:1.002930;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_75f276342c40b81fd706019c.woff')format("woff");}.ffe{font-family:ffe;line-height:0.844727;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_15625891064efcfedd2785c5.woff')format("woff");}.fff{font-family:fff;line-height:0.856934;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_fa089e661c9dc458035cd092.woff')format("woff");}.ff10{font-family:ff10;line-height:1.002930;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_75f276342c40b81fd706019c.woff')format("woff");}.ff11{font-family:ff11;line-height:0.844727;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_e463f2be4199fd5eddbc5f60.woff')format("woff");}.ff12{font-family:ff12;line-height:0.675781;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);}
.v3{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:4.921800px;}
.v1{vertical-align:19.980000px;}
.ls11{letter-spacing:-4.380000px;}
.ls12{letter-spacing:-1.140000px;}
.ls9{letter-spacing:-0.510000px;}
.ls16{letter-spacing:-0.432000px;}
.lse{letter-spacing:-0.120000px;}
.lsf{letter-spacing:-0.069960px;}
.ls8{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.003600px;}
.lsd{letter-spacing:0.009000px;}
.lsb{letter-spacing:0.026400px;}
.lsc{letter-spacing:0.027000px;}
.ls10{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.432000px;}
.ls0{letter-spacing:0.822000px;}
.ls17{letter-spacing:2.187600px;}
.lsa{letter-spacing:2.340000px;}
.ls6{letter-spacing:3.773964px;}
.ls7{letter-spacing:3.780000px;}
.ls5{letter-spacing:3.792000px;}
.ls4{letter-spacing:3.894000px;}
.ls3{letter-spacing:3.996600px;}
.ls1{letter-spacing:4.482000px;}
.ls2{letter-spacing:4.608000px;}
.ls15{letter-spacing:14.746200px;}
.ls18{letter-spacing:19.782000px;}
.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;}
}
.ws2{word-spacing:-24.888000px;}
.ws1f{word-spacing:-15.900000px;}
.ws20{word-spacing:-13.560000px;}
.ws2a{word-spacing:-13.440000px;}
.ws3{word-spacing:-12.750000px;}
.ws0{word-spacing:-12.204000px;}
.ws30{word-spacing:-12.000000px;}
.ws10{word-spacing:-11.562000px;}
.ws1{word-spacing:-11.526000px;}
.ws4{word-spacing:-11.016000px;}
.ws22{word-spacing:-10.848000px;}
.ws32{word-spacing:-10.416000px;}
.ws21{word-spacing:-7.905480px;}
.ws2b{word-spacing:-7.835520px;}
.ws16{word-spacing:-2.814000px;}
.ws33{word-spacing:-2.340000px;}
.ws23{word-spacing:-1.140000px;}
.ws29{word-spacing:-1.104000px;}
.ws13{word-spacing:-0.768000px;}
.ws24{word-spacing:-0.672000px;}
.ws2d{word-spacing:-0.180000px;}
.ws28{word-spacing:-0.060000px;}
.ws1e{word-spacing:-0.042000px;}
.ws5{word-spacing:0.000000px;}
.ws2c{word-spacing:0.120000px;}
.ws1d{word-spacing:0.492000px;}
.ws17{word-spacing:0.504000px;}
.ws14{word-spacing:0.600000px;}
.ws15{word-spacing:0.612000px;}
.ws1a{word-spacing:0.804000px;}
.ws19{word-spacing:0.810000px;}
.ws1b{word-spacing:0.828000px;}
.ws18{word-spacing:0.834000px;}
.ws11{word-spacing:0.918000px;}
.ws2f{word-spacing:1.140000px;}
.ws26{word-spacing:1.200000px;}
.ws1c{word-spacing:1.524000px;}
.ws12{word-spacing:1.632000px;}
.ws25{word-spacing:2.112000px;}
.ws27{word-spacing:2.520000px;}
.ws31{word-spacing:2.592000px;}
.ws2e{word-spacing:4.380000px;}
.wsf{word-spacing:21.126000px;}
.ws9{word-spacing:21.150000px;}
.wsb{word-spacing:21.156000px;}
.wsd{word-spacing:21.162000px;}
.ws6{word-spacing:21.168000px;}
.wsa{word-spacing:21.174000px;}
.ws7{word-spacing:21.180000px;}
.wsc{word-spacing:21.186000px;}
.ws8{word-spacing:21.198000px;}
.wse{word-spacing:21.258000px;}
._4{margin-left:-21.130200px;}
._8{margin-left:-10.851600px;}
._2{margin-left:-6.415200px;}
._a{margin-left:-5.022021px;}
._7{margin-left:-3.799800px;}
._3{margin-left:-2.514600px;}
._0{margin-left:-1.409400px;}
._1{width:1.971000px;}
._c{width:3.624009px;}
._b{width:5.085006px;}
._10{width:6.253794px;}
._f{width:7.470000px;}
._11{width:8.514000px;}
._12{width:9.653400px;}
._9{width:11.562000px;}
._15{width:13.641600px;}
._13{width:14.976000px;}
._14{width:16.763400px;}
._17{width:17.803800px;}
._16{width:18.862200px;}
._6{width:20.316000px;}
._5{width:21.392400px;}
._e{width:48.000000px;}
._d{width:811.180200px;}
.fc5{color:rgb(153,0,0);}
.fc4{color:rgb(84,83,83);}
.fc3{color:rgb(82,82,84);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:34.980000px;}
.fs5{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs3{font-size:51.000000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y2d{bottom:32.318850px;}
.y2c{bottom:46.568850px;}
.y2e{bottom:99.248100px;}
.y5f{bottom:99.460650px;}
.y2f{bottom:99.496050px;}
.y2b{bottom:126.544350px;}
.yee{bottom:142.441050px;}
.yd7{bottom:148.818750px;}
.y13a{bottom:148.818900px;}
.yed{bottom:156.841050px;}
.y2a{bottom:157.802850px;}
.y16f{bottom:158.216400px;}
.y103{bottom:159.448800px;}
.yd6{bottom:163.218750px;}
.y139{bottom:163.218900px;}
.y19d{bottom:168.970350px;}
.y5e{bottom:170.078850px;}
.yec{bottom:171.241050px;}
.y29{bottom:172.019850px;}
.y16e{bottom:172.616400px;}
.y102{bottom:173.848800px;}
.y138{bottom:177.618900px;}
.y19c{bottom:183.370350px;}
.y119{bottom:183.490050px;}
.y82{bottom:184.478850px;}
.yeb{bottom:185.641050px;}
.y28{bottom:186.236850px;}
.yb3{bottom:186.749850px;}
.y101{bottom:188.248800px;}
.y137{bottom:192.018900px;}
.y16d{bottom:196.017750px;}
.y81{bottom:198.878850px;}
.yea{bottom:200.041200px;}
.y27{bottom:200.453850px;}
.y118{bottom:201.490050px;}
.yb2{bottom:204.749850px;}
.y136{bottom:206.418900px;}
.y19b{bottom:206.771700px;}
.yd5{bottom:212.261700px;}
.y80{bottom:213.278850px;}
.ye9{bottom:214.441200px;}
.y26{bottom:214.670850px;}
.y16c{bottom:219.419250px;}
.y117{bottom:219.490050px;}
.y135{bottom:220.818900px;}
.y104{bottom:222.749850px;}
.y7f{bottom:227.679000px;}
.ye8{bottom:228.841200px;}
.y25{bottom:228.887850px;}
.y19a{bottom:230.173200px;}
.yd4{bottom:230.261700px;}
.yb1{bottom:231.253950px;}
.y116{bottom:237.490050px;}
.y100{bottom:239.757900px;}
.y7e{bottom:242.079000px;}
.y16b{bottom:242.820600px;}
.y24{bottom:243.104850px;}
.yd3{bottom:248.261700px;}
.yb0{bottom:249.253950px;}
.y199{bottom:253.574550px;}
.y115{bottom:255.490050px;}
.y23{bottom:257.321850px;}
.yff{bottom:257.757900px;}
.y5d{bottom:261.749850px;}
.y16a{bottom:266.222100px;}
.yd2{bottom:266.261700px;}
.yaf{bottom:267.253950px;}
.y142{bottom:267.830250px;}
.y22{bottom:271.538850px;}
.y114{bottom:273.490050px;}
.ye7{bottom:275.757900px;}
.y134{bottom:276.749850px;}
.y198{bottom:276.976050px;}
.y5c{bottom:279.749850px;}
.y169{bottom:280.622100px;}
.yd1{bottom:284.261700px;}
.yae{bottom:285.253950px;}
.y21{bottom:285.755850px;}
.y141{bottom:286.130250px;}
.y113{bottom:291.490050px;}
.ye6{bottom:293.757900px;}
.y133{bottom:294.749850px;}
.y7d{bottom:295.765650px;}
.y5b{bottom:297.749850px;}
.y20{bottom:299.972850px;}
.y197{bottom:300.377400px;}
.yd0{bottom:302.261700px;}
.yad{bottom:303.253950px;}
.y168{bottom:304.023450px;}
.y140{bottom:304.430250px;}
.y112{bottom:309.490050px;}
.yfe{bottom:311.757900px;}
.y132{bottom:312.749850px;}
.y7c{bottom:313.765650px;}
.y1f{bottom:314.189850px;}
.y196{bottom:314.777400px;}
.y5a{bottom:315.749850px;}
.y167{bottom:318.423450px;}
.ycf{bottom:320.261700px;}
.yac{bottom:321.253950px;}
.y111{bottom:327.490050px;}
.y1e{bottom:328.406850px;}
.ye5{bottom:329.757900px;}
.y131{bottom:330.749850px;}
.y13f{bottom:331.234200px;}
.y7b{bottom:331.765650px;}
.y59{bottom:333.749850px;}
.y195{bottom:338.178900px;}
.yce{bottom:338.261700px;}
.yab{bottom:339.253950px;}
.y166{bottom:341.824800px;}
.y1d{bottom:342.623850px;}
.y110{bottom:345.490050px;}
.ye4{bottom:347.757750px;}
.y130{bottom:348.750000px;}
.y7a{bottom:349.765650px;}
.y58{bottom:351.750000px;}
.y194{bottom:352.578900px;}
.y165{bottom:356.224950px;}
.ycd{bottom:356.261700px;}
.yaa{bottom:357.253950px;}
.y10f{bottom:363.490050px;}
.ye3{bottom:365.757750px;}
.y57{bottom:369.750000px;}
.y13e{bottom:371.244000px;}
.y1c{bottom:373.882350px;}
.ya9{bottom:375.253950px;}
.y193{bottom:375.980250px;}
.y164{bottom:379.626300px;}
.ye2{bottom:383.757750px;}
.y12f{bottom:384.750000px;}
.y79{bottom:385.765650px;}
.y56{bottom:387.750000px;}
.y13d{bottom:389.244000px;}
.y10e{bottom:389.994000px;}
.ycc{bottom:392.261700px;}
.ya8{bottom:393.253950px;}
.y192{bottom:399.381750px;}
.ye1{bottom:401.757750px;}
.y12e{bottom:402.750000px;}
.y163{bottom:403.027800px;}
.y78{bottom:403.765650px;}
.y1b{bottom:405.140850px;}
.y10d{bottom:407.994000px;}
.ycb{bottom:410.261700px;}
.ya7{bottom:411.253950px;}
.y191{bottom:413.781750px;}
.y55{bottom:414.253950px;}
.y13c{bottom:415.747950px;}
.y1a{bottom:419.357850px;}
.ye0{bottom:419.757750px;}
.y12d{bottom:420.750000px;}
.y77{bottom:421.765650px;}
.y10c{bottom:425.994000px;}
.y162{bottom:426.429150px;}
.yca{bottom:428.261700px;}
.ya6{bottom:429.253950px;}
.y54{bottom:432.253950px;}
.y19{bottom:433.574850px;}
.y190{bottom:437.183100px;}
.ydf{bottom:437.757750px;}
.y12c{bottom:438.750000px;}
.y10b{bottom:443.994000px;}
.yc9{bottom:446.261700px;}
.ya5{bottom:447.253950px;}
.y18{bottom:447.791850px;}
.y161{bottom:449.830650px;}
.y53{bottom:450.253950px;}
.y18f{bottom:451.583100px;}
.yfd{bottom:455.757750px;}
.y12b{bottom:456.750000px;}
.y76{bottom:457.765650px;}
.y10a{bottom:461.994000px;}
.y17{bottom:462.008850px;}
.yc8{bottom:464.261700px;}
.ya4{bottom:465.253950px;}
.y52{bottom:468.253950px;}
.y160{bottom:473.232000px;}
.yde{bottom:473.757750px;}
.y18e{bottom:474.984450px;}
.y75{bottom:475.765650px;}
.y16{bottom:476.225850px;}
.y109{bottom:479.994000px;}
.yc7{bottom:482.261700px;}
.ya3{bottom:483.253950px;}
.y51{bottom:486.253950px;}
.y15{bottom:490.443000px;}
.ydd{bottom:491.757750px;}
.y74{bottom:493.765650px;}
.y15f{bottom:496.633350px;}
.y108{bottom:497.994000px;}
.y18d{bottom:498.385950px;}
.yc6{bottom:500.261700px;}
.ya2{bottom:501.253950px;}
.y50{bottom:504.253950px;}
.y14{bottom:504.660000px;}
.ydc{bottom:509.757750px;}
.y15e{bottom:511.033350px;}
.y73{bottom:511.765650px;}
.y107{bottom:515.994000px;}
.yc5{bottom:518.261700px;}
.y13{bottom:518.877000px;}
.ya1{bottom:519.253950px;}
.y18c{bottom:521.787300px;}
.y4f{bottom:522.253950px;}
.ydb{bottom:527.757750px;}
.y72{bottom:529.765650px;}
.y12{bottom:533.094000px;}
.y106{bottom:533.994000px;}
.y15d{bottom:534.434850px;}
.y18b{bottom:536.187300px;}
.yc4{bottom:536.261700px;}
.ya0{bottom:537.253950px;}
.yfc{bottom:545.757750px;}
.y11{bottom:547.311000px;}
.y71{bottom:547.765650px;}
.y4e{bottom:548.757750px;}
.y15c{bottom:548.834850px;}
.y9f{bottom:555.253950px;}
.y18a{bottom:559.588800px;}
.y10{bottom:561.528000px;}
.yda{bottom:563.757750px;}
.y70{bottom:565.765650px;}
.y4d{bottom:566.757750px;}
.y105{bottom:569.001900px;}
.y15b{bottom:572.236200px;}
.yc3{bottom:572.261700px;}
.y9e{bottom:573.253950px;}
.yf{bottom:575.745000px;}
.yd9{bottom:581.757750px;}
.y189{bottom:582.990150px;}
.y6f{bottom:583.765650px;}
.y4c{bottom:584.757750px;}
.ye{bottom:589.962000px;}
.yc2{bottom:590.261700px;}
.y9d{bottom:591.253950px;}
.y15a{bottom:595.637700px;}
.y13b{bottom:599.757750px;}
.y6e{bottom:601.765650px;}
.y4b{bottom:602.757750px;}
.y188{bottom:606.391500px;}
.yc1{bottom:608.261700px;}
.y12a{bottom:609.253950px;}
.y9c{bottom:617.757750px;}
.y159{bottom:619.039050px;}
.y6d{bottom:619.765650px;}
.y4a{bottom:620.757750px;}
.yd{bottom:621.220500px;}
.yc0{bottom:626.261700px;}
.y129{bottom:627.253950px;}
.y187{bottom:629.793000px;}
.y158{bottom:633.439050px;}
.y9b{bottom:635.757750px;}
.y49{bottom:638.757750px;}
.ybf{bottom:644.261700px;}
.y128{bottom:645.253950px;}
.y186{bottom:653.194500px;}
.y9a{bottom:653.757750px;}
.yc{bottom:654.220500px;}
.y6c{bottom:655.765650px;}
.y48{bottom:656.757750px;}
.y157{bottom:656.840400px;}
.ybe{bottom:662.261700px;}
.y127{bottom:663.253950px;}
.yb{bottom:669.520500px;}
.y99{bottom:671.757750px;}
.y6b{bottom:673.765650px;}
.y47{bottom:674.757750px;}
.y185{bottom:676.595850px;}
.y156{bottom:680.241900px;}
.ybd{bottom:680.261700px;}
.y126{bottom:681.253950px;}
.y98{bottom:689.757750px;}
.y6a{bottom:691.765650px;}
.ybc{bottom:698.261700px;}
.y125{bottom:699.253950px;}
.y184{bottom:699.997200px;}
.y46{bottom:701.261700px;}
.y155{bottom:703.643400px;}
.y97{bottom:707.757750px;}
.y69{bottom:709.765650px;}
.y183{bottom:714.397200px;}
.ya{bottom:715.420350px;}
.ybb{bottom:716.261700px;}
.y124{bottom:717.253950px;}
.y45{bottom:719.261700px;}
.yfb{bottom:724.765650px;}
.y96{bottom:725.757750px;}
.y154{bottom:727.044750px;}
.y68{bottom:727.765650px;}
.y9{bottom:730.720350px;}
.yba{bottom:734.261700px;}
.y123{bottom:735.253950px;}
.y44{bottom:737.261700px;}
.y182{bottom:737.798700px;}
.y153{bottom:741.444750px;}
.yfa{bottom:742.765650px;}
.y95{bottom:743.757900px;}
.y8{bottom:746.020350px;}
.y181{bottom:752.198700px;}
.yd8{bottom:752.261700px;}
.y43{bottom:755.261700px;}
.yf9{bottom:760.765650px;}
.y7{bottom:761.320350px;}
.y94{bottom:761.757900px;}
.y67{bottom:763.765650px;}
.y152{bottom:764.846250px;}
.yb9{bottom:770.261700px;}
.y42{bottom:773.261700px;}
.y180{bottom:775.600050px;}
.yf8{bottom:778.765650px;}
.y151{bottom:779.246100px;}
.y93{bottom:779.757900px;}
.y66{bottom:781.765650px;}
.yb8{bottom:788.261700px;}
.y17f{bottom:790.000050px;}
.y41{bottom:791.261700px;}
.yf7{bottom:796.765650px;}
.y92{bottom:797.757900px;}
.y65{bottom:799.765650px;}
.y150{bottom:802.647600px;}
.yb7{bottom:806.261700px;}
.y40{bottom:809.261700px;}
.y17e{bottom:813.401550px;}
.yf6{bottom:814.765650px;}
.y122{bottom:815.757900px;}
.y14f{bottom:817.047600px;}
.y64{bottom:817.765650px;}
.y91{bottom:824.261700px;}
.y3f{bottom:827.261700px;}
.y17d{bottom:827.801550px;}
.yf5{bottom:832.765650px;}
.y121{bottom:833.757900px;}
.y14e{bottom:840.448950px;}
.y90{bottom:842.261700px;}
.y3e{bottom:845.261700px;}
.yf4{bottom:850.765650px;}
.y17c{bottom:851.202900px;}
.y120{bottom:851.757900px;}
.y63{bottom:853.765650px;}
.y8f{bottom:860.261700px;}
.y3d{bottom:863.261700px;}
.y14d{bottom:863.850450px;}
.y17b{bottom:865.602900px;}
.yf3{bottom:868.765650px;}
.y11f{bottom:869.757900px;}
.y62{bottom:871.765650px;}
.y14c{bottom:878.250300px;}
.y8e{bottom:878.261700px;}
.y3c{bottom:881.261700px;}
.yf2{bottom:886.765650px;}
.y17a{bottom:889.004400px;}
.y61{bottom:889.765650px;}
.y6{bottom:895.189950px;}
.y8d{bottom:896.261700px;}
.y3b{bottom:899.261700px;}
.y14b{bottom:901.651800px;}
.yf1{bottom:904.765650px;}
.y60{bottom:907.765650px;}
.y179{bottom:912.405750px;}
.y8c{bottom:914.261700px;}
.y14a{bottom:916.051800px;}
.yf0{bottom:922.765650px;}
.y3a{bottom:925.765650px;}
.y8b{bottom:932.261700px;}
.y5{bottom:933.439950px;}
.y178{bottom:935.807250px;}
.y149{bottom:939.453300px;}
.yef{bottom:940.765650px;}
.y39{bottom:943.765650px;}
.y8a{bottom:950.261700px;}
.y148{bottom:953.853300px;}
.yb6{bottom:958.765650px;}
.y177{bottom:959.208600px;}
.y38{bottom:961.765650px;}
.y89{bottom:968.261700px;}
.yb5{bottom:976.765650px;}
.y147{bottom:977.254650px;}
.y37{bottom:979.765650px;}
.y176{bottom:982.610100px;}
.y88{bottom:986.261700px;}
.yb4{bottom:994.765650px;}
.y36{bottom:997.765650px;}
.y146{bottom:1000.656150px;}
.y11e{bottom:1004.261700px;}
.y175{bottom:1006.011450px;}
.y87{bottom:1012.765650px;}
.y35{bottom:1015.765650px;}
.y11d{bottom:1022.261700px;}
.y145{bottom:1024.057500px;}
.y174{bottom:1029.412800px;}
.y86{bottom:1030.765650px;}
.y34{bottom:1033.765650px;}
.y4{bottom:1034.029350px;}
.y11c{bottom:1040.261700px;}
.y144{bottom:1047.459000px;}
.y85{bottom:1048.765650px;}
.y33{bottom:1051.765650px;}
.y173{bottom:1052.814300px;}
.y3{bottom:1054.481850px;}
.y30{bottom:1056.213300px;}
.y11b{bottom:1058.261700px;}
.y84{bottom:1066.765650px;}
.y172{bottom:1067.214300px;}
.y32{bottom:1069.765650px;}
.y143{bottom:1070.860350px;}
.y2{bottom:1074.934350px;}
.y11a{bottom:1076.261700px;}
.y83{bottom:1084.765650px;}
.y171{bottom:1090.615650px;}
.y1{bottom:1095.386850px;}
.y31{bottom:1102.765650px;}
.y170{bottom:1105.015650px;}
.hb{height:27.993164px;}
.hf{height:33.328125px;}
.hd{height:33.351562px;}
.ha{height:34.637695px;}
.h8{height:35.436035px;}
.h3{height:35.991211px;}
.h9{height:39.585938px;}
.h7{height:42.060059px;}
.h2{height:44.534180px;}
.hc{height:49.482422px;}
.he{height:54.404222px;}
.h10{height:54.404822px;}
.h6{height:54.430664px;}
.h5{height:61.171875px;}
.h4{height:74.223633px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:49.844400px;}
.x5{left:106.299150px;}
.xc{left:123.307050px;}
.xe{left:148.818900px;}
.xf{left:159.399150px;}
.x10{left:440.374650px;}
.xa{left:443.415600px;}
.x1{left:515.730900px;}
.x4{left:537.519900px;}
.x8{left:580.583550px;}
.x3{left:587.294400px;}
.x2{left:659.357400px;}
.x6{left:664.298250px;}
.x7{left:673.594800px;}
.x9{left:693.982050px;}
.xd{left:821.780400px;}
@media print{
.v3{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:4.374933pt;}
.v1{vertical-align:17.760000pt;}
.ls11{letter-spacing:-3.893333pt;}
.ls12{letter-spacing:-1.013333pt;}
.ls9{letter-spacing:-0.453333pt;}
.ls16{letter-spacing:-0.384000pt;}
.lse{letter-spacing:-0.106667pt;}
.lsf{letter-spacing:-0.062187pt;}
.ls8{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.003200pt;}
.lsd{letter-spacing:0.008000pt;}
.lsb{letter-spacing:0.023467pt;}
.lsc{letter-spacing:0.024000pt;}
.ls10{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.384000pt;}
.ls0{letter-spacing:0.730667pt;}
.ls17{letter-spacing:1.944533pt;}
.lsa{letter-spacing:2.080000pt;}
.ls6{letter-spacing:3.354635pt;}
.ls7{letter-spacing:3.360000pt;}
.ls5{letter-spacing:3.370667pt;}
.ls4{letter-spacing:3.461333pt;}
.ls3{letter-spacing:3.552533pt;}
.ls1{letter-spacing:3.984000pt;}
.ls2{letter-spacing:4.096000pt;}
.ls15{letter-spacing:13.107733pt;}
.ls18{letter-spacing:17.584000pt;}
.ws2{word-spacing:-22.122667pt;}
.ws1f{word-spacing:-14.133333pt;}
.ws20{word-spacing:-12.053333pt;}
.ws2a{word-spacing:-11.946667pt;}
.ws3{word-spacing:-11.333333pt;}
.ws0{word-spacing:-10.848000pt;}
.ws30{word-spacing:-10.666667pt;}
.ws10{word-spacing:-10.277333pt;}
.ws1{word-spacing:-10.245333pt;}
.ws4{word-spacing:-9.792000pt;}
.ws22{word-spacing:-9.642667pt;}
.ws32{word-spacing:-9.258667pt;}
.ws21{word-spacing:-7.027093pt;}
.ws2b{word-spacing:-6.964907pt;}
.ws16{word-spacing:-2.501333pt;}
.ws33{word-spacing:-2.080000pt;}
.ws23{word-spacing:-1.013333pt;}
.ws29{word-spacing:-0.981333pt;}
.ws13{word-spacing:-0.682667pt;}
.ws24{word-spacing:-0.597333pt;}
.ws2d{word-spacing:-0.160000pt;}
.ws28{word-spacing:-0.053333pt;}
.ws1e{word-spacing:-0.037333pt;}
.ws5{word-spacing:0.000000pt;}
.ws2c{word-spacing:0.106667pt;}
.ws1d{word-spacing:0.437333pt;}
.ws17{word-spacing:0.448000pt;}
.ws14{word-spacing:0.533333pt;}
.ws15{word-spacing:0.544000pt;}
.ws1a{word-spacing:0.714667pt;}
.ws19{word-spacing:0.720000pt;}
.ws1b{word-spacing:0.736000pt;}
.ws18{word-spacing:0.741333pt;}
.ws11{word-spacing:0.816000pt;}
.ws2f{word-spacing:1.013333pt;}
.ws26{word-spacing:1.066667pt;}
.ws1c{word-spacing:1.354667pt;}
.ws12{word-spacing:1.450667pt;}
.ws25{word-spacing:1.877333pt;}
.ws27{word-spacing:2.240000pt;}
.ws31{word-spacing:2.304000pt;}
.ws2e{word-spacing:3.893333pt;}
.wsf{word-spacing:18.778667pt;}
.ws9{word-spacing:18.800000pt;}
.wsb{word-spacing:18.805333pt;}
.wsd{word-spacing:18.810667pt;}
.ws6{word-spacing:18.816000pt;}
.wsa{word-spacing:18.821333pt;}
.ws7{word-spacing:18.826667pt;}
.wsc{word-spacing:18.832000pt;}
.ws8{word-spacing:18.842667pt;}
.wse{word-spacing:18.896000pt;}
._4{margin-left:-18.782400pt;}
._8{margin-left:-9.645867pt;}
._2{margin-left:-5.702400pt;}
._a{margin-left:-4.464019pt;}
._7{margin-left:-3.377600pt;}
._3{margin-left:-2.235200pt;}
._0{margin-left:-1.252800pt;}
._1{width:1.752000pt;}
._c{width:3.221341pt;}
._b{width:4.520005pt;}
._10{width:5.558928pt;}
._f{width:6.640000pt;}
._11{width:7.568000pt;}
._12{width:8.580800pt;}
._9{width:10.277333pt;}
._15{width:12.125867pt;}
._13{width:13.312000pt;}
._14{width:14.900800pt;}
._17{width:15.825600pt;}
._16{width:16.766400pt;}
._6{width:18.058667pt;}
._5{width:19.015467pt;}
._e{width:42.666667pt;}
._d{width:721.049067pt;}
.fs7{font-size:31.093333pt;}
.fs5{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs3{font-size:45.333333pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:28.727867pt;}
.y2c{bottom:41.394533pt;}
.y2e{bottom:88.220533pt;}
.y5f{bottom:88.409467pt;}
.y2f{bottom:88.440933pt;}
.y2b{bottom:112.483867pt;}
.yee{bottom:126.614267pt;}
.yd7{bottom:132.283333pt;}
.y13a{bottom:132.283467pt;}
.yed{bottom:139.414267pt;}
.y2a{bottom:140.269200pt;}
.y16f{bottom:140.636800pt;}
.y103{bottom:141.732267pt;}
.yd6{bottom:145.083333pt;}
.y139{bottom:145.083467pt;}
.y19d{bottom:150.195867pt;}
.y5e{bottom:151.181200pt;}
.yec{bottom:152.214267pt;}
.y29{bottom:152.906533pt;}
.y16e{bottom:153.436800pt;}
.y102{bottom:154.532267pt;}
.y138{bottom:157.883467pt;}
.y19c{bottom:162.995867pt;}
.y119{bottom:163.102267pt;}
.y82{bottom:163.981200pt;}
.yeb{bottom:165.014267pt;}
.y28{bottom:165.543867pt;}
.yb3{bottom:165.999867pt;}
.y101{bottom:167.332267pt;}
.y137{bottom:170.683467pt;}
.y16d{bottom:174.238000pt;}
.y81{bottom:176.781200pt;}
.yea{bottom:177.814400pt;}
.y27{bottom:178.181200pt;}
.y118{bottom:179.102267pt;}
.yb2{bottom:181.999867pt;}
.y136{bottom:183.483467pt;}
.y19b{bottom:183.797067pt;}
.yd5{bottom:188.677067pt;}
.y80{bottom:189.581200pt;}
.ye9{bottom:190.614400pt;}
.y26{bottom:190.818533pt;}
.y16c{bottom:195.039333pt;}
.y117{bottom:195.102267pt;}
.y135{bottom:196.283467pt;}
.y104{bottom:197.999867pt;}
.y7f{bottom:202.381333pt;}
.ye8{bottom:203.414400pt;}
.y25{bottom:203.455867pt;}
.y19a{bottom:204.598400pt;}
.yd4{bottom:204.677067pt;}
.yb1{bottom:205.559067pt;}
.y116{bottom:211.102267pt;}
.y100{bottom:213.118133pt;}
.y7e{bottom:215.181333pt;}
.y16b{bottom:215.840533pt;}
.y24{bottom:216.093200pt;}
.yd3{bottom:220.677067pt;}
.yb0{bottom:221.559067pt;}
.y199{bottom:225.399600pt;}
.y115{bottom:227.102267pt;}
.y23{bottom:228.730533pt;}
.yff{bottom:229.118133pt;}
.y5d{bottom:232.666533pt;}
.y16a{bottom:236.641867pt;}
.yd2{bottom:236.677067pt;}
.yaf{bottom:237.559067pt;}
.y142{bottom:238.071333pt;}
.y22{bottom:241.367867pt;}
.y114{bottom:243.102267pt;}
.ye7{bottom:245.118133pt;}
.y134{bottom:245.999867pt;}
.y198{bottom:246.200933pt;}
.y5c{bottom:248.666533pt;}
.y169{bottom:249.441867pt;}
.yd1{bottom:252.677067pt;}
.yae{bottom:253.559067pt;}
.y21{bottom:254.005200pt;}
.y141{bottom:254.338000pt;}
.y113{bottom:259.102267pt;}
.ye6{bottom:261.118133pt;}
.y133{bottom:261.999867pt;}
.y7d{bottom:262.902800pt;}
.y5b{bottom:264.666533pt;}
.y20{bottom:266.642533pt;}
.y197{bottom:267.002133pt;}
.yd0{bottom:268.677067pt;}
.yad{bottom:269.559067pt;}
.y168{bottom:270.243067pt;}
.y140{bottom:270.604667pt;}
.y112{bottom:275.102267pt;}
.yfe{bottom:277.118133pt;}
.y132{bottom:277.999867pt;}
.y7c{bottom:278.902800pt;}
.y1f{bottom:279.279867pt;}
.y196{bottom:279.802133pt;}
.y5a{bottom:280.666533pt;}
.y167{bottom:283.043067pt;}
.ycf{bottom:284.677067pt;}
.yac{bottom:285.559067pt;}
.y111{bottom:291.102267pt;}
.y1e{bottom:291.917200pt;}
.ye5{bottom:293.118133pt;}
.y131{bottom:293.999867pt;}
.y13f{bottom:294.430400pt;}
.y7b{bottom:294.902800pt;}
.y59{bottom:296.666533pt;}
.y195{bottom:300.603467pt;}
.yce{bottom:300.677067pt;}
.yab{bottom:301.559067pt;}
.y166{bottom:303.844267pt;}
.y1d{bottom:304.554533pt;}
.y110{bottom:307.102267pt;}
.ye4{bottom:309.118000pt;}
.y130{bottom:310.000000pt;}
.y7a{bottom:310.902800pt;}
.y58{bottom:312.666667pt;}
.y194{bottom:313.403467pt;}
.y165{bottom:316.644400pt;}
.ycd{bottom:316.677067pt;}
.yaa{bottom:317.559067pt;}
.y10f{bottom:323.102267pt;}
.ye3{bottom:325.118000pt;}
.y57{bottom:328.666667pt;}
.y13e{bottom:329.994667pt;}
.y1c{bottom:332.339867pt;}
.ya9{bottom:333.559067pt;}
.y193{bottom:334.204667pt;}
.y164{bottom:337.445600pt;}
.ye2{bottom:341.118000pt;}
.y12f{bottom:342.000000pt;}
.y79{bottom:342.902800pt;}
.y56{bottom:344.666667pt;}
.y13d{bottom:345.994667pt;}
.y10e{bottom:346.661333pt;}
.ycc{bottom:348.677067pt;}
.ya8{bottom:349.559067pt;}
.y192{bottom:355.006000pt;}
.ye1{bottom:357.118000pt;}
.y12e{bottom:358.000000pt;}
.y163{bottom:358.246933pt;}
.y78{bottom:358.902800pt;}
.y1b{bottom:360.125200pt;}
.y10d{bottom:362.661333pt;}
.ycb{bottom:364.677067pt;}
.ya7{bottom:365.559067pt;}
.y191{bottom:367.806000pt;}
.y55{bottom:368.225733pt;}
.y13c{bottom:369.553733pt;}
.y1a{bottom:372.762533pt;}
.ye0{bottom:373.118000pt;}
.y12d{bottom:374.000000pt;}
.y77{bottom:374.902800pt;}
.y10c{bottom:378.661333pt;}
.y162{bottom:379.048133pt;}
.yca{bottom:380.677067pt;}
.ya6{bottom:381.559067pt;}
.y54{bottom:384.225733pt;}
.y19{bottom:385.399867pt;}
.y190{bottom:388.607200pt;}
.ydf{bottom:389.118000pt;}
.y12c{bottom:390.000000pt;}
.y10b{bottom:394.661333pt;}
.yc9{bottom:396.677067pt;}
.ya5{bottom:397.559067pt;}
.y18{bottom:398.037200pt;}
.y161{bottom:399.849467pt;}
.y53{bottom:400.225733pt;}
.y18f{bottom:401.407200pt;}
.yfd{bottom:405.118000pt;}
.y12b{bottom:406.000000pt;}
.y76{bottom:406.902800pt;}
.y10a{bottom:410.661333pt;}
.y17{bottom:410.674533pt;}
.yc8{bottom:412.677067pt;}
.ya4{bottom:413.559067pt;}
.y52{bottom:416.225733pt;}
.y160{bottom:420.650667pt;}
.yde{bottom:421.118000pt;}
.y18e{bottom:422.208400pt;}
.y75{bottom:422.902800pt;}
.y16{bottom:423.311867pt;}
.y109{bottom:426.661333pt;}
.yc7{bottom:428.677067pt;}
.ya3{bottom:429.559067pt;}
.y51{bottom:432.225733pt;}
.y15{bottom:435.949333pt;}
.ydd{bottom:437.118000pt;}
.y74{bottom:438.902800pt;}
.y15f{bottom:441.451867pt;}
.y108{bottom:442.661333pt;}
.y18d{bottom:443.009733pt;}
.yc6{bottom:444.677067pt;}
.ya2{bottom:445.559067pt;}
.y50{bottom:448.225733pt;}
.y14{bottom:448.586667pt;}
.ydc{bottom:453.118000pt;}
.y15e{bottom:454.251867pt;}
.y73{bottom:454.902800pt;}
.y107{bottom:458.661333pt;}
.yc5{bottom:460.677067pt;}
.y13{bottom:461.224000pt;}
.ya1{bottom:461.559067pt;}
.y18c{bottom:463.810933pt;}
.y4f{bottom:464.225733pt;}
.ydb{bottom:469.118000pt;}
.y72{bottom:470.902800pt;}
.y12{bottom:473.861333pt;}
.y106{bottom:474.661333pt;}
.y15d{bottom:475.053200pt;}
.y18b{bottom:476.610933pt;}
.yc4{bottom:476.677067pt;}
.ya0{bottom:477.559067pt;}
.yfc{bottom:485.118000pt;}
.y11{bottom:486.498667pt;}
.y71{bottom:486.902800pt;}
.y4e{bottom:487.784667pt;}
.y15c{bottom:487.853200pt;}
.y9f{bottom:493.559067pt;}
.y18a{bottom:497.412267pt;}
.y10{bottom:499.136000pt;}
.yda{bottom:501.118000pt;}
.y70{bottom:502.902800pt;}
.y4d{bottom:503.784667pt;}
.y105{bottom:505.779467pt;}
.y15b{bottom:508.654400pt;}
.yc3{bottom:508.677067pt;}
.y9e{bottom:509.559067pt;}
.yf{bottom:511.773333pt;}
.yd9{bottom:517.118000pt;}
.y189{bottom:518.213467pt;}
.y6f{bottom:518.902800pt;}
.y4c{bottom:519.784667pt;}
.ye{bottom:524.410667pt;}
.yc2{bottom:524.677067pt;}
.y9d{bottom:525.559067pt;}
.y15a{bottom:529.455733pt;}
.y13b{bottom:533.118000pt;}
.y6e{bottom:534.902800pt;}
.y4b{bottom:535.784667pt;}
.y188{bottom:539.014667pt;}
.yc1{bottom:540.677067pt;}
.y12a{bottom:541.559067pt;}
.y9c{bottom:549.118000pt;}
.y159{bottom:550.256933pt;}
.y6d{bottom:550.902800pt;}
.y4a{bottom:551.784667pt;}
.yd{bottom:552.196000pt;}
.yc0{bottom:556.677067pt;}
.y129{bottom:557.559067pt;}
.y187{bottom:559.816000pt;}
.y158{bottom:563.056933pt;}
.y9b{bottom:565.118000pt;}
.y49{bottom:567.784667pt;}
.ybf{bottom:572.677067pt;}
.y128{bottom:573.559067pt;}
.y186{bottom:580.617333pt;}
.y9a{bottom:581.118000pt;}
.yc{bottom:581.529333pt;}
.y6c{bottom:582.902800pt;}
.y48{bottom:583.784667pt;}
.y157{bottom:583.858133pt;}
.ybe{bottom:588.677067pt;}
.y127{bottom:589.559067pt;}
.yb{bottom:595.129333pt;}
.y99{bottom:597.118000pt;}
.y6b{bottom:598.902800pt;}
.y47{bottom:599.784667pt;}
.y185{bottom:601.418533pt;}
.y156{bottom:604.659467pt;}
.ybd{bottom:604.677067pt;}
.y126{bottom:605.559067pt;}
.y98{bottom:613.118000pt;}
.y6a{bottom:614.902800pt;}
.ybc{bottom:620.677067pt;}
.y125{bottom:621.559067pt;}
.y184{bottom:622.219733pt;}
.y46{bottom:623.343733pt;}
.y155{bottom:625.460800pt;}
.y97{bottom:629.118000pt;}
.y69{bottom:630.902800pt;}
.y183{bottom:635.019733pt;}
.ya{bottom:635.929200pt;}
.ybb{bottom:636.677067pt;}
.y124{bottom:637.559067pt;}
.y45{bottom:639.343733pt;}
.yfb{bottom:644.236133pt;}
.y96{bottom:645.118000pt;}
.y154{bottom:646.262000pt;}
.y68{bottom:646.902800pt;}
.y9{bottom:649.529200pt;}
.yba{bottom:652.677067pt;}
.y123{bottom:653.559067pt;}
.y44{bottom:655.343733pt;}
.y182{bottom:655.821067pt;}
.y153{bottom:659.062000pt;}
.yfa{bottom:660.236133pt;}
.y95{bottom:661.118133pt;}
.y8{bottom:663.129200pt;}
.y181{bottom:668.621067pt;}
.yd8{bottom:668.677067pt;}
.y43{bottom:671.343733pt;}
.yf9{bottom:676.236133pt;}
.y7{bottom:676.729200pt;}
.y94{bottom:677.118133pt;}
.y67{bottom:678.902800pt;}
.y152{bottom:679.863333pt;}
.yb9{bottom:684.677067pt;}
.y42{bottom:687.343733pt;}
.y180{bottom:689.422267pt;}
.yf8{bottom:692.236133pt;}
.y151{bottom:692.663200pt;}
.y93{bottom:693.118133pt;}
.y66{bottom:694.902800pt;}
.yb8{bottom:700.677067pt;}
.y17f{bottom:702.222267pt;}
.y41{bottom:703.343733pt;}
.yf7{bottom:708.236133pt;}
.y92{bottom:709.118133pt;}
.y65{bottom:710.902800pt;}
.y150{bottom:713.464533pt;}
.yb7{bottom:716.677067pt;}
.y40{bottom:719.343733pt;}
.y17e{bottom:723.023600pt;}
.yf6{bottom:724.236133pt;}
.y122{bottom:725.118133pt;}
.y14f{bottom:726.264533pt;}
.y64{bottom:726.902800pt;}
.y91{bottom:732.677067pt;}
.y3f{bottom:735.343733pt;}
.y17d{bottom:735.823600pt;}
.yf5{bottom:740.236133pt;}
.y121{bottom:741.118133pt;}
.y14e{bottom:747.065733pt;}
.y90{bottom:748.677067pt;}
.y3e{bottom:751.343733pt;}
.yf4{bottom:756.236133pt;}
.y17c{bottom:756.624800pt;}
.y120{bottom:757.118133pt;}
.y63{bottom:758.902800pt;}
.y8f{bottom:764.677067pt;}
.y3d{bottom:767.343733pt;}
.y14d{bottom:767.867067pt;}
.y17b{bottom:769.424800pt;}
.yf3{bottom:772.236133pt;}
.y11f{bottom:773.118133pt;}
.y62{bottom:774.902800pt;}
.y14c{bottom:780.666933pt;}
.y8e{bottom:780.677067pt;}
.y3c{bottom:783.343733pt;}
.yf2{bottom:788.236133pt;}
.y17a{bottom:790.226133pt;}
.y61{bottom:790.902800pt;}
.y6{bottom:795.724400pt;}
.y8d{bottom:796.677067pt;}
.y3b{bottom:799.343733pt;}
.y14b{bottom:801.468267pt;}
.yf1{bottom:804.236133pt;}
.y60{bottom:806.902800pt;}
.y179{bottom:811.027333pt;}
.y8c{bottom:812.677067pt;}
.y14a{bottom:814.268267pt;}
.yf0{bottom:820.236133pt;}
.y3a{bottom:822.902800pt;}
.y8b{bottom:828.677067pt;}
.y5{bottom:829.724400pt;}
.y178{bottom:831.828667pt;}
.y149{bottom:835.069600pt;}
.yef{bottom:836.236133pt;}
.y39{bottom:838.902800pt;}
.y8a{bottom:844.677067pt;}
.y148{bottom:847.869600pt;}
.yb6{bottom:852.236133pt;}
.y177{bottom:852.629867pt;}
.y38{bottom:854.902800pt;}
.y89{bottom:860.677067pt;}
.yb5{bottom:868.236133pt;}
.y147{bottom:868.670800pt;}
.y37{bottom:870.902800pt;}
.y176{bottom:873.431200pt;}
.y88{bottom:876.677067pt;}
.yb4{bottom:884.236133pt;}
.y36{bottom:886.902800pt;}
.y146{bottom:889.472133pt;}
.y11e{bottom:892.677067pt;}
.y175{bottom:894.232400pt;}
.y87{bottom:900.236133pt;}
.y35{bottom:902.902800pt;}
.y11d{bottom:908.677067pt;}
.y145{bottom:910.273333pt;}
.y174{bottom:915.033600pt;}
.y86{bottom:916.236133pt;}
.y34{bottom:918.902800pt;}
.y4{bottom:919.137200pt;}
.y11c{bottom:924.677067pt;}
.y144{bottom:931.074667pt;}
.y85{bottom:932.236133pt;}
.y33{bottom:934.902800pt;}
.y173{bottom:935.834933pt;}
.y3{bottom:937.317200pt;}
.y30{bottom:938.856267pt;}
.y11b{bottom:940.677067pt;}
.y84{bottom:948.236133pt;}
.y172{bottom:948.634933pt;}
.y32{bottom:950.902800pt;}
.y143{bottom:951.875867pt;}
.y2{bottom:955.497200pt;}
.y11a{bottom:956.677067pt;}
.y83{bottom:964.236133pt;}
.y171{bottom:969.436133pt;}
.y1{bottom:973.677200pt;}
.y31{bottom:980.236133pt;}
.y170{bottom:982.236133pt;}
.hb{height:24.882812pt;}
.hf{height:29.625000pt;}
.hd{height:29.645833pt;}
.ha{height:30.789062pt;}
.h8{height:31.498698pt;}
.h3{height:31.992188pt;}
.h9{height:35.187500pt;}
.h7{height:37.386719pt;}
.h2{height:39.585938pt;}
.hc{height:43.984375pt;}
.he{height:48.359308pt;}
.h10{height:48.359842pt;}
.h6{height:48.382812pt;}
.h5{height:54.375000pt;}
.h4{height:65.976562pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:44.306133pt;}
.x5{left:94.488133pt;}
.xc{left:109.606267pt;}
.xe{left:132.283467pt;}
.xf{left:141.688133pt;}
.x10{left:391.444133pt;}
.xa{left:394.147200pt;}
.x1{left:458.427467pt;}
.x4{left:477.795467pt;}
.x8{left:516.074267pt;}
.x3{left:522.039467pt;}
.x2{left:586.095467pt;}
.x6{left:590.487333pt;}
.x7{left:598.750933pt;}
.x9{left:616.872933pt;}
.xd{left:730.471467pt;}
}

